diff --git a/.eslintrc.js b/.eslintrc.js
index d5f44b0b..54e1e3b1 100644
--- a/.eslintrc.js
+++ b/.eslintrc.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
// ESLint configuration
// http://eslint.org/docs/user-guide/configuring
module.exports = {
diff --git a/.gitignore b/.gitignore
index 1a0fe2e2..acbc712f 100644
--- a/.gitignore
+++ b/.gitignore
@@ -27,3 +27,4 @@ yarn-error.log*
# Misc
.DS_Store
+/.vagrant
diff --git a/.prettierrc.js b/.prettierrc.js
index 227072ef..7a82495a 100644
--- a/.prettierrc.js
+++ b/.prettierrc.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
// Prettier configuration
// https://prettier.io/docs/en/configuration.html
module.exports = {
diff --git a/.stylelintrc.js b/.stylelintrc.js
index 3477d9a3..9a70c50e 100644
--- a/.stylelintrc.js
+++ b/.stylelintrc.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
// stylelint configuration
// https://stylelint.io/user-guide/configuration/
module.exports = {
diff --git a/ARCHITECTURE.md b/ARCHITECTURE.md
new file mode 100755
index 00000000..eb0cb0b9
--- /dev/null
+++ b/ARCHITECTURE.md
@@ -0,0 +1,69 @@
+# Compare Hare
+
+An app to create & manage power and gas price notifications.
+
+Some US states have [deregulated power and/or gas utilities](http://www.deregulationofenergy.org/) in order to allow consumers to have a choice in how much they pay for their energy. Depending on how a particular consumer prefers to pay for their utilities, it'd be nice to have a service that notifies you of when a lower priced plan becomes available. Enter the Compare Hare.
+
+For electricity consumers in Pennsylvania, the PA Public Utility Commission (PUC)'s [PA Power Switch](http://www.papowerswitch.com/) website provides a powerful search tool in order to search for applicable plans and filter accordingly. This search and filter is powered by a JSON backend service that would be easily interfaced with in order to feed pricing data in.
+
+#### So, here's how it would work:
+
+1. User signs up for an account, verifies email for account.
+2. User starts a new "alert" by selecting a state (from the ones we've implemented), and a utility type (gas/electric, from what we've implemented), and then enter their zipcode.
+3. From here we'll need specific client implementations for each StateUtility implemented. For PA Electric (first MVP implementation) the app `POST`'s to http://www.papowerswitch.com/shop-for-electricity/shop-for-your-home/by-zipcode with `zipcode` provided, and `ajax` set to `true`
+4. The PUC server will respond with the applicable _Distributors_, such as `duquesne-light` or `penn-power`
+5. App `POST`'s to http://www.papowerswitch.com/shop-for-electricity/shop-for-your-home/by-distributor with the `distributor` from above, which will hand back information for that particular distributor. Using the above examples, Penn Power only has one **rate type**, so the default can be used, but Duquesne Light has 4 separate rate types, so the user must choose the applicable rate type.
+6. App then `POST`'s to http://www.papowerswitch.com/shop-for-electricity/shop-for-your-home/by-distributor/
+
+- If the distributor only has one rate type (Penn Power), then only `distributor` is passed
+- If there are multiple rate types, then the `ratetype` property is populated with the **slug** of the rate type appended to the distributor value (so for Duquesne Light, `duquesne-light/rs` would be passed for residential service)
+ 6a. At this point the app will also update the user's default ratetype and default state to autofill the alert criteria creation form next time
+
+7. At this point, we will get back JSON data of all the applicable offers for the user. This is useful once, but in reality the PUC's website has already provided a pretty useful interface to get this pricing data. **So, what's the point of Compare Hare?**
+8. We can store the specific string passed to the `by-distributor` call (either `penn-power` or `duquesne-light/rs`) along with other specific information for the user. For instance, the user can indicate they only want to be notified if **fixed price** offers of **renewable energy** that have **no cancellation fee** for a price of at or below **$0.0550 per kWh**. With a table of stored alert criteria, we can periodically query the PUC's website for updated pricing information and then send out user alerts accordingly.
+
+## Architecture Ideas
+
+When imagining how this would work, I envision some things needing to exist:
+
+#### General Arch
+
+For an "MVP", the first integration will be for Pennsylvania power through the PUC website described above. In addition to PA natural gas also being regulated there are [29 other states](http://www.alliedpowerservices.com/deregulated-states.shtml) that provide either partial or full deregulation for electricity and natural gas.
+
+With this in mind, I'd like to keep state and utility-specific logic and integrations separated as makes sense. Some states might also make this a lot harder (before investigating the PUC site, I was gearing up to create a web scraper...)
+
+#### Assumptions
+
+- When getting pricing data, the "offer_id" will represent up to date information, and updates within that offer_id will not exist (pricing changes or other major pieces of info that would affect alerts). For this, we will ignore new data from the price scrapes if we already have that offer_id in utility_prices
+
+- Alerts will only send email once - when the alert is created. We cannot wipe utility_prices OR alerts on every price scrape, or we will be constantly emailing alerts.
+
+- Existence of a row in utilityPrices means that price is "current". No rows found matching a specific state, energy type and rate type means that any alerts with those three are no longer valid (and must be removed). utilityPriceHistories remain so that even though utilityPrices is constantly emptied and refilled with the "latest" data, alerts can maintain strong referential integrity to the information for display purposes.
+
+#### Database tables/objects
+
+**alertCriteria** - tied to a user (is private to that user), stores the distributor/ratetype key for that user as well as any other specific criteria that should trigger an alert. Timestamp last time utility_prices were checked for a given alert. Keys: distributor_id, user_id
+
+**alerts** - Specific offer information that is generated from the alert job described below. Only contains "active" or matching offers. In addition to getting email notifications, the user will have a "dashboard" of current alerts. Keys: alert_criteria_id (parent), user_id, utility_price_id, utility_price_history_id (utility prices are wiped often, so the history entry should be used for all displays)
+
+**pendingAlertNotifications** - a message table where each row denotes a notification that needs sent to a specific user. Only generated when a "new" alert is found (part 2 of the alert comp service below). Will also queue one or more "new" price hits into a single notification. Will contain some sort of information pertaining to new prices found - either just a "We found 3 new prices that match your alert "Bob's Alert", click here for info" or a "We found 3 new offers from these companies: [company list] click here for more info" message in the email. Once email has been sent, the row is deleted.
+
+**utilityPrices** - a place to store the data received back from data sources. One row per "offer id", timestamped create only ("update" is meaningless - only inserts and deletes for now). Keys: utility_price_history_id (has many-to-many association with distributors through a linker table). May need to find out if database can automatically NULL out the utility_price_id field on alerts when we delete rows from this table
+
+**utilityPriceHistories** - every time an insert is performed on _utility_prices_, an additional insert is done on this table. For an MVP I do not plan to do anything with this data, but thought it might be helpful information to track historical information about a given offer. Timestamped inserts. Keys: none (has many-to-many assoc with distributors thru linker table)
+
+**distributorRates** - in the PUC data (see [SAMPLE_PA_PUC_DATA.json](SAMPLE_PA_PUC_DATA.json)) this is the distributor through which the user already receives service. New Castle for example uses Penn Power, most Pittsburgh areas use Duquesne Light. Contains info about their distributor, their price-to-compare, and also will contain the unique string that the price scraper will use to gather up to date pricing. A distributorRate is analogous to the price-to-compare given for a user from their distributor (Penn Power or Duquesne Light) for their selected rate type (so Duquesne Light - Residential). Keys: none. Also has a many-to-many assoc with utility_prices AND utility_price_histories
+
+**distributorRateUpdates** - a table to track when a distributor has last been updated to notify upstream processes such as the alert comparison service as to when there's newer data available. Should also contain some sort of hash (of the entire data returned from the PUC API) that allows us to quickly determine if there are any updates to the data, or if its the same with what we got last time - so we're not thrashing more on the utility_prices table than we need to. May not be possible.
+
+**users** - standard login thru OAuth methods provided by Angular Fullstack. Keys: none Is the foreign key in 2 other tables: alert_criteria, alerts.
+
+#### Scheduled Runs/Jobs
+
+**utility price update service** - a CRON job will need to run on a weekly basis to gather all pricing data for all distributors listed in the alerts table. For PA-specific jobs, a `SELECT DISTINCT` on the state/ratetype key from alert_criteria will provide a list of ratetypes to check. Each rate type will then be cycled through existing distributorRates - if no distributorRate exists, the PUC has to be hit to get both the distributorRate and all competing prices. If the distributorRate does exist, check the distributorRateUpdates to see if the PUC site needs hit again. If the hash on distributorRateUpdates indicates there's newer data, we update the distributor rate with the most up to date information, empty that distributor/ratetype's utility_prices, and then proceed to insert the new prices into both utilityPrices and utilityPriceHistories and then finally update distributorRateUpdates with both a timestamp and the hash of the price data from the external API.
+
+Still not sure how to handle the fact that a single data source will get hammered for 60 unique offer types of data. Rather than shotgunning 60 requests at it (which might look like a DDOS), maybe make a request, then wait 10 seconds? Would like input here.
+
+**alert comparison service** - Cycle thru all alert_criteria and find criteria that have updated pricing data (comparison of the timestamp on alertCriteria and distributorRateUpdates). Once a criteria needs updated, load all pricing data for that criteria's distributorRate. Then, it's a two step process: - One, cycle through all existing alerts tied to the criteria. If there are no rows in utilityPrices that match the "priceOfferId" and "distributorState" then this means the alert is no longer valid (the offer it represented is no longer being returned to us by the external API). Remove the alert, ensure there are no outstanding alert_notification links to the same utility_price external identifier. This step will **absolutely** rely on the assumption that there is a utility price-specific ID that is unique to that specific offer, otherwise every time we get new prices we will generate noisy notifications. - Two, cycle thru the rest of the utility prices for the distributor/ratetype (do an exclusion of IDs based on the ones that currently exist). Add new alert objects when a utility_price matches. Create or update an pending_alert_notification row as necessary
+
+**notification service** - Cycle through all pending_alert_notifications and send emails as necessary. The pending_alert_notification table contains all necessary info in order to generate said email. Once notification has been sent, the pending_alert_notification row can be deleted.
diff --git a/README.md b/README.md
old mode 100644
new mode 100755
index 0afa8c1b..dca0f431
--- a/README.md
+++ b/README.md
@@ -1,236 +1,27 @@
-## React Starter Kit — "[isomorphic](http://nerds.airbnb.com/isomorphic-javascript-future-web-apps/)" web app boilerplate
+# comparehare
-[React Starter Kit](https://www.reactstarterkit.com) is an opinionated boilerplate for web
-development built on top of [Node.js](https://nodejs.org/),
-[Express](http://expressjs.com/), [GraphQL](http://graphql.org/) and
-[React](https://facebook.github.io/react/), containing modern web development
-tools such as [Webpack](http://webpack.github.io/), [Babel](http://babeljs.io/)
-and [Browsersync](http://www.browsersync.io/). Helping you to stay productive
-following the best practices. A solid starting point for both professionals
-and newcomers to the industry.
+For a general idea of the app and its architecture, please read [ARCHITECTURE.md](ARCHITECTURE.md)
-**See** [getting started guide](./docs/getting-started.md), [demo][demo],
-[docs](https://github.com/kriasoft/react-starter-kit/tree/master/docs),
-[roadmap](https://github.com/kriasoft/react-starter-kit/projects/1) |
-**Join** [#react-starter-kit][chat] chat room on Gitter |
-**Visit our sponsors**:
+This project was generated with the [Angular Full-Stack Generator](https://github.com/DaftMonk/generator-angular-fullstack) version 3.3.0.
-
-
-
- Hiring
-
+## Getting Started
+### Prerequisites
-### Getting Started
+- [Bower](bower.io) (`npm install --global bower`)
+- [SQLite](https://www.sqlite.org/quickstart.html)
+ = [SequelizeCLI](http://docs.sequelizejs.com/en/latest/docs/migrations/#the-cli) installed globally via npm
- * Follow the [getting started guide](./docs/getting-started.md) to download and run the project
- ([Node.js](https://nodejs.org/) >= 6.5)
- * Check the [code recipes](./docs/recipes) used in this boilerplate, or share yours
+### Developing
+1. Run `yarn` to install dependencies.
-### Customization
+2. Run `yarn start` to start the development server. It should automatically open the client in your browser when ready.
-The `master` branch of React Starter Kit doesn't include a Flux implementation or any other
-advanced integrations. Nevertheless, we have some integrations available to you in *feature*
-branches that you can use either as a reference or merge into your project:
+## Build & development
- * [feature/redux](https://github.com/kriasoft/react-starter-kit/tree/feature/redux) ([PR](https://github.com/kriasoft/react-starter-kit/pull/1084))
- — isomorphic Redux by [Pavel Lang](https://github.com/langpavel)
- (see [how to integrate Redux](./docs/recipes/how-to-integrate-redux.md)) (based on `master`)
- * [feature/apollo](https://github.com/kriasoft/react-starter-kit/tree/feature/apollo) ([PR](https://github.com/kriasoft/react-starter-kit/pull/1147))
- — isomorphic Apollo Client by [Pavel Lang](https://github.com/langpavel)
- (see [Tracking PR #1147](https://github.com/kriasoft/react-starter-kit/pull/1147)) (based on `feature/redux`)
- * [feature/react-intl](https://github.com/kriasoft/react-starter-kit/tree/feature/react-intl) ([PR](https://github.com/kriasoft/react-starter-kit/pull/1135))
- — isomorphic Redux and React Intl by [Pavel Lang](https://github.com/langpavel)
- (see [how to integrate React Intl](./docs/recipes/how-to-integrate-react-intl.md)) (based on `feature/apollo`)
- * [feature/apollo-pure](https://github.com/kriasoft/react-starter-kit/tree/feature/apollo-pure) ([PR](https://github.com/kriasoft/react-starter-kit/pull/1664))
- — bare Apollo codebase by [piglovesyou](https://github.com/piglovesyou) (based on `master`)
+See [React Starter Kit](https://github.com/kriasoft/react-starter-kit) for how to do everything else lol
-You can see status of most reasonable merge combination as [PRs labeled as `TRACKING`](https://github.com/kriasoft/react-starter-kit/labels/TRACKING)
+## Testing
-If you think that any of these features should be on `master`, or vice versa, some features should
-removed from the `master` branch, please [let us know](https://gitter.im/kriasoft/react-starter-kit).
-We love your feedback!
-
-
-### Comparison
-
-
-
- |
-
- React Starter Kit
-
-
- |
-
- React Static Boilerplate
-
-
- |
-
- ASP.NET Core Starter Kit
-
-
- |
-
-
- App type |
- Isomorphic (universal) |
- Single-page application |
- Single-page application |
-
-
- Frontend |
-
-
- Language |
- JavaScript (ES2015+, JSX) |
- JavaScript (ES2015+, JSX) |
- JavaScript (ES2015+, JSX) |
-
-
- Libraries |
-
- React,
- History,
- Universal Router
- |
-
- React,
- History,
- Redux
- |
-
- React,
- History,
- Redux
- |
-
-
- Routes |
- Imperative (functional) |
- Declarative |
- Declarative, cross-stack |
-
-
- Backend |
-
-
- Language |
- JavaScript (ES2015+, JSX) |
- n/a |
- C#, F# |
-
-
- Libraries |
-
- Node.js,
- Express,
- Sequelize,
- GraphQL |
- n/a |
-
- ASP.NET Core,
- EF Core,
- ASP.NET Identity
- |
-
-
- SSR |
- Yes |
- n/a |
- n/a |
-
-
- Data API |
- GraphQL |
- n/a |
- Web API |
-
-
-
-
-### Backers
-
-♥ React Starter Kit? Help us keep it alive by donating funds to cover project
-expenses via [OpenCollective](https://opencollective.com/react-starter-kit) or
-[Bountysource](https://salt.bountysource.com/teams/react-starter-kit)!
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-### How to Contribute
-
-Anyone and everyone is welcome to [contribute](CONTRIBUTING.md) to this project. The best way to
-start is by checking our [open issues](https://github.com/kriasoft/react-starter-kit/issues),
-[submit a new issue](https://github.com/kriasoft/react-starter-kit/issues/new?labels=bug) or
-[feature request](https://github.com/kriasoft/react-starter-kit/issues/new?labels=enhancement),
-participate in discussions, upvote or downvote the issues you like or dislike, send [pull
-requests](CONTRIBUTING.md#pull-requests).
-
-
-### Learn More
-
- * [Getting Started with React.js](http://facebook.github.io/react/)
- * [Getting Started with GraphQL and Relay](https://quip.com/oLxzA1gTsJsE)
- * [React.js Questions on StackOverflow](http://stackoverflow.com/questions/tagged/reactjs)
- * [React.js Discussion Board](https://discuss.reactjs.org/)
- * [Flux Architecture for Building User Interfaces](http://facebook.github.io/flux/)
- * [Enzyme — JavaScript Testing utilities for React](http://airbnb.io/enzyme/)
- * [Flow — A static type checker for JavaScript](http://flowtype.org/)
- * [The Future of React](https://github.com/reactjs/react-future)
- * [Learn ES6](https://babeljs.io/docs/learn-es6/), [ES6 Features](https://github.com/lukehoban/es6features#readme)
-
-
-### Related Projects
-
- * [GraphQL Starter Kit](https://github.com/kriasoft/graphql-starter-kit) — Boilerplate for building data APIs with Node.js, JavaScript (via Babel) and GraphQL
- * [Membership Database](https://github.com/membership/membership.db) — SQL schema boilerplate for user accounts, profiles, roles, and auth claims
- * [Babel Starter Kit](https://github.com/kriasoft/babel-starter-kit) — Boilerplate for authoring JavaScript/React.js libraries
-
-
-### Support
-
- * [#react-starter-kit](http://stackoverflow.com/questions/tagged/react-starter-kit) on Stack Overflow — Questions and answers
- * [#react-starter-kit](https://gitter.im/kriasoft/react-starter-kit) on Gitter — Watch announcements, share ideas and feedback
- * [GitHub issues](https://github.com/kriasoft/react-starter-kit/issues), or [Scrum board](https://waffle.io/kriasoft/react-starter-kit) — File issues, send feature requests
- * [appear.in/react](https://appear.in/react) — Open hours! Exchange ideas and experiences (React, GraphQL, startups and pet projects)
- * [@koistya](https://twitter.com/koistya) on [Codementor](https://www.codementor.io/koistya), or [Skype](http://hatscripts.com/addskype?koistya) — Private consulting
-
-
-### License
-
-Copyright © 2014-present Kriasoft, LLC. This source code is licensed under the MIT
-license found in the [LICENSE.txt](https://github.com/kriasoft/react-starter-kit/blob/master/LICENSE.txt)
-file. The documentation to the project is licensed under the
-[CC BY-SA 4.0](http://creativecommons.org/licenses/by-sa/4.0/) license.
-
----
-Made with ♥ by Konstantin Tarkus ([@koistya](https://twitter.com/koistya)) and [contributors](https://github.com/kriasoft/react-starter-kit/graphs/contributors)
-
-[rsk]: https://www.reactstarterkit.com
-[demo]: http://demo.reactstarterkit.com
-[node]: https://nodejs.org
-[chat]: https://gitter.im/kriasoft/react-starter-kit
+See [React Starter Kit](https://github.com/kriasoft/react-starter-kit) for how to do everything else lol
diff --git a/SAMPLE_PA_PUC_DATA.json b/SAMPLE_PA_PUC_DATA.json
new file mode 100755
index 00000000..63de7159
--- /dev/null
+++ b/SAMPLE_PA_PUC_DATA.json
@@ -0,0 +1,10757 @@
+{
+ "comment_from_matt":
+ "This is data to expect for calls made to get utility prices.",
+ "ratetype": "penn-power/rs/",
+ "slug": "penn-power",
+ "distributor": "Penn Power",
+ "distributor_id": "8",
+ "rate_id": "1",
+ "rate": "RS - Regular Residential Service",
+ "base": {
+ "id": "35",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "1",
+ "rate_id": "1",
+ "supplier_id": "35",
+ "distributor_id": "8",
+ "price_kwh": "0.08901",
+ "price_current": ".0900",
+ "price_future": ".0788",
+ "price_future_start": "3/1/2016",
+ "price_future_end": "5/31/2016",
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "1",
+ "renewable_addons": "1",
+ "intRenewablePercent": null,
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-21 15:52:26",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": "",
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": null,
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Penn Power",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "8",
+ "edi": "1",
+ "residential_url": "https://www.firstenergycorp.com/penn_power.html",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": null,
+ "residential_address2": null,
+ "residential_address3": null,
+ "residential_city": null,
+ "residential_state": null,
+ "residential_zip": null,
+ "residential_telephone": "1-800-720-3600",
+ "residential_telephone2": null,
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "ppid": "46",
+ "field_id": "1",
+ "offer_id": "17",
+ "date": "0000-00-00 00:00:00",
+ "price": "0"
+ },
+ "offers": [
+ {
+ "id": "119",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "119",
+ "distributor_id": "8",
+ "price_kwh": "0.08291",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Customer may cancel this contract at any time upon 30 days\u2019 notice to PAG&E, for which the Customer may be separately billed an Early Termination Fee of $150. \nYour account with PAG&E will automatically renew with PAG&E on a fixed rate program.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "150",
+ "datUpdate": "2016-02-03 16:20:21",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0829",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.usgande.com/markets/Pennsylvania/Enroll/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "211",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Pennsylvania Gas & Electric",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.PAGandE.com",
+ "sb_url": "http://www.PAGandE.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "290 N.W. 165th Street",
+ "residential_address2": "PH5",
+ "residential_address3": "",
+ "residential_city": "North Miami Beach",
+ "residential_state": "FL",
+ "residential_zip": "33169",
+ "residential_telephone": "866-706-7361",
+ "residential_telephone2": "",
+ "sb_address": "290 N.W. 165th Street",
+ "sb_address2": "PH5",
+ "sb_address3": "",
+ "sb_city": "North Miami Beach",
+ "sb_state": "FL",
+ "sb_zip": "33169",
+ "sb_telephone": "866-706-7361",
+ "sb_telephone2": "",
+ "business_address": "290 N.W. 165th Street",
+ "business_address2": "PH5",
+ "business_address3": "",
+ "business_city": "North Miami Beach",
+ "business_state": "FL",
+ "business_zip": "33169",
+ "business_telephone": "866-706-7361",
+ "business_telephone2": "",
+ "offer_id": "1481",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "138",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "138",
+ "distributor_id": "8",
+ "price_kwh": "0.077",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "97",
+ "strRenewableAddons":
+ "This product is made from 100% national wind energy. By choosing the Pollution Free\u2122 Choice 3 product over typical system power, a PA household with monthly usage of 750 kWh can prevent more than 13,600 pounds of (CO2) emissions/yr.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "Pollution Free\u2122 Choice 3 is only available to new customers through this site. Click Sign Up For This Offer for full details. Other offers available at GreenMountainEnergy.com/?campaignid=7152. \nSign up today!\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-03 11:07:30",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.08",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&sid=A3P_PAPUC_AllOffers/",
+ "url_this_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&product-slug=penn-power-pollution-free-choice-3&sid=A3P_PAPUC_3MonthVar",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "265",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Green Mountain Energy Company",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.greenmountainenergy.com/?campaignid=7152",
+ "sb_url": null,
+ "business_url":
+ "http://www.greenmountain.com/commercial-home/?campaignid=7152",
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "300 W. 6th Street",
+ "residential_address2": "Suite 900",
+ "residential_address3": "",
+ "residential_city": "Austin",
+ "residential_state": "TX",
+ "residential_zip": "78701",
+ "residential_telephone": "855-531-5066",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "300 W. 6th Street",
+ "business_address2": "Suite 900",
+ "business_address3": "",
+ "business_city": "Austin",
+ "business_state": "TX",
+ "business_zip": "78701",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1248",
+ "TERM_END": null
+ },
+ {
+ "id": "138",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "138",
+ "distributor_id": "8",
+ "price_kwh": "0.079",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "97",
+ "strRenewableAddons":
+ "This product is made from 100% national wind energy. By choosing the Pollution Free\u2122 Choice 7 product over typical system power, a PA household with monthly usage of 750 kWh can prevent more than 13,600 pounds of (CO2) emissions/year.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Pollution Free\u2122 Choice 7 is only available to new customers through this site. Click Sign Up For This Offer for full details. Other offers available at GreenMountainEnergy.com/?campaignid=7152. \nSign up today!\n",
+ "term_length": "7",
+ "term_end_date": null,
+ "cost_cancellation_fee": "100",
+ "datUpdate": "2016-02-03 11:06:40",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0790",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&sid=A3P_PAPUC_AllOffers/",
+ "url_this_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&product-slug=penn-power-pollution-free-choice-7&sid=A3P_PAPUC_PFChoice7/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "265",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Green Mountain Energy Company",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.greenmountainenergy.com/?campaignid=7152",
+ "sb_url": null,
+ "business_url":
+ "http://www.greenmountain.com/commercial-home/?campaignid=7152",
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "300 W. 6th Street",
+ "residential_address2": "Suite 900",
+ "residential_address3": "",
+ "residential_city": "Austin",
+ "residential_state": "TX",
+ "residential_zip": "78701",
+ "residential_telephone": "855-531-5066",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "300 W. 6th Street",
+ "business_address2": "Suite 900",
+ "business_address3": "",
+ "business_city": "Austin",
+ "business_state": "TX",
+ "business_zip": "78701",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1249",
+ "TERM_END": "2016-09-05"
+ },
+ {
+ "id": "138",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "138",
+ "distributor_id": "8",
+ "price_kwh": "0.081",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "97",
+ "strRenewableAddons":
+ "This product is made from 100% national wind energy. By choosing the Pollution Free\u2122 Choice 9 product over typical system power, a PA household with monthly usage of 750 kWh can prevent more than 13,600 pounds of (CO2) emissions a year.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Pollution Free\u2122 Choice 9 is only available to new customers through this site. Click Sign Up For This Offer for full details. Other offers available at GreenMountainEnergy.com/?campaignid=7152. \nSign up today!\n",
+ "term_length": "9",
+ "term_end_date": null,
+ "cost_cancellation_fee": "100",
+ "datUpdate": "2016-02-03 11:06:31",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0810",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&sid=A3P_PAPUC_AllOffers/",
+ "url_this_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&product-slug=penn-power-pollution-free-choice-9&sid=A3P_PAPUC_PFChoice9/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "265",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Green Mountain Energy Company",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.greenmountainenergy.com/?campaignid=7152",
+ "sb_url": null,
+ "business_url":
+ "http://www.greenmountain.com/commercial-home/?campaignid=7152",
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "300 W. 6th Street",
+ "residential_address2": "Suite 900",
+ "residential_address3": "",
+ "residential_city": "Austin",
+ "residential_state": "TX",
+ "residential_zip": "78701",
+ "residential_telephone": "855-531-5066",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "300 W. 6th Street",
+ "business_address2": "Suite 900",
+ "business_address3": "",
+ "business_city": "Austin",
+ "business_state": "TX",
+ "business_zip": "78701",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1250",
+ "TERM_END": "2016-11-05"
+ },
+ {
+ "id": "100",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "100",
+ "distributor_id": "8",
+ "price_kwh": "0.0879",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "50",
+ "datUpdate": "2016-02-01 15:43:04",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0899",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "292",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Public Power, LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ppandu.com/en/index.php",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "39 Old Ridgebury Road",
+ "residential_address2": "Suite 14",
+ "residential_address3": "",
+ "residential_city": "Danbury",
+ "residential_state": "CT",
+ "residential_zip": "06810",
+ "residential_telephone": "888-354-4415",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "39 Old Ridgebury Road",
+ "business_address2": "Suite 14",
+ "business_address3": "",
+ "business_city": "Danbury",
+ "business_state": "CT",
+ "business_zip": "06810",
+ "business_telephone": "888-354-4415",
+ "business_telephone2": "",
+ "offer_id": "1419",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "100",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "100",
+ "distributor_id": "8",
+ "price_kwh": "0.1199",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 15:42:41",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "292",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Public Power, LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ppandu.com/en/index.php",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "39 Old Ridgebury Road",
+ "residential_address2": "Suite 14",
+ "residential_address3": "",
+ "residential_city": "Danbury",
+ "residential_state": "CT",
+ "residential_zip": "06810",
+ "residential_telephone": "888-354-4415",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "39 Old Ridgebury Road",
+ "business_address2": "Suite 14",
+ "business_address3": "",
+ "business_city": "Danbury",
+ "business_state": "CT",
+ "business_zip": "06810",
+ "business_telephone": "888-354-4415",
+ "business_telephone2": "",
+ "offer_id": "1518",
+ "TERM_END": null
+ },
+ {
+ "id": "43",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "43",
+ "distributor_id": "8",
+ "price_kwh": "0.085",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Fixed price of 8.50 cents per kwh for a 10-month term. \n\nNo cancel fee.\n\nEnroll at www.ConEdSolutions.com/PennPower",
+ "term_length": "10",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 15:39:59",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0850",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.ConEdSolutions.com/PennPower",
+ "url_this_offer":
+ "https://www.conedsolutions.com/CES_Enroll/SelectPrice.aspx?type=R&state=PA&utility=PENN&area=",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "110",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Con Edison Solutions",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.conedsolutions.com",
+ "sb_url": "http://www.conedsolutions.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "100 Summit Lake Dr",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Valhalla",
+ "residential_state": "NY",
+ "residential_zip": "10595",
+ "residential_telephone": "1-877-623-6114",
+ "residential_telephone2": "",
+ "sb_address": "100 Summit Lake Drive",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Valhalla",
+ "sb_state": "NY",
+ "sb_zip": "10595",
+ "sb_telephone": "1-877-623-6114",
+ "sb_telephone2": "",
+ "business_address": "100 Summit Lake Dr",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Valhalla",
+ "business_state": "NY",
+ "business_zip": "10595",
+ "business_telephone": "1-800-316-8011",
+ "business_telephone2": "",
+ "offer_id": "443",
+ "TERM_END": "2016-12-05"
+ },
+ {
+ "id": "186",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "186",
+ "distributor_id": "8",
+ "price_kwh": "0.097",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Residents Energy ResiSURE: Lock in a per kWh rate for 12-months. No termination or other fees or deposits. Protect yourself from future electric supply market volatility. All the price certainty of a fixed rate program with the flexibility you need.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 13:41:23",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0970",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "334",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Residents Energy LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://residentsenergy.com/",
+ "sb_url": "http://residentsenergy.com/",
+ "business_url": "http://residentsenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "20 West Third Street",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Jamestown",
+ "residential_state": "NY",
+ "residential_zip": "14701",
+ "residential_telephone": "1-888-828-RESI(7374)",
+ "residential_telephone2": "",
+ "sb_address": "20 West Third Street",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Jamestown",
+ "sb_state": "NY",
+ "sb_zip": "14701",
+ "sb_telephone": "1-888-828-RESI(7374)",
+ "sb_telephone2": "0",
+ "business_address": "20 West Third Street",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Jamestown",
+ "business_state": "NY",
+ "business_zip": "14701",
+ "business_telephone": "1-888-828-RESI(7374)",
+ "business_telephone2": "",
+ "offer_id": "1271",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "186",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "186",
+ "distributor_id": "8",
+ "price_kwh": "0.1249",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "Residents Energy\u2019s renewable electricity supply program is 100% matched with renewable energy certificates and generated from sources like running water, solar, wind and biomass.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Concerned about the environment? Looking for price certainty? ResiSure Renewable locks your per kWh supply rate for 12-months. No ETFs. Supply is 100% matched with renewable energy certificates and generated from sources like running water and wind.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 13:40:32",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.1249",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "334",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Residents Energy LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://residentsenergy.com/",
+ "sb_url": "http://residentsenergy.com/",
+ "business_url": "http://residentsenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "20 West Third Street",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Jamestown",
+ "residential_state": "NY",
+ "residential_zip": "14701",
+ "residential_telephone": "1-888-828-RESI(7374)",
+ "residential_telephone2": "",
+ "sb_address": "20 West Third Street",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Jamestown",
+ "sb_state": "NY",
+ "sb_zip": "14701",
+ "sb_telephone": "1-888-828-RESI(7374)",
+ "sb_telephone2": "0",
+ "business_address": "20 West Third Street",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Jamestown",
+ "business_state": "NY",
+ "business_zip": "14701",
+ "business_telephone": "1-888-828-RESI(7374)",
+ "business_telephone2": "",
+ "offer_id": "1281",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "84",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "84",
+ "distributor_id": "8",
+ "price_kwh": "0.1159",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "SmartBudget Renewable is a 12-month locked supply rate that is 100% matched with renewable energy certificates and generated from sources like running water, wind, solar and biomass. For more information, visit us online at www.IDTEnergy.com",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Take control of your energy bill with a 12-month locked supply rate. NO termination fees. NO rate spikes. NO hidden fees or deposits. NO surprises. Enjoy the security of locked supply rate protection with the flexibility of a variable program.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 12:45:34",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.1159",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://idtenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "112",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IDT Energy, Inc.",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://idtenergy.com/",
+ "sb_url": "http://idtenergy.com/",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "520 Broad Street 17th Floor",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Newark",
+ "residential_state": "NJ",
+ "residential_zip": "07102",
+ "residential_telephone": "877-887-6866",
+ "residential_telephone2": "",
+ "sb_address": "520 Broad Street",
+ "sb_address2": "17th Floor",
+ "sb_address3": "",
+ "sb_city": "Newark",
+ "sb_state": "NJ",
+ "sb_zip": "07102",
+ "sb_telephone": "877-887-6866",
+ "sb_telephone2": "",
+ "business_address": "520 Broad Street 17th Floor",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Newark",
+ "business_state": "NJ",
+ "business_zip": "07102",
+ "business_telephone": "877-887-6866",
+ "business_telephone2": "",
+ "offer_id": "1385",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "84",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "84",
+ "distributor_id": "8",
+ "price_kwh": "0.088",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Take control of your energy bill with a 12-month locked supply rate. NO termination fees. NO rate spikes. NO hidden fees or deposits. NO surprises. Enjoy the security of locked supply rate protection with the flexibility of a variable program.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 12:45:07",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0880",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://idtenergy.com/",
+ "url_this_offer": "http://idtenergy.com/papowerswitch/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "112",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IDT Energy, Inc.",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://idtenergy.com/",
+ "sb_url": "http://idtenergy.com/",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "520 Broad Street 17th Floor",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Newark",
+ "residential_state": "NJ",
+ "residential_zip": "07102",
+ "residential_telephone": "877-887-6866",
+ "residential_telephone2": "",
+ "sb_address": "520 Broad Street",
+ "sb_address2": "17th Floor",
+ "sb_address3": "",
+ "sb_city": "Newark",
+ "sb_state": "NJ",
+ "sb_zip": "07102",
+ "sb_telephone": "877-887-6866",
+ "sb_telephone2": "",
+ "business_address": "520 Broad Street 17th Floor",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Newark",
+ "business_state": "NJ",
+ "business_zip": "07102",
+ "business_telephone": "877-887-6866",
+ "business_telephone2": "",
+ "offer_id": "1111",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "84",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "84",
+ "distributor_id": "8",
+ "price_kwh": "0.09458",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "0.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "IDT Energy\u00ae also offers Renewable Electric supply options that are 100% matched with renewable energy certificates and generated from sources like running water, wind, solar, and biomass. For more information, visit www.idtenergy.com",
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "IDT Energy offers special enrollment incentives and annual rebate programs that put real dollars back in the hands of our customers. Our mission is simple - to reduce your annual energy expenses. Call or visit www.idtenergy.com/2free",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 12:43:58",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.idtenergy.com",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "112",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IDT Energy, Inc.",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://idtenergy.com/",
+ "sb_url": "http://idtenergy.com/",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "520 Broad Street 17th Floor",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Newark",
+ "residential_state": "NJ",
+ "residential_zip": "07102",
+ "residential_telephone": "877-887-6866",
+ "residential_telephone2": "",
+ "sb_address": "520 Broad Street",
+ "sb_address2": "17th Floor",
+ "sb_address3": "",
+ "sb_city": "Newark",
+ "sb_state": "NJ",
+ "sb_zip": "07102",
+ "sb_telephone": "877-887-6866",
+ "sb_telephone2": "",
+ "business_address": "520 Broad Street 17th Floor",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Newark",
+ "business_state": "NJ",
+ "business_zip": "07102",
+ "business_telephone": "877-887-6866",
+ "business_telephone2": "",
+ "offer_id": "340",
+ "TERM_END": null
+ },
+ {
+ "id": "44",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "44",
+ "distributor_id": "8",
+ "price_kwh": "0.0819",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Direct Energy gives you price stability with excellent fixed-rate electricity plans. To sign up call us at 1-877-697-7617",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "99",
+ "datUpdate": "2016-02-01 11:53:59",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0819",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.directenergy.com/pa/electricity-plans/msid/720/pid/pa12?utm_source=BD&utm_medium=PA-PTC",
+ "url_this_offer":
+ "https://www.directenergy.com/pa/electricity-plans/msid/720/pid/pa12?utm_source=BD&utm_medium=PA-PTC",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "280",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Direct Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.directenergy.com/pa/msid/720",
+ "sb_url": "http://www.business.directenergy.com/",
+ "business_url": "http://www.business.directenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "Liberty Center",
+ "residential_address2": "1001 Liberty Avenue",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15222",
+ "residential_telephone": "1-877-697-7617",
+ "residential_telephone2": "",
+ "sb_address": "Liberty Center",
+ "sb_address2": "1001 Liberty Avenue",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15222",
+ "sb_telephone": "1-888-734-0741",
+ "sb_telephone2": "0",
+ "business_address": "Liberty Center",
+ "business_address2": "1001 Liberty Avenue",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15222",
+ "business_telephone": "1-888-925-9115",
+ "business_telephone2": "",
+ "offer_id": "865",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "44",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "44",
+ "distributor_id": "8",
+ "price_kwh": "0.0869",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Direct Energy gives you price stability with excellent fixed-rate electricity plans. Check out our current plan for 6 months. To sign up call us at 1-877-697-7617",
+ "term_length": "6",
+ "term_end_date": null,
+ "cost_cancellation_fee": "99",
+ "datUpdate": "2016-02-01 11:53:40",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0869",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.directenergy.com/pa/electricity-plans/msid/720/pid/pa6?utm_source=BD&utm_medium=PA-PTC",
+ "url_this_offer":
+ "https://www.directenergy.com/pa/electricity-plans/msid/720/pid/pa6?utm_source=BD&utm_medium=PA-PTC",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "280",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Direct Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.directenergy.com/pa/msid/720",
+ "sb_url": "http://www.business.directenergy.com/",
+ "business_url": "http://www.business.directenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "Liberty Center",
+ "residential_address2": "1001 Liberty Avenue",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15222",
+ "residential_telephone": "1-877-697-7617",
+ "residential_telephone2": "",
+ "sb_address": "Liberty Center",
+ "sb_address2": "1001 Liberty Avenue",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15222",
+ "sb_telephone": "1-888-734-0741",
+ "sb_telephone2": "0",
+ "business_address": "Liberty Center",
+ "business_address2": "1001 Liberty Avenue",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15222",
+ "business_telephone": "1-888-925-9115",
+ "business_telephone2": "",
+ "offer_id": "864",
+ "TERM_END": "2016-08-05"
+ },
+ {
+ "id": "44",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "44",
+ "distributor_id": "8",
+ "price_kwh": "0.0889",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Receive a Nest Learning Thermostat. Lock in your electricity rate for 24 months. Nest features help you save up to 10-12% on heating bills and 15% on cooling bills. To sign up call us at 1-877-697-7617",
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": "200",
+ "datUpdate": "2016-02-01 11:50:13",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0889",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.directenergy.com/nest/msid/720/pid/cc24?utm_source=BD&utm_medium=PA-PTC",
+ "url_this_offer":
+ "https://www.directenergy.com/nest/msid/720/pid/cc24?utm_source=BD&utm_medium=PA-PTC",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "280",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Direct Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.directenergy.com/pa/msid/720",
+ "sb_url": "http://www.business.directenergy.com/",
+ "business_url": "http://www.business.directenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "Liberty Center",
+ "residential_address2": "1001 Liberty Avenue",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15222",
+ "residential_telephone": "1-877-697-7617",
+ "residential_telephone2": "",
+ "sb_address": "Liberty Center",
+ "sb_address2": "1001 Liberty Avenue",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15222",
+ "sb_telephone": "1-888-734-0741",
+ "sb_telephone2": "0",
+ "business_address": "Liberty Center",
+ "business_address2": "1001 Liberty Avenue",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15222",
+ "business_telephone": "1-888-925-9115",
+ "business_telephone2": "",
+ "offer_id": "866",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "150",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "150",
+ "distributor_id": "8",
+ "price_kwh": "0.0749",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "This rate starts at 7.49\u00a2 until your nine meter read! \n\nNo Variable and No Cancel fee!",
+ "term_length": "9",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-29 16:49:14",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0749",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PPOWER&customer_type=Residential",
+ "url_this_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PPOWER&customer_type=Residential",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "283",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Town Square Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Residential&zip;= ",
+ "sb_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Commercial&zip;= ",
+ "business_url": "https://townsquareenergy.com/industrial-ct/ ",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "16233 Kenyon Avenue",
+ "residential_address2": "Suite 210",
+ "residential_address3": "",
+ "residential_city": "Lakeville",
+ "residential_state": "MN",
+ "residential_zip": "55044",
+ "residential_telephone": "800-282-3331",
+ "residential_telephone2": "",
+ "sb_address": "16233 Kenyon Avenue",
+ "sb_address2": "Suite 210",
+ "sb_address3": "",
+ "sb_city": "Lakeville",
+ "sb_state": "MN",
+ "sb_zip": "55044",
+ "sb_telephone": "800-282-3331",
+ "sb_telephone2": "",
+ "business_address": "16233 Kenyon Avenue",
+ "business_address2": "Suite 210",
+ "business_address3": "",
+ "business_city": "Lakeville",
+ "business_state": "MN",
+ "business_zip": "55044",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1379",
+ "TERM_END": "2016-11-05"
+ },
+ {
+ "id": "150",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "150",
+ "distributor_id": "8",
+ "price_kwh": "0.076",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "This rate starts at 7.60\u00a2 until your sixth billing cycle.\n\nNo Cancel fee!\n\nSign-up today!",
+ "term_length": "6",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-29 15:19:59",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0760",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PECO&customer_type=Residential",
+ "url_this_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PPOWER&customer_type=Residential",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "283",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Town Square Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Residential&zip;= ",
+ "sb_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Commercial&zip;= ",
+ "business_url": "https://townsquareenergy.com/industrial-ct/ ",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "16233 Kenyon Avenue",
+ "residential_address2": "Suite 210",
+ "residential_address3": "",
+ "residential_city": "Lakeville",
+ "residential_state": "MN",
+ "residential_zip": "55044",
+ "residential_telephone": "800-282-3331",
+ "residential_telephone2": "",
+ "sb_address": "16233 Kenyon Avenue",
+ "sb_address2": "Suite 210",
+ "sb_address3": "",
+ "sb_city": "Lakeville",
+ "sb_state": "MN",
+ "sb_zip": "55044",
+ "sb_telephone": "800-282-3331",
+ "sb_telephone2": "",
+ "business_address": "16233 Kenyon Avenue",
+ "business_address2": "Suite 210",
+ "business_address3": "",
+ "business_city": "Lakeville",
+ "business_state": "MN",
+ "business_zip": "55044",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1465",
+ "TERM_END": "2016-08-05"
+ },
+ {
+ "id": "150",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "150",
+ "distributor_id": "8",
+ "price_kwh": "0.0759",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "This rate is at 7.59\u00a2 until your third billing cycle! \n\nNo Cancel fee!",
+ "term_length": "3",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-29 15:19:39",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0759",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PPOWER&customer_type=Residential",
+ "url_this_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PPOWER&customer_type=Residential",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "283",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Town Square Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Residential&zip;= ",
+ "sb_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Commercial&zip;= ",
+ "business_url": "https://townsquareenergy.com/industrial-ct/ ",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "16233 Kenyon Avenue",
+ "residential_address2": "Suite 210",
+ "residential_address3": "",
+ "residential_city": "Lakeville",
+ "residential_state": "MN",
+ "residential_zip": "55044",
+ "residential_telephone": "800-282-3331",
+ "residential_telephone2": "",
+ "sb_address": "16233 Kenyon Avenue",
+ "sb_address2": "Suite 210",
+ "sb_address3": "",
+ "sb_city": "Lakeville",
+ "sb_state": "MN",
+ "sb_zip": "55044",
+ "sb_telephone": "800-282-3331",
+ "sb_telephone2": "",
+ "business_address": "16233 Kenyon Avenue",
+ "business_address2": "Suite 210",
+ "business_address3": "",
+ "business_city": "Lakeville",
+ "business_state": "MN",
+ "business_zip": "55044",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1378",
+ "TERM_END": "2016-05-05"
+ },
+ {
+ "id": "124",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "124",
+ "distributor_id": "8",
+ "price_kwh": "0.0789",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "This 3 month fixed rate is exclusive for Penn Power Customers only.",
+ "term_length": "3",
+ "term_end_date": null,
+ "cost_cancellation_fee": "49",
+ "datUpdate": "2016-01-25 11:27:15",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "1",
+ "MonthlySvcFeeAmt": "4.93",
+ "FixedPriceAmt": "0.0789",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.sperianenergy.com/rate_plans.aspx",
+ "url_this_offer": "http://www.sperianenergy.com/default.aspx",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "338",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Sperian Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.sperianenergy.com",
+ "sb_url": "http://www.sperianenergy.com",
+ "business_url": "http://www.sperianenergy.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "2605 Camino Del Rio South",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "San Diego",
+ "residential_state": "CA",
+ "residential_zip": "92108",
+ "residential_telephone": "888-682-8082",
+ "residential_telephone2": "",
+ "sb_address": "2605 Camino Del Rio South",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "San Diego",
+ "sb_state": "CA",
+ "sb_zip": "92108",
+ "sb_telephone": "888-682-8082",
+ "sb_telephone2": "0",
+ "business_address": "2605 Camino Del Rio South",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "San Diego",
+ "business_state": "CA",
+ "business_zip": "92108",
+ "business_telephone": "888-682-8082",
+ "business_telephone2": "",
+ "offer_id": "1571",
+ "TERM_END": "2016-05-05"
+ },
+ {
+ "id": "124",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "124",
+ "distributor_id": "8",
+ "price_kwh": "0.0769",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "This variable rate is exclusive for Penn Power Customer only.",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-25 11:26:45",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "1",
+ "MonthlySvcFeeAmt": "4.93",
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.sperianenergy.com/default.aspx",
+ "url_this_offer": "http://www.sperianenergy.com/default.aspx",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "338",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Sperian Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.sperianenergy.com",
+ "sb_url": "http://www.sperianenergy.com",
+ "business_url": "http://www.sperianenergy.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "2605 Camino Del Rio South",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "San Diego",
+ "residential_state": "CA",
+ "residential_zip": "92108",
+ "residential_telephone": "888-682-8082",
+ "residential_telephone2": "",
+ "sb_address": "2605 Camino Del Rio South",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "San Diego",
+ "sb_state": "CA",
+ "sb_zip": "92108",
+ "sb_telephone": "888-682-8082",
+ "sb_telephone2": "0",
+ "business_address": "2605 Camino Del Rio South",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "San Diego",
+ "business_state": "CA",
+ "business_zip": "92108",
+ "business_telephone": "888-682-8082",
+ "business_telephone2": "",
+ "offer_id": "1572",
+ "TERM_END": null
+ },
+ {
+ "id": "188",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "188",
+ "distributor_id": "8",
+ "price_kwh": "0.059",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "97",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments": null,
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-21 08:37:47",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.06",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": null,
+ "UnlimitedPriceAmt": null,
+ "account": "335",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Agway Energy Services LLC ",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.agwayenergy.com",
+ "sb_url": "http://www.agwayenergy.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "P.O. Box 4819",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Syracuse",
+ "residential_state": "NY",
+ "residential_zip": "13221",
+ "residential_telephone": "888-982-4929",
+ "residential_telephone2": "",
+ "sb_address": "P.O. Box 4819",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Syracuse",
+ "sb_state": "NY",
+ "sb_zip": "13221",
+ "sb_telephone": "888-982-4929",
+ "sb_telephone2": "",
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "1575",
+ "TERM_END": null
+ },
+ {
+ "id": "188",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "188",
+ "distributor_id": "8",
+ "price_kwh": "0.059",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments": null,
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-21 08:37:17",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.06",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": null,
+ "UnlimitedPriceAmt": null,
+ "account": "335",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Agway Energy Services LLC ",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.agwayenergy.com",
+ "sb_url": "http://www.agwayenergy.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "P.O. Box 4819",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Syracuse",
+ "residential_state": "NY",
+ "residential_zip": "13221",
+ "residential_telephone": "888-982-4929",
+ "residential_telephone2": "",
+ "sb_address": "P.O. Box 4819",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Syracuse",
+ "sb_state": "NY",
+ "sb_zip": "13221",
+ "sb_telephone": "888-982-4929",
+ "sb_telephone2": "",
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "1574",
+ "TERM_END": null
+ },
+ {
+ "id": "142",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "142",
+ "distributor_id": "8",
+ "price_kwh": "0.076",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Take advantage of price security and lock in an all-inclusive, fixed price for 12 months with no early termination or monthly fee.\n\n\u2022 www.mythinkenergy.com\n\u2022 1 (888) 699-4471",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-19 10:30:32",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0810",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://mythinkenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "271",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Think Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.mythinkenergy.com",
+ "sb_url": "http://www.mythinkenergy.com",
+ "business_url": "http://www.mythinkenergy.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1990 Post Oak Blvd",
+ "residential_address2": "Suite 1900",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77056",
+ "residential_telephone": "888-923-3633",
+ "residential_telephone2": "",
+ "sb_address": "1990 Post Oak Blvd",
+ "sb_address2": "Suite 1900",
+ "sb_address3": "",
+ "sb_city": "Houston",
+ "sb_state": "TX",
+ "sb_zip": "77056",
+ "sb_telephone": "888-923-3633",
+ "sb_telephone2": "",
+ "business_address": "1990 Post Oak Blvd",
+ "business_address2": "Suite 1900",
+ "business_address3": "",
+ "business_city": "Houston",
+ "business_state": "TX",
+ "business_zip": "77056",
+ "business_telephone": "888-232-6206",
+ "business_telephone2": "",
+ "offer_id": "949",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "142",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "142",
+ "distributor_id": "8",
+ "price_kwh": "0.086",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Take advantage of price security and lock in an all-inclusive, fixed price for 18 months with no early termination or monthly fee.\n\n\u2022 www.mythinkenergy.com\n\u2022 1 (888) 699-4471",
+ "term_length": "18",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-18 09:51:41",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0830",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://mythinkenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "271",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Think Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.mythinkenergy.com",
+ "sb_url": "http://www.mythinkenergy.com",
+ "business_url": "http://www.mythinkenergy.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1990 Post Oak Blvd",
+ "residential_address2": "Suite 1900",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77056",
+ "residential_telephone": "888-923-3633",
+ "residential_telephone2": "",
+ "sb_address": "1990 Post Oak Blvd",
+ "sb_address2": "Suite 1900",
+ "sb_address3": "",
+ "sb_city": "Houston",
+ "sb_state": "TX",
+ "sb_zip": "77056",
+ "sb_telephone": "888-923-3633",
+ "sb_telephone2": "",
+ "business_address": "1990 Post Oak Blvd",
+ "business_address2": "Suite 1900",
+ "business_address3": "",
+ "business_city": "Houston",
+ "business_state": "TX",
+ "business_zip": "77056",
+ "business_telephone": "888-232-6206",
+ "business_telephone2": "",
+ "offer_id": "950",
+ "TERM_END": "2017-08-05"
+ },
+ {
+ "id": "184",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "184",
+ "distributor_id": "8",
+ "price_kwh": "0.090198",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Gives you two years of guaranteed price protection and a simple, fixed rate for energy. This option provides you with two years of flat, fixed rates for your energy use allowing you to focus on other areas of your business, leaving the energy to us!",
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": "200",
+ "datUpdate": "2016-01-11 10:19:06",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0902",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://www.ageraenergy.com/",
+ "url_this_offer": "https://www.ageraenergy.com/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": null,
+ "UnlimitedPriceAmt": null,
+ "account": "332",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Agera Energy LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ageraenergy.com/",
+ "sb_url": "http://www.ageraenergy.com/",
+ "business_url": "http://www.ageraenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "555 Pleasantville Road",
+ "residential_address2": "South Building, Suite S-107 ",
+ "residential_address3": "",
+ "residential_city": "Briarcliff Manor",
+ "residential_state": "NY",
+ "residential_zip": "10510",
+ "residential_telephone": "844-692-4372 ",
+ "residential_telephone2": "844-MY-AGERA",
+ "sb_address": "555 Pleasantville Road",
+ "sb_address2": "South Building, Suite S-107",
+ "sb_address3": "",
+ "sb_city": "Briarcliff Manor",
+ "sb_state": "NY",
+ "sb_zip": "10510",
+ "sb_telephone": "844-692-4372 ",
+ "sb_telephone2": "844-MY-AGERA",
+ "business_address": "555 Pleasantville Road",
+ "business_address2": "South Building, Suite S-107",
+ "business_address3": "",
+ "business_city": "Briarcliff Manor",
+ "business_state": "NY",
+ "business_zip": "10510",
+ "business_telephone": "844-692-4372 ",
+ "business_telephone2": "844-MY-AGERA",
+ "offer_id": "1561",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "184",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "184",
+ "distributor_id": "8",
+ "price_kwh": "0.094592",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Gives you one full year of guaranteed price protection against rising energy costs and a simple, fixed rate for energy. This option provides you with a year of worry-free energy use and no variations in your monthly rate and no long-term commitment!",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "200",
+ "datUpdate": "2016-01-11 10:18:26",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0946",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://www.ageraenergy.com/",
+ "url_this_offer": "https://www.ageraenergy.com/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": null,
+ "UnlimitedPriceAmt": null,
+ "account": "332",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Agera Energy LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ageraenergy.com/",
+ "sb_url": "http://www.ageraenergy.com/",
+ "business_url": "http://www.ageraenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "555 Pleasantville Road",
+ "residential_address2": "South Building, Suite S-107 ",
+ "residential_address3": "",
+ "residential_city": "Briarcliff Manor",
+ "residential_state": "NY",
+ "residential_zip": "10510",
+ "residential_telephone": "844-692-4372 ",
+ "residential_telephone2": "844-MY-AGERA",
+ "sb_address": "555 Pleasantville Road",
+ "sb_address2": "South Building, Suite S-107",
+ "sb_address3": "",
+ "sb_city": "Briarcliff Manor",
+ "sb_state": "NY",
+ "sb_zip": "10510",
+ "sb_telephone": "844-692-4372 ",
+ "sb_telephone2": "844-MY-AGERA",
+ "business_address": "555 Pleasantville Road",
+ "business_address2": "South Building, Suite S-107",
+ "business_address3": "",
+ "business_city": "Briarcliff Manor",
+ "business_state": "NY",
+ "business_zip": "10510",
+ "business_telephone": "844-692-4372 ",
+ "business_telephone2": "844-MY-AGERA",
+ "offer_id": "1560",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "156",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "156",
+ "distributor_id": "8",
+ "price_kwh": "0.12",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "99",
+ "strRenewableAddons":
+ "Ethical Electric's wind power is sourced 100% inside Pennsylvania.",
+ "boolPAWind": "1",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-05 13:15:56",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.1200",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://ethicalelectric.com/plans/disclosure/penn_power12moJan16",
+ "url_this_offer": "https://ethicalelectric.com/Enroll/Location",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "291",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ethical Electric",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ethicalelectric.com",
+ "sb_url": "http://www.ethicalelectric.com",
+ "business_url": "http://www.ethicalelectric.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1055 Thomas Jefferson Street NW",
+ "residential_address2": "Suite 650",
+ "residential_address3": "",
+ "residential_city": "Washington",
+ "residential_state": "DC",
+ "residential_zip": "20007",
+ "residential_telephone": "1-800-460-4900",
+ "residential_telephone2": "",
+ "sb_address": "1055 Thomas Jefferson Street NW",
+ "sb_address2": "Suite 650",
+ "sb_address3": "",
+ "sb_city": "Washington",
+ "sb_state": "DC",
+ "sb_zip": "20007",
+ "sb_telephone": "1-800-460-4900",
+ "sb_telephone2": "0",
+ "business_address": "1055 Thomas Jefferson Street NW",
+ "business_address2": "Suite 650",
+ "business_address3": "",
+ "business_city": "Washington",
+ "business_state": "DC",
+ "business_zip": "20007",
+ "business_telephone": "1-800-460-4900",
+ "business_telephone2": "",
+ "offer_id": "834",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "156",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "156",
+ "distributor_id": "8",
+ "price_kwh": "0.113",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "99",
+ "strRenewableAddons":
+ "Ethical Electric's wind power is sourced 100% inside Pennsylvania.",
+ "boolPAWind": "1",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments": "12 month agreement - 3 months fixed, 9 months variable",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-05 13:11:30",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.11",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://ethicalelectric.com/plans/disclosure/penn_power3moJan16",
+ "url_this_offer": "https://ethicalelectric.com/Enroll/Location",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "291",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ethical Electric",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ethicalelectric.com",
+ "sb_url": "http://www.ethicalelectric.com",
+ "business_url": "http://www.ethicalelectric.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1055 Thomas Jefferson Street NW",
+ "residential_address2": "Suite 650",
+ "residential_address3": "",
+ "residential_city": "Washington",
+ "residential_state": "DC",
+ "residential_zip": "20007",
+ "residential_telephone": "1-800-460-4900",
+ "residential_telephone2": "",
+ "sb_address": "1055 Thomas Jefferson Street NW",
+ "sb_address2": "Suite 650",
+ "sb_address3": "",
+ "sb_city": "Washington",
+ "sb_state": "DC",
+ "sb_zip": "20007",
+ "sb_telephone": "1-800-460-4900",
+ "sb_telephone2": "0",
+ "business_address": "1055 Thomas Jefferson Street NW",
+ "business_address2": "Suite 650",
+ "business_address3": "",
+ "business_city": "Washington",
+ "business_state": "DC",
+ "business_zip": "20007",
+ "business_telephone": "1-800-460-4900",
+ "business_telephone2": "",
+ "offer_id": "770",
+ "TERM_END": null
+ },
+ {
+ "id": "174",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "174",
+ "distributor_id": "8",
+ "price_kwh": "0.0855",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Save 5% on monthly energy supply costs guaranteed for 12 months compared to your Utility Price Index. FREE Comcast perks including a $20 Prepaid Visa card, 1 premium channel (HBO, Showtime or Cinemax) for 3 months, and two Fandango tickets.",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-04 11:54:23",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://comcastenergyrewards.com/S10000",
+ "url_this_offer": "https://comcastenergyrewards.com/S10000",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "316",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Energy Rewards",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://comcastenergyrewards.com/S10000",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "6469 102nd Ave North",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Pinellas Park",
+ "residential_state": "FL",
+ "residential_zip": "33782",
+ "residential_telephone": "844-684-5506",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "1366",
+ "TERM_END": null
+ },
+ {
+ "id": "167",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "167",
+ "distributor_id": "8",
+ "price_kwh": "0.0759",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "1",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "Our famous 25% rebate check is available to all of our customers. \nPlus: \n\nTravel Savings\nDeal Dollars\nMovie downloads\nReforestation projects\n1yr magazine subscription\n\nPick yours!\nWe have sent out over $900,000 in rebates. Are you getting one?\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-04 10:36:24",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.08",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://www.americanpowerandgas.com/",
+ "url_this_offer": "https://www.americanpowerandgas.com/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "307",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "American Power & Gas of Pennsylvania LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.americanpowerandgas.com",
+ "sb_url": "http://www.americanpowerandgas.com",
+ "business_url": "http://www.americanpowerandgas.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "10601 Belcher Road S",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Seminole",
+ "residential_state": "FL",
+ "residential_zip": "33777",
+ "residential_telephone": "888-823-9778",
+ "residential_telephone2": "",
+ "sb_address": "10601 Belcher Road S",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Seminole",
+ "sb_state": "FL",
+ "sb_zip": "33777",
+ "sb_telephone": "888-823-9778",
+ "sb_telephone2": "0",
+ "business_address": "10601 Belcher Road S",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Seminole",
+ "business_state": "FL",
+ "business_zip": "33777",
+ "business_telephone": "888-823-9778",
+ "business_telephone2": "",
+ "offer_id": "639",
+ "TERM_END": null
+ },
+ {
+ "id": "167",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "167",
+ "distributor_id": "8",
+ "price_kwh": "0.1059",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "1",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "98",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "Our famous 25% rebate check is available to all of our customers. \nPlus: \n\nTravel Savings\nDeal Dollars\nMovie downloads\nReforestation projects\n1yr magazine subscription\n\nPick yours!\nWe have sent out over $900,000 in rebates. Are you getting one?\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-04 10:36:10",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.11",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://www.americanpowerandgas.com/",
+ "url_this_offer": "https://www.americanpowerandgas.com/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "307",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "American Power & Gas of Pennsylvania LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.americanpowerandgas.com",
+ "sb_url": "http://www.americanpowerandgas.com",
+ "business_url": "http://www.americanpowerandgas.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "10601 Belcher Road S",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Seminole",
+ "residential_state": "FL",
+ "residential_zip": "33777",
+ "residential_telephone": "888-823-9778",
+ "residential_telephone2": "",
+ "sb_address": "10601 Belcher Road S",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Seminole",
+ "sb_state": "FL",
+ "sb_zip": "33777",
+ "sb_telephone": "888-823-9778",
+ "sb_telephone2": "0",
+ "business_address": "10601 Belcher Road S",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Seminole",
+ "business_state": "FL",
+ "business_zip": "33777",
+ "business_telephone": "888-823-9778",
+ "business_telephone2": "",
+ "offer_id": "640",
+ "TERM_END": null
+ },
+ {
+ "id": "142",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "142",
+ "distributor_id": "8",
+ "price_kwh": "0.086",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Take advantage of price security and lock in an all-inclusive, fixed price for 24 months with no early termination or monthly fee.\n\n\u2022 www.mythinkenergy.com\n\u2022 1 (888) 699-4471",
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-12-30 16:38:30",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0840",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://mythinkenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "271",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Think Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.mythinkenergy.com",
+ "sb_url": "http://www.mythinkenergy.com",
+ "business_url": "http://www.mythinkenergy.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1990 Post Oak Blvd",
+ "residential_address2": "Suite 1900",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77056",
+ "residential_telephone": "888-923-3633",
+ "residential_telephone2": "",
+ "sb_address": "1990 Post Oak Blvd",
+ "sb_address2": "Suite 1900",
+ "sb_address3": "",
+ "sb_city": "Houston",
+ "sb_state": "TX",
+ "sb_zip": "77056",
+ "sb_telephone": "888-923-3633",
+ "sb_telephone2": "",
+ "business_address": "1990 Post Oak Blvd",
+ "business_address2": "Suite 1900",
+ "business_address3": "",
+ "business_city": "Houston",
+ "business_state": "TX",
+ "business_zip": "77056",
+ "business_telephone": "888-232-6206",
+ "business_telephone2": "",
+ "offer_id": "951",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "94",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "94",
+ "distributor_id": "8",
+ "price_kwh": "0.1004",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": "Lock in one full year of price protection.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "200",
+ "datUpdate": "2015-12-29 17:31:05",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.1004",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "http://www.respondpower.com/enrollhere.php?campaign=protect",
+ "url_this_offer":
+ "http://www.respondpower.com/enrollhere.php?campaign=protect",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "152",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Respond Power LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url":
+ "http://www.respondpower.com/enrollhere.php?campaign=protect",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "100 Dutch Hill Road",
+ "residential_address2": "Suite 230",
+ "residential_address3": "",
+ "residential_city": "Orangeburg",
+ "residential_state": "NY",
+ "residential_zip": "10962",
+ "residential_telephone": "877-973-7763",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "100 Dutch Hill Road",
+ "business_address2": "Suite 230",
+ "business_address3": "",
+ "business_city": "Orangeburg",
+ "business_state": "NY",
+ "business_zip": "10962",
+ "business_telephone": "877-973-7763",
+ "business_telephone2": "",
+ "offer_id": "648",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "95",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "95",
+ "distributor_id": "8",
+ "price_kwh": "0.0769",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "25.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": "This offer is for new North American Power customers only.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-12-14 11:53:01",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0769",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "http://napower.com/rateboards",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "336",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "North American Power",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.napower.com/rateboards",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "20 Glover Avenue ",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Norwalk",
+ "residential_state": "CT",
+ "residential_zip": "06850",
+ "residential_telephone": "877-572-0736",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "20 Glover Avenue",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Norwalk",
+ "business_state": "CT",
+ "business_zip": "06850",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1103",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "103",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "103",
+ "distributor_id": "8",
+ "price_kwh": "0.0775",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Call (877)28 AMBIT - (877) 282-6248 or visit www.ambitenergy.com",
+ "term_length": "3",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-08-11 16:07:06",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0775",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.ambitenergy.com",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "172",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ambit Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ambitenergy.com",
+ "sb_url": "http://www.ambitenergy.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1801 N Lamar Street",
+ "residential_address2": "Suite 200",
+ "residential_address3": "",
+ "residential_city": "Dallas",
+ "residential_state": "TX",
+ "residential_zip": "75202",
+ "residential_telephone": "877-282-6248 ",
+ "residential_telephone2": "877-28-AMBIT",
+ "sb_address": "1801 N Lamar Street",
+ "sb_address2": "Suite 200",
+ "sb_address3": "",
+ "sb_city": "Dallas",
+ "sb_state": "TX",
+ "sb_zip": "75202",
+ "sb_telephone": "877-282-6248",
+ "sb_telephone2": "877-28-AMBIT",
+ "business_address": "1801 N Lamar Street",
+ "business_address2": "Suite 200",
+ "business_address3": "",
+ "business_city": "Dallas",
+ "business_state": "TX",
+ "business_zip": "75202",
+ "business_telephone": "877-282-6248 ",
+ "business_telephone2": "877-28-AMBIT",
+ "offer_id": "899",
+ "TERM_END": "2016-05-05"
+ },
+ {
+ "id": "185",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "185",
+ "distributor_id": "8",
+ "price_kwh": "0.0839",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": "Wind",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "50",
+ "datUpdate": "2015-12-21 16:27:50",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0839",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "1",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "333",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Star Energy Partners LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.starenergypartners.com",
+ "sb_url": "http://www.starenergypartners.com",
+ "business_url": "http://www.starenergypartners.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "3340 W. Market Street",
+ "residential_address2": "Fl. 1",
+ "residential_address3": "",
+ "residential_city": "Akron",
+ "residential_state": "OH",
+ "residential_zip": "44333",
+ "residential_telephone": "1-855-427-7827",
+ "residential_telephone2": "",
+ "sb_address": "3340 W. Market Street",
+ "sb_address2": "Fl. 1",
+ "sb_address3": "",
+ "sb_city": "Akron",
+ "sb_state": "OH",
+ "sb_zip": "44333",
+ "sb_telephone": "1-855-427-7827",
+ "sb_telephone2": "",
+ "business_address": "3340 W. Market Street",
+ "business_address2": "Fl. 1",
+ "business_address3": "",
+ "business_city": "Akron",
+ "business_state": "OH",
+ "business_zip": "44333",
+ "business_telephone": "1-855-427-7827",
+ "business_telephone2": "",
+ "offer_id": "1430",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "127",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "127",
+ "distributor_id": "8",
+ "price_kwh": "0.0839",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "How you benefit:\n\nWith a fixed rate we provide you with the peace-of-mind and savings that comes with locking in at our low rates. \n\n",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "100",
+ "datUpdate": "2015-11-30 09:20:47",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0839",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.igsenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "223",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IGS Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.igsenergy.com",
+ "sb_url": "http://www.igsenergy.com/business/small-business/",
+ "business_url": "http://www.igsenergy.com/business/large-business/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "6100 Emerald Parkway",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Dublin",
+ "residential_state": "OH",
+ "residential_zip": "43106",
+ "residential_telephone": "1-800-280-4474",
+ "residential_telephone2": "",
+ "sb_address": "6100 Emerald Parkway",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Dublin",
+ "sb_state": "OH",
+ "sb_zip": "43106",
+ "sb_telephone": "1-800-280-4474",
+ "sb_telephone2": "0",
+ "business_address": "6100 Emerald Parkway",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Dublin",
+ "business_state": "OH",
+ "business_zip": "43106",
+ "business_telephone": "1-800-280-4474",
+ "business_telephone2": "",
+ "offer_id": "559",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "79",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "79",
+ "distributor_id": "8",
+ "price_kwh": "0.0849",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "New enrollments receive $100 in Cash-Back Savings, a 10% discount on energy saving products, and free access to Verde Energy Solutions where customers can monitor & analyze their energy use.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-11-30 11:46:02",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0000",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://www.lowcostpower.com/registration.aspx?type=res",
+ "url_this_offer":
+ "https://www.lowcostpower.com/registration.aspx?type=res",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "158",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Verde Energy USA, Inc.",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://lowcostpower.com",
+ "sb_url": "http://lowcostpower.com",
+ "business_url": "http://lowcostpower.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "101 Merritt Seven",
+ "residential_address2": "Second Floor",
+ "residential_address3": "",
+ "residential_city": "Norwalk",
+ "residential_state": "CT",
+ "residential_zip": "06851",
+ "residential_telephone": "1-800-388-3862",
+ "residential_telephone2": "",
+ "sb_address": "101 Merritt Seven",
+ "sb_address2": "Second Floor",
+ "sb_address3": "",
+ "sb_city": "Norwalk",
+ "sb_state": "CT",
+ "sb_zip": "06851",
+ "sb_telephone": "1-800-388-3862",
+ "sb_telephone2": "",
+ "business_address": "101 Merritt Seven",
+ "business_address2": "Second Floor",
+ "business_address3": "",
+ "business_city": "Norwalk",
+ "business_state": "CT",
+ "business_zip": "06851",
+ "business_telephone": "1-800-388-3862",
+ "business_telephone2": "",
+ "offer_id": "1143",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "113",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "113",
+ "distributor_id": "8",
+ "price_kwh": "0.0849",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "What you get:\nA 90-day customer satisfaction guarantee that gives you the ability to cancel your contract during the 90-day period without an early termination fee.\n",
+ "term_length": "36",
+ "term_end_date": null,
+ "cost_cancellation_fee": "150",
+ "datUpdate": "2015-10-12 13:38:39",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0000",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://home2.constellation.com/?s=PA&u=PENNPWR&p=PAPOWERSWITCH&c=E",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "201",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Constellation Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://home2.constellation.com/?p=PAPowerSwitch",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "1221 Lamar Street Suite 750",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77010",
+ "residential_telephone": "1-866-577-4700",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "841",
+ "TERM_END": "2019-02-05"
+ },
+ {
+ "id": "113",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "113",
+ "distributor_id": "8",
+ "price_kwh": "0.0869",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "What you get:\n\nA 90-day customer satisfaction guarantee that gives you the ability to cancel your contract during the 90-day period without an early termination fee.\n",
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": "150",
+ "datUpdate": "2015-12-07 13:01:09",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0000",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://home2.constellation.com/?s=PA&u=PENNPWR&p=PAPOWERSWITCH&c=E",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "201",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Constellation Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://home2.constellation.com/?p=PAPowerSwitch",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "1221 Lamar Street Suite 750",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77010",
+ "residential_telephone": "1-866-577-4700",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "618",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "127",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "127",
+ "distributor_id": "8",
+ "price_kwh": "0.0869",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "How you benefit:\n\nEnjoy today's locked in rates that can save both money and the environment. \n\n100% GREEN",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "100",
+ "datUpdate": "2015-11-30 09:20:07",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0869",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.igsenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "223",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IGS Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.igsenergy.com",
+ "sb_url": "http://www.igsenergy.com/business/small-business/",
+ "business_url": "http://www.igsenergy.com/business/large-business/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "6100 Emerald Parkway",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Dublin",
+ "residential_state": "OH",
+ "residential_zip": "43106",
+ "residential_telephone": "1-800-280-4474",
+ "residential_telephone2": "",
+ "sb_address": "6100 Emerald Parkway",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Dublin",
+ "sb_state": "OH",
+ "sb_zip": "43106",
+ "sb_telephone": "1-800-280-4474",
+ "sb_telephone2": "0",
+ "business_address": "6100 Emerald Parkway",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Dublin",
+ "business_state": "OH",
+ "business_zip": "43106",
+ "business_telephone": "1-800-280-4474",
+ "business_telephone2": "",
+ "offer_id": "738",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "113",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "113",
+ "distributor_id": "8",
+ "price_kwh": "0.0869",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "What you get:\n\n\nA 90-day customer satisfaction guarantee that gives you the ability to cancel your contract during the 90-day period without an early termination fee.\n",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "150",
+ "datUpdate": "2015-10-12 13:13:46",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0000",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://home2.constellation.com/?s=PA&u=PENNPWR&p=PAPOWERSWITCH&c=E",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "201",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Constellation Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://home2.constellation.com/?p=PAPowerSwitch",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "1221 Lamar Street Suite 750",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77010",
+ "residential_telephone": "1-866-577-4700",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "193",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "185",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "185",
+ "distributor_id": "8",
+ "price_kwh": "0.0879",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": "95",
+ "datUpdate": "2015-09-18 15:25:21",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0879",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "1",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "333",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Star Energy Partners LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.starenergypartners.com",
+ "sb_url": "http://www.starenergypartners.com",
+ "business_url": "http://www.starenergypartners.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "3340 W. Market Street",
+ "residential_address2": "Fl. 1",
+ "residential_address3": "",
+ "residential_city": "Akron",
+ "residential_state": "OH",
+ "residential_zip": "44333",
+ "residential_telephone": "1-855-427-7827",
+ "residential_telephone2": "",
+ "sb_address": "3340 W. Market Street",
+ "sb_address2": "Fl. 1",
+ "sb_address3": "",
+ "sb_city": "Akron",
+ "sb_state": "OH",
+ "sb_zip": "44333",
+ "sb_telephone": "1-855-427-7827",
+ "sb_telephone2": "",
+ "business_address": "3340 W. Market Street",
+ "business_address2": "Fl. 1",
+ "business_address3": "",
+ "business_city": "Akron",
+ "business_state": "OH",
+ "business_zip": "44333",
+ "business_telephone": "1-855-427-7827",
+ "business_telephone2": "",
+ "offer_id": "1429",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "103",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "103",
+ "distributor_id": "8",
+ "price_kwh": "0.08879",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "PA Guaranteed Savings Plan: Guaranteed savings vs. incumbent price for the first year. Additional savings plan is available after the end of first year.\n\nCall (877) 28 AMBIT - (877) 282-6248 or visit www.ambitenergy.com\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-12-21 15:07:17",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.ambitenergy.com",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "172",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ambit Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ambitenergy.com",
+ "sb_url": "http://www.ambitenergy.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1801 N Lamar Street",
+ "residential_address2": "Suite 200",
+ "residential_address3": "",
+ "residential_city": "Dallas",
+ "residential_state": "TX",
+ "residential_zip": "75202",
+ "residential_telephone": "877-282-6248 ",
+ "residential_telephone2": "877-28-AMBIT",
+ "sb_address": "1801 N Lamar Street",
+ "sb_address2": "Suite 200",
+ "sb_address3": "",
+ "sb_city": "Dallas",
+ "sb_state": "TX",
+ "sb_zip": "75202",
+ "sb_telephone": "877-282-6248",
+ "sb_telephone2": "877-28-AMBIT",
+ "business_address": "1801 N Lamar Street",
+ "business_address2": "Suite 200",
+ "business_address3": "",
+ "business_city": "Dallas",
+ "business_state": "TX",
+ "business_zip": "75202",
+ "business_telephone": "877-282-6248 ",
+ "business_telephone2": "877-28-AMBIT",
+ "offer_id": "518",
+ "TERM_END": null
+ },
+ {
+ "id": "185",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "185",
+ "distributor_id": "8",
+ "price_kwh": "0.0899",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": "Wind",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "36",
+ "term_end_date": null,
+ "cost_cancellation_fee": "125",
+ "datUpdate": "2015-09-18 15:26:34",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0899",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "1",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "333",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Star Energy Partners LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.starenergypartners.com",
+ "sb_url": "http://www.starenergypartners.com",
+ "business_url": "http://www.starenergypartners.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "3340 W. Market Street",
+ "residential_address2": "Fl. 1",
+ "residential_address3": "",
+ "residential_city": "Akron",
+ "residential_state": "OH",
+ "residential_zip": "44333",
+ "residential_telephone": "1-855-427-7827",
+ "residential_telephone2": "",
+ "sb_address": "3340 W. Market Street",
+ "sb_address2": "Fl. 1",
+ "sb_address3": "",
+ "sb_city": "Akron",
+ "sb_state": "OH",
+ "sb_zip": "44333",
+ "sb_telephone": "1-855-427-7827",
+ "sb_telephone2": "",
+ "business_address": "3340 W. Market Street",
+ "business_address2": "Fl. 1",
+ "business_address3": "",
+ "business_city": "Akron",
+ "business_state": "OH",
+ "business_zip": "44333",
+ "business_telephone": "1-855-427-7827",
+ "business_telephone2": "",
+ "offer_id": "1431",
+ "TERM_END": "2019-02-05"
+ },
+ {
+ "id": "168",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "168",
+ "distributor_id": "8",
+ "price_kwh": "0.0959",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "0.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "For 1.98\u00a2/kWh more per month, make Your Electricity 100% Green. In addition, SFE will plant 1 tree on your behalf. ",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "1st month at $.0909/kWh, you may receive up to $75 cash-back.*See terms and conditions for details.\n ",
+ "term_length": "36",
+ "term_end_date": null,
+ "cost_cancellation_fee": "75",
+ "datUpdate": "2015-12-07 13:18:26",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0959",
+ "IntroductoryPriceAmt": "0.09",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "309",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "SFE Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.sfeenergy.com/pennsylvania",
+ "sb_url": "http://www.sfeenergy.com/pennsylvania",
+ "business_url": "http://www.sfeenergy.com/pennsylvania",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "651 Holiday Drive",
+ "residential_address2": "Foster Plaza 5 Suite 300 ",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15220",
+ "residential_telephone": "1-877-316-6344",
+ "residential_telephone2": "",
+ "sb_address": "651 Holiday Drive",
+ "sb_address2": "Foster Plaza 5 Suite 300",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15220",
+ "sb_telephone": "1-877-316-6344",
+ "sb_telephone2": "0",
+ "business_address": "651 Holiday Drive",
+ "business_address2": "Foster Plaza 5 Suite 300",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15220",
+ "business_telephone": "1-877-316-6344",
+ "business_telephone2": "",
+ "offer_id": "725",
+ "TERM_END": "2019-02-05"
+ },
+ {
+ "id": "168",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "168",
+ "distributor_id": "8",
+ "price_kwh": "0.0959",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "0.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "For 1.98\u00a2/kWh more per month, make Your Electricity 100% Green. In addition, SFE will plant 1 tree on your behalf.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "1st month at $.0909/kWh, you may receive up to $50 cash-back.*See terms and conditions for details.\n",
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": "50",
+ "datUpdate": "2015-12-07 13:18:02",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0959",
+ "IntroductoryPriceAmt": "0.09",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "309",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "SFE Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.sfeenergy.com/pennsylvania",
+ "sb_url": "http://www.sfeenergy.com/pennsylvania",
+ "business_url": "http://www.sfeenergy.com/pennsylvania",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "651 Holiday Drive",
+ "residential_address2": "Foster Plaza 5 Suite 300 ",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15220",
+ "residential_telephone": "1-877-316-6344",
+ "residential_telephone2": "",
+ "sb_address": "651 Holiday Drive",
+ "sb_address2": "Foster Plaza 5 Suite 300",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15220",
+ "sb_telephone": "1-877-316-6344",
+ "sb_telephone2": "0",
+ "business_address": "651 Holiday Drive",
+ "business_address2": "Foster Plaza 5 Suite 300",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15220",
+ "business_telephone": "1-877-316-6344",
+ "business_telephone2": "",
+ "offer_id": "724",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "103",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "103",
+ "distributor_id": "8",
+ "price_kwh": "0.1043",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "100% Renewable! Green E Certified! Power your energy needs while making the world a cleaner place.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Ambit Certified Green Keystone Variable: \n\nThis plan is eligible for free energy and travel rewards.\n\nCall (877) 28 AMBIT - (877) 282-6248 or visit www.ambitenergy.com\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-08-11 15:44:54",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.ambitenergy.com",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "172",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ambit Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ambitenergy.com",
+ "sb_url": "http://www.ambitenergy.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1801 N Lamar Street",
+ "residential_address2": "Suite 200",
+ "residential_address3": "",
+ "residential_city": "Dallas",
+ "residential_state": "TX",
+ "residential_zip": "75202",
+ "residential_telephone": "877-282-6248 ",
+ "residential_telephone2": "877-28-AMBIT",
+ "sb_address": "1801 N Lamar Street",
+ "sb_address2": "Suite 200",
+ "sb_address3": "",
+ "sb_city": "Dallas",
+ "sb_state": "TX",
+ "sb_zip": "75202",
+ "sb_telephone": "877-282-6248",
+ "sb_telephone2": "877-28-AMBIT",
+ "business_address": "1801 N Lamar Street",
+ "business_address2": "Suite 200",
+ "business_address3": "",
+ "business_city": "Dallas",
+ "business_state": "TX",
+ "business_zip": "75202",
+ "business_telephone": "877-282-6248 ",
+ "business_telephone2": "877-28-AMBIT",
+ "offer_id": "519",
+ "TERM_END": null
+ }
+ ],
+ "fixed": [
+ {
+ "id": "103",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "103",
+ "distributor_id": "8",
+ "price_kwh": "0.0775",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Call (877)28 AMBIT - (877) 282-6248 or visit www.ambitenergy.com",
+ "term_length": "3",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-08-11 16:07:06",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0775",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.ambitenergy.com",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "172",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ambit Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ambitenergy.com",
+ "sb_url": "http://www.ambitenergy.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1801 N Lamar Street",
+ "residential_address2": "Suite 200",
+ "residential_address3": "",
+ "residential_city": "Dallas",
+ "residential_state": "TX",
+ "residential_zip": "75202",
+ "residential_telephone": "877-282-6248 ",
+ "residential_telephone2": "877-28-AMBIT",
+ "sb_address": "1801 N Lamar Street",
+ "sb_address2": "Suite 200",
+ "sb_address3": "",
+ "sb_city": "Dallas",
+ "sb_state": "TX",
+ "sb_zip": "75202",
+ "sb_telephone": "877-282-6248",
+ "sb_telephone2": "877-28-AMBIT",
+ "business_address": "1801 N Lamar Street",
+ "business_address2": "Suite 200",
+ "business_address3": "",
+ "business_city": "Dallas",
+ "business_state": "TX",
+ "business_zip": "75202",
+ "business_telephone": "877-282-6248 ",
+ "business_telephone2": "877-28-AMBIT",
+ "offer_id": "899",
+ "TERM_END": "2016-05-05"
+ },
+ {
+ "id": "43",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "43",
+ "distributor_id": "8",
+ "price_kwh": "0.085",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Fixed price of 8.50 cents per kwh for a 10-month term. \n\nNo cancel fee.\n\nEnroll at www.ConEdSolutions.com/PennPower",
+ "term_length": "10",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 15:39:59",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0850",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.ConEdSolutions.com/PennPower",
+ "url_this_offer":
+ "https://www.conedsolutions.com/CES_Enroll/SelectPrice.aspx?type=R&state=PA&utility=PENN&area=",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "110",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Con Edison Solutions",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.conedsolutions.com",
+ "sb_url": "http://www.conedsolutions.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "100 Summit Lake Dr",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Valhalla",
+ "residential_state": "NY",
+ "residential_zip": "10595",
+ "residential_telephone": "1-877-623-6114",
+ "residential_telephone2": "",
+ "sb_address": "100 Summit Lake Drive",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Valhalla",
+ "sb_state": "NY",
+ "sb_zip": "10595",
+ "sb_telephone": "1-877-623-6114",
+ "sb_telephone2": "",
+ "business_address": "100 Summit Lake Dr",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Valhalla",
+ "business_state": "NY",
+ "business_zip": "10595",
+ "business_telephone": "1-800-316-8011",
+ "business_telephone2": "",
+ "offer_id": "443",
+ "TERM_END": "2016-12-05"
+ },
+ {
+ "id": "113",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "113",
+ "distributor_id": "8",
+ "price_kwh": "0.0869",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "What you get:\n\nA 90-day customer satisfaction guarantee that gives you the ability to cancel your contract during the 90-day period without an early termination fee.\n",
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": "150",
+ "datUpdate": "2015-12-07 13:01:09",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0000",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://home2.constellation.com/?s=PA&u=PENNPWR&p=PAPOWERSWITCH&c=E",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "201",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Constellation Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://home2.constellation.com/?p=PAPowerSwitch",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "1221 Lamar Street Suite 750",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77010",
+ "residential_telephone": "1-866-577-4700",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "618",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "113",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "113",
+ "distributor_id": "8",
+ "price_kwh": "0.0849",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "What you get:\nA 90-day customer satisfaction guarantee that gives you the ability to cancel your contract during the 90-day period without an early termination fee.\n",
+ "term_length": "36",
+ "term_end_date": null,
+ "cost_cancellation_fee": "150",
+ "datUpdate": "2015-10-12 13:38:39",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0000",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://home2.constellation.com/?s=PA&u=PENNPWR&p=PAPOWERSWITCH&c=E",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "201",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Constellation Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://home2.constellation.com/?p=PAPowerSwitch",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "1221 Lamar Street Suite 750",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77010",
+ "residential_telephone": "1-866-577-4700",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "841",
+ "TERM_END": "2019-02-05"
+ },
+ {
+ "id": "113",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "113",
+ "distributor_id": "8",
+ "price_kwh": "0.0869",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "What you get:\n\n\nA 90-day customer satisfaction guarantee that gives you the ability to cancel your contract during the 90-day period without an early termination fee.\n",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "150",
+ "datUpdate": "2015-10-12 13:13:46",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0000",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://home2.constellation.com/?s=PA&u=PENNPWR&p=PAPOWERSWITCH&c=E",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "201",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Constellation Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://home2.constellation.com/?p=PAPowerSwitch",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "1221 Lamar Street Suite 750",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77010",
+ "residential_telephone": "1-866-577-4700",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "193",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "44",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "44",
+ "distributor_id": "8",
+ "price_kwh": "0.0819",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Direct Energy gives you price stability with excellent fixed-rate electricity plans. To sign up call us at 1-877-697-7617",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "99",
+ "datUpdate": "2016-02-01 11:53:59",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0819",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.directenergy.com/pa/electricity-plans/msid/720/pid/pa12?utm_source=BD&utm_medium=PA-PTC",
+ "url_this_offer":
+ "https://www.directenergy.com/pa/electricity-plans/msid/720/pid/pa12?utm_source=BD&utm_medium=PA-PTC",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "280",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Direct Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.directenergy.com/pa/msid/720",
+ "sb_url": "http://www.business.directenergy.com/",
+ "business_url": "http://www.business.directenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "Liberty Center",
+ "residential_address2": "1001 Liberty Avenue",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15222",
+ "residential_telephone": "1-877-697-7617",
+ "residential_telephone2": "",
+ "sb_address": "Liberty Center",
+ "sb_address2": "1001 Liberty Avenue",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15222",
+ "sb_telephone": "1-888-734-0741",
+ "sb_telephone2": "0",
+ "business_address": "Liberty Center",
+ "business_address2": "1001 Liberty Avenue",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15222",
+ "business_telephone": "1-888-925-9115",
+ "business_telephone2": "",
+ "offer_id": "865",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "44",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "44",
+ "distributor_id": "8",
+ "price_kwh": "0.0869",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Direct Energy gives you price stability with excellent fixed-rate electricity plans. Check out our current plan for 6 months. To sign up call us at 1-877-697-7617",
+ "term_length": "6",
+ "term_end_date": null,
+ "cost_cancellation_fee": "99",
+ "datUpdate": "2016-02-01 11:53:40",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0869",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.directenergy.com/pa/electricity-plans/msid/720/pid/pa6?utm_source=BD&utm_medium=PA-PTC",
+ "url_this_offer":
+ "https://www.directenergy.com/pa/electricity-plans/msid/720/pid/pa6?utm_source=BD&utm_medium=PA-PTC",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "280",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Direct Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.directenergy.com/pa/msid/720",
+ "sb_url": "http://www.business.directenergy.com/",
+ "business_url": "http://www.business.directenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "Liberty Center",
+ "residential_address2": "1001 Liberty Avenue",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15222",
+ "residential_telephone": "1-877-697-7617",
+ "residential_telephone2": "",
+ "sb_address": "Liberty Center",
+ "sb_address2": "1001 Liberty Avenue",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15222",
+ "sb_telephone": "1-888-734-0741",
+ "sb_telephone2": "0",
+ "business_address": "Liberty Center",
+ "business_address2": "1001 Liberty Avenue",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15222",
+ "business_telephone": "1-888-925-9115",
+ "business_telephone2": "",
+ "offer_id": "864",
+ "TERM_END": "2016-08-05"
+ },
+ {
+ "id": "44",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "44",
+ "distributor_id": "8",
+ "price_kwh": "0.0889",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Receive a Nest Learning Thermostat. Lock in your electricity rate for 24 months. Nest features help you save up to 10-12% on heating bills and 15% on cooling bills. To sign up call us at 1-877-697-7617",
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": "200",
+ "datUpdate": "2016-02-01 11:50:13",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0889",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.directenergy.com/nest/msid/720/pid/cc24?utm_source=BD&utm_medium=PA-PTC",
+ "url_this_offer":
+ "https://www.directenergy.com/nest/msid/720/pid/cc24?utm_source=BD&utm_medium=PA-PTC",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "280",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Direct Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.directenergy.com/pa/msid/720",
+ "sb_url": "http://www.business.directenergy.com/",
+ "business_url": "http://www.business.directenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "Liberty Center",
+ "residential_address2": "1001 Liberty Avenue",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15222",
+ "residential_telephone": "1-877-697-7617",
+ "residential_telephone2": "",
+ "sb_address": "Liberty Center",
+ "sb_address2": "1001 Liberty Avenue",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15222",
+ "sb_telephone": "1-888-734-0741",
+ "sb_telephone2": "0",
+ "business_address": "Liberty Center",
+ "business_address2": "1001 Liberty Avenue",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15222",
+ "business_telephone": "1-888-925-9115",
+ "business_telephone2": "",
+ "offer_id": "866",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "156",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "156",
+ "distributor_id": "8",
+ "price_kwh": "0.12",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "99",
+ "strRenewableAddons":
+ "Ethical Electric's wind power is sourced 100% inside Pennsylvania.",
+ "boolPAWind": "1",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-05 13:15:56",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.1200",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://ethicalelectric.com/plans/disclosure/penn_power12moJan16",
+ "url_this_offer": "https://ethicalelectric.com/Enroll/Location",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "291",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ethical Electric",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ethicalelectric.com",
+ "sb_url": "http://www.ethicalelectric.com",
+ "business_url": "http://www.ethicalelectric.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1055 Thomas Jefferson Street NW",
+ "residential_address2": "Suite 650",
+ "residential_address3": "",
+ "residential_city": "Washington",
+ "residential_state": "DC",
+ "residential_zip": "20007",
+ "residential_telephone": "1-800-460-4900",
+ "residential_telephone2": "",
+ "sb_address": "1055 Thomas Jefferson Street NW",
+ "sb_address2": "Suite 650",
+ "sb_address3": "",
+ "sb_city": "Washington",
+ "sb_state": "DC",
+ "sb_zip": "20007",
+ "sb_telephone": "1-800-460-4900",
+ "sb_telephone2": "0",
+ "business_address": "1055 Thomas Jefferson Street NW",
+ "business_address2": "Suite 650",
+ "business_address3": "",
+ "business_city": "Washington",
+ "business_state": "DC",
+ "business_zip": "20007",
+ "business_telephone": "1-800-460-4900",
+ "business_telephone2": "",
+ "offer_id": "834",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "138",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "138",
+ "distributor_id": "8",
+ "price_kwh": "0.079",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "97",
+ "strRenewableAddons":
+ "This product is made from 100% national wind energy. By choosing the Pollution Free\u2122 Choice 7 product over typical system power, a PA household with monthly usage of 750 kWh can prevent more than 13,600 pounds of (CO2) emissions/year.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Pollution Free\u2122 Choice 7 is only available to new customers through this site. Click Sign Up For This Offer for full details. Other offers available at GreenMountainEnergy.com/?campaignid=7152. \nSign up today!\n",
+ "term_length": "7",
+ "term_end_date": null,
+ "cost_cancellation_fee": "100",
+ "datUpdate": "2016-02-03 11:06:40",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0790",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&sid=A3P_PAPUC_AllOffers/",
+ "url_this_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&product-slug=penn-power-pollution-free-choice-7&sid=A3P_PAPUC_PFChoice7/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "265",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Green Mountain Energy Company",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.greenmountainenergy.com/?campaignid=7152",
+ "sb_url": null,
+ "business_url":
+ "http://www.greenmountain.com/commercial-home/?campaignid=7152",
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "300 W. 6th Street",
+ "residential_address2": "Suite 900",
+ "residential_address3": "",
+ "residential_city": "Austin",
+ "residential_state": "TX",
+ "residential_zip": "78701",
+ "residential_telephone": "855-531-5066",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "300 W. 6th Street",
+ "business_address2": "Suite 900",
+ "business_address3": "",
+ "business_city": "Austin",
+ "business_state": "TX",
+ "business_zip": "78701",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1249",
+ "TERM_END": "2016-09-05"
+ },
+ {
+ "id": "138",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "138",
+ "distributor_id": "8",
+ "price_kwh": "0.081",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "97",
+ "strRenewableAddons":
+ "This product is made from 100% national wind energy. By choosing the Pollution Free\u2122 Choice 9 product over typical system power, a PA household with monthly usage of 750 kWh can prevent more than 13,600 pounds of (CO2) emissions a year.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Pollution Free\u2122 Choice 9 is only available to new customers through this site. Click Sign Up For This Offer for full details. Other offers available at GreenMountainEnergy.com/?campaignid=7152. \nSign up today!\n",
+ "term_length": "9",
+ "term_end_date": null,
+ "cost_cancellation_fee": "100",
+ "datUpdate": "2016-02-03 11:06:31",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0810",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&sid=A3P_PAPUC_AllOffers/",
+ "url_this_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&product-slug=penn-power-pollution-free-choice-9&sid=A3P_PAPUC_PFChoice9/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "265",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Green Mountain Energy Company",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.greenmountainenergy.com/?campaignid=7152",
+ "sb_url": null,
+ "business_url":
+ "http://www.greenmountain.com/commercial-home/?campaignid=7152",
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "300 W. 6th Street",
+ "residential_address2": "Suite 900",
+ "residential_address3": "",
+ "residential_city": "Austin",
+ "residential_state": "TX",
+ "residential_zip": "78701",
+ "residential_telephone": "855-531-5066",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "300 W. 6th Street",
+ "business_address2": "Suite 900",
+ "business_address3": "",
+ "business_city": "Austin",
+ "business_state": "TX",
+ "business_zip": "78701",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1250",
+ "TERM_END": "2016-11-05"
+ },
+ {
+ "id": "84",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "84",
+ "distributor_id": "8",
+ "price_kwh": "0.1159",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "SmartBudget Renewable is a 12-month locked supply rate that is 100% matched with renewable energy certificates and generated from sources like running water, wind, solar and biomass. For more information, visit us online at www.IDTEnergy.com",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Take control of your energy bill with a 12-month locked supply rate. NO termination fees. NO rate spikes. NO hidden fees or deposits. NO surprises. Enjoy the security of locked supply rate protection with the flexibility of a variable program.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 12:45:34",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.1159",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://idtenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "112",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IDT Energy, Inc.",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://idtenergy.com/",
+ "sb_url": "http://idtenergy.com/",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "520 Broad Street 17th Floor",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Newark",
+ "residential_state": "NJ",
+ "residential_zip": "07102",
+ "residential_telephone": "877-887-6866",
+ "residential_telephone2": "",
+ "sb_address": "520 Broad Street",
+ "sb_address2": "17th Floor",
+ "sb_address3": "",
+ "sb_city": "Newark",
+ "sb_state": "NJ",
+ "sb_zip": "07102",
+ "sb_telephone": "877-887-6866",
+ "sb_telephone2": "",
+ "business_address": "520 Broad Street 17th Floor",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Newark",
+ "business_state": "NJ",
+ "business_zip": "07102",
+ "business_telephone": "877-887-6866",
+ "business_telephone2": "",
+ "offer_id": "1385",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "84",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "84",
+ "distributor_id": "8",
+ "price_kwh": "0.088",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Take control of your energy bill with a 12-month locked supply rate. NO termination fees. NO rate spikes. NO hidden fees or deposits. NO surprises. Enjoy the security of locked supply rate protection with the flexibility of a variable program.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 12:45:07",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0880",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://idtenergy.com/",
+ "url_this_offer": "http://idtenergy.com/papowerswitch/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "112",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IDT Energy, Inc.",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://idtenergy.com/",
+ "sb_url": "http://idtenergy.com/",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "520 Broad Street 17th Floor",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Newark",
+ "residential_state": "NJ",
+ "residential_zip": "07102",
+ "residential_telephone": "877-887-6866",
+ "residential_telephone2": "",
+ "sb_address": "520 Broad Street",
+ "sb_address2": "17th Floor",
+ "sb_address3": "",
+ "sb_city": "Newark",
+ "sb_state": "NJ",
+ "sb_zip": "07102",
+ "sb_telephone": "877-887-6866",
+ "sb_telephone2": "",
+ "business_address": "520 Broad Street 17th Floor",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Newark",
+ "business_state": "NJ",
+ "business_zip": "07102",
+ "business_telephone": "877-887-6866",
+ "business_telephone2": "",
+ "offer_id": "1111",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "127",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "127",
+ "distributor_id": "8",
+ "price_kwh": "0.0839",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "How you benefit:\n\nWith a fixed rate we provide you with the peace-of-mind and savings that comes with locking in at our low rates. \n\n",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "100",
+ "datUpdate": "2015-11-30 09:20:47",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0839",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.igsenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "223",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IGS Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.igsenergy.com",
+ "sb_url": "http://www.igsenergy.com/business/small-business/",
+ "business_url": "http://www.igsenergy.com/business/large-business/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "6100 Emerald Parkway",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Dublin",
+ "residential_state": "OH",
+ "residential_zip": "43106",
+ "residential_telephone": "1-800-280-4474",
+ "residential_telephone2": "",
+ "sb_address": "6100 Emerald Parkway",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Dublin",
+ "sb_state": "OH",
+ "sb_zip": "43106",
+ "sb_telephone": "1-800-280-4474",
+ "sb_telephone2": "0",
+ "business_address": "6100 Emerald Parkway",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Dublin",
+ "business_state": "OH",
+ "business_zip": "43106",
+ "business_telephone": "1-800-280-4474",
+ "business_telephone2": "",
+ "offer_id": "559",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "127",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "127",
+ "distributor_id": "8",
+ "price_kwh": "0.0869",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "How you benefit:\n\nEnjoy today's locked in rates that can save both money and the environment. \n\n100% GREEN",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "100",
+ "datUpdate": "2015-11-30 09:20:07",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0869",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.igsenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "223",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IGS Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.igsenergy.com",
+ "sb_url": "http://www.igsenergy.com/business/small-business/",
+ "business_url": "http://www.igsenergy.com/business/large-business/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "6100 Emerald Parkway",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Dublin",
+ "residential_state": "OH",
+ "residential_zip": "43106",
+ "residential_telephone": "1-800-280-4474",
+ "residential_telephone2": "",
+ "sb_address": "6100 Emerald Parkway",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Dublin",
+ "sb_state": "OH",
+ "sb_zip": "43106",
+ "sb_telephone": "1-800-280-4474",
+ "sb_telephone2": "0",
+ "business_address": "6100 Emerald Parkway",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Dublin",
+ "business_state": "OH",
+ "business_zip": "43106",
+ "business_telephone": "1-800-280-4474",
+ "business_telephone2": "",
+ "offer_id": "738",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "95",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "95",
+ "distributor_id": "8",
+ "price_kwh": "0.0769",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "25.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": "This offer is for new North American Power customers only.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-12-14 11:53:01",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0769",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "http://napower.com/rateboards",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "336",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "North American Power",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.napower.com/rateboards",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "20 Glover Avenue ",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Norwalk",
+ "residential_state": "CT",
+ "residential_zip": "06850",
+ "residential_telephone": "877-572-0736",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "20 Glover Avenue",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Norwalk",
+ "business_state": "CT",
+ "business_zip": "06850",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1103",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "119",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "119",
+ "distributor_id": "8",
+ "price_kwh": "0.08291",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Customer may cancel this contract at any time upon 30 days\u2019 notice to PAG&E, for which the Customer may be separately billed an Early Termination Fee of $150. \nYour account with PAG&E will automatically renew with PAG&E on a fixed rate program.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "150",
+ "datUpdate": "2016-02-03 16:20:21",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0829",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.usgande.com/markets/Pennsylvania/Enroll/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "211",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Pennsylvania Gas & Electric",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.PAGandE.com",
+ "sb_url": "http://www.PAGandE.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "290 N.W. 165th Street",
+ "residential_address2": "PH5",
+ "residential_address3": "",
+ "residential_city": "North Miami Beach",
+ "residential_state": "FL",
+ "residential_zip": "33169",
+ "residential_telephone": "866-706-7361",
+ "residential_telephone2": "",
+ "sb_address": "290 N.W. 165th Street",
+ "sb_address2": "PH5",
+ "sb_address3": "",
+ "sb_city": "North Miami Beach",
+ "sb_state": "FL",
+ "sb_zip": "33169",
+ "sb_telephone": "866-706-7361",
+ "sb_telephone2": "",
+ "business_address": "290 N.W. 165th Street",
+ "business_address2": "PH5",
+ "business_address3": "",
+ "business_city": "North Miami Beach",
+ "business_state": "FL",
+ "business_zip": "33169",
+ "business_telephone": "866-706-7361",
+ "business_telephone2": "",
+ "offer_id": "1481",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "100",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "100",
+ "distributor_id": "8",
+ "price_kwh": "0.0879",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "50",
+ "datUpdate": "2016-02-01 15:43:04",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0899",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "292",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Public Power, LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ppandu.com/en/index.php",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "39 Old Ridgebury Road",
+ "residential_address2": "Suite 14",
+ "residential_address3": "",
+ "residential_city": "Danbury",
+ "residential_state": "CT",
+ "residential_zip": "06810",
+ "residential_telephone": "888-354-4415",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "39 Old Ridgebury Road",
+ "business_address2": "Suite 14",
+ "business_address3": "",
+ "business_city": "Danbury",
+ "business_state": "CT",
+ "business_zip": "06810",
+ "business_telephone": "888-354-4415",
+ "business_telephone2": "",
+ "offer_id": "1419",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "186",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "186",
+ "distributor_id": "8",
+ "price_kwh": "0.097",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Residents Energy ResiSURE: Lock in a per kWh rate for 12-months. No termination or other fees or deposits. Protect yourself from future electric supply market volatility. All the price certainty of a fixed rate program with the flexibility you need.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 13:41:23",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0970",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "334",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Residents Energy LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://residentsenergy.com/",
+ "sb_url": "http://residentsenergy.com/",
+ "business_url": "http://residentsenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "20 West Third Street",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Jamestown",
+ "residential_state": "NY",
+ "residential_zip": "14701",
+ "residential_telephone": "1-888-828-RESI(7374)",
+ "residential_telephone2": "",
+ "sb_address": "20 West Third Street",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Jamestown",
+ "sb_state": "NY",
+ "sb_zip": "14701",
+ "sb_telephone": "1-888-828-RESI(7374)",
+ "sb_telephone2": "0",
+ "business_address": "20 West Third Street",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Jamestown",
+ "business_state": "NY",
+ "business_zip": "14701",
+ "business_telephone": "1-888-828-RESI(7374)",
+ "business_telephone2": "",
+ "offer_id": "1271",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "186",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "186",
+ "distributor_id": "8",
+ "price_kwh": "0.1249",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "Residents Energy\u2019s renewable electricity supply program is 100% matched with renewable energy certificates and generated from sources like running water, solar, wind and biomass.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Concerned about the environment? Looking for price certainty? ResiSure Renewable locks your per kWh supply rate for 12-months. No ETFs. Supply is 100% matched with renewable energy certificates and generated from sources like running water and wind.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 13:40:32",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.1249",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "334",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Residents Energy LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://residentsenergy.com/",
+ "sb_url": "http://residentsenergy.com/",
+ "business_url": "http://residentsenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "20 West Third Street",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Jamestown",
+ "residential_state": "NY",
+ "residential_zip": "14701",
+ "residential_telephone": "1-888-828-RESI(7374)",
+ "residential_telephone2": "",
+ "sb_address": "20 West Third Street",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Jamestown",
+ "sb_state": "NY",
+ "sb_zip": "14701",
+ "sb_telephone": "1-888-828-RESI(7374)",
+ "sb_telephone2": "0",
+ "business_address": "20 West Third Street",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Jamestown",
+ "business_state": "NY",
+ "business_zip": "14701",
+ "business_telephone": "1-888-828-RESI(7374)",
+ "business_telephone2": "",
+ "offer_id": "1281",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "94",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "94",
+ "distributor_id": "8",
+ "price_kwh": "0.1004",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": "Lock in one full year of price protection.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "200",
+ "datUpdate": "2015-12-29 17:31:05",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.1004",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "http://www.respondpower.com/enrollhere.php?campaign=protect",
+ "url_this_offer":
+ "http://www.respondpower.com/enrollhere.php?campaign=protect",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "152",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Respond Power LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url":
+ "http://www.respondpower.com/enrollhere.php?campaign=protect",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "100 Dutch Hill Road",
+ "residential_address2": "Suite 230",
+ "residential_address3": "",
+ "residential_city": "Orangeburg",
+ "residential_state": "NY",
+ "residential_zip": "10962",
+ "residential_telephone": "877-973-7763",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "100 Dutch Hill Road",
+ "business_address2": "Suite 230",
+ "business_address3": "",
+ "business_city": "Orangeburg",
+ "business_state": "NY",
+ "business_zip": "10962",
+ "business_telephone": "877-973-7763",
+ "business_telephone2": "",
+ "offer_id": "648",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "168",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "168",
+ "distributor_id": "8",
+ "price_kwh": "0.0959",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "0.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "For 1.98\u00a2/kWh more per month, make Your Electricity 100% Green. In addition, SFE will plant 1 tree on your behalf. ",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "1st month at $.0909/kWh, you may receive up to $75 cash-back.*See terms and conditions for details.\n ",
+ "term_length": "36",
+ "term_end_date": null,
+ "cost_cancellation_fee": "75",
+ "datUpdate": "2015-12-07 13:18:26",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0959",
+ "IntroductoryPriceAmt": "0.09",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "309",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "SFE Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.sfeenergy.com/pennsylvania",
+ "sb_url": "http://www.sfeenergy.com/pennsylvania",
+ "business_url": "http://www.sfeenergy.com/pennsylvania",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "651 Holiday Drive",
+ "residential_address2": "Foster Plaza 5 Suite 300 ",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15220",
+ "residential_telephone": "1-877-316-6344",
+ "residential_telephone2": "",
+ "sb_address": "651 Holiday Drive",
+ "sb_address2": "Foster Plaza 5 Suite 300",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15220",
+ "sb_telephone": "1-877-316-6344",
+ "sb_telephone2": "0",
+ "business_address": "651 Holiday Drive",
+ "business_address2": "Foster Plaza 5 Suite 300",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15220",
+ "business_telephone": "1-877-316-6344",
+ "business_telephone2": "",
+ "offer_id": "725",
+ "TERM_END": "2019-02-05"
+ },
+ {
+ "id": "168",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "168",
+ "distributor_id": "8",
+ "price_kwh": "0.0959",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "0.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "For 1.98\u00a2/kWh more per month, make Your Electricity 100% Green. In addition, SFE will plant 1 tree on your behalf.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "1st month at $.0909/kWh, you may receive up to $50 cash-back.*See terms and conditions for details.\n",
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": "50",
+ "datUpdate": "2015-12-07 13:18:02",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0959",
+ "IntroductoryPriceAmt": "0.09",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "309",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "SFE Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.sfeenergy.com/pennsylvania",
+ "sb_url": "http://www.sfeenergy.com/pennsylvania",
+ "business_url": "http://www.sfeenergy.com/pennsylvania",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "651 Holiday Drive",
+ "residential_address2": "Foster Plaza 5 Suite 300 ",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15220",
+ "residential_telephone": "1-877-316-6344",
+ "residential_telephone2": "",
+ "sb_address": "651 Holiday Drive",
+ "sb_address2": "Foster Plaza 5 Suite 300",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15220",
+ "sb_telephone": "1-877-316-6344",
+ "sb_telephone2": "0",
+ "business_address": "651 Holiday Drive",
+ "business_address2": "Foster Plaza 5 Suite 300",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15220",
+ "business_telephone": "1-877-316-6344",
+ "business_telephone2": "",
+ "offer_id": "724",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "124",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "124",
+ "distributor_id": "8",
+ "price_kwh": "0.0789",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "This 3 month fixed rate is exclusive for Penn Power Customers only.",
+ "term_length": "3",
+ "term_end_date": null,
+ "cost_cancellation_fee": "49",
+ "datUpdate": "2016-01-25 11:27:15",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "1",
+ "MonthlySvcFeeAmt": "4.93",
+ "FixedPriceAmt": "0.0789",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.sperianenergy.com/rate_plans.aspx",
+ "url_this_offer": "http://www.sperianenergy.com/default.aspx",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "338",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Sperian Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.sperianenergy.com",
+ "sb_url": "http://www.sperianenergy.com",
+ "business_url": "http://www.sperianenergy.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "2605 Camino Del Rio South",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "San Diego",
+ "residential_state": "CA",
+ "residential_zip": "92108",
+ "residential_telephone": "888-682-8082",
+ "residential_telephone2": "",
+ "sb_address": "2605 Camino Del Rio South",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "San Diego",
+ "sb_state": "CA",
+ "sb_zip": "92108",
+ "sb_telephone": "888-682-8082",
+ "sb_telephone2": "0",
+ "business_address": "2605 Camino Del Rio South",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "San Diego",
+ "business_state": "CA",
+ "business_zip": "92108",
+ "business_telephone": "888-682-8082",
+ "business_telephone2": "",
+ "offer_id": "1571",
+ "TERM_END": "2016-05-05"
+ },
+ {
+ "id": "185",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "185",
+ "distributor_id": "8",
+ "price_kwh": "0.0839",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": "Wind",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "50",
+ "datUpdate": "2015-12-21 16:27:50",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0839",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "1",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "333",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Star Energy Partners LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.starenergypartners.com",
+ "sb_url": "http://www.starenergypartners.com",
+ "business_url": "http://www.starenergypartners.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "3340 W. Market Street",
+ "residential_address2": "Fl. 1",
+ "residential_address3": "",
+ "residential_city": "Akron",
+ "residential_state": "OH",
+ "residential_zip": "44333",
+ "residential_telephone": "1-855-427-7827",
+ "residential_telephone2": "",
+ "sb_address": "3340 W. Market Street",
+ "sb_address2": "Fl. 1",
+ "sb_address3": "",
+ "sb_city": "Akron",
+ "sb_state": "OH",
+ "sb_zip": "44333",
+ "sb_telephone": "1-855-427-7827",
+ "sb_telephone2": "",
+ "business_address": "3340 W. Market Street",
+ "business_address2": "Fl. 1",
+ "business_address3": "",
+ "business_city": "Akron",
+ "business_state": "OH",
+ "business_zip": "44333",
+ "business_telephone": "1-855-427-7827",
+ "business_telephone2": "",
+ "offer_id": "1430",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "185",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "185",
+ "distributor_id": "8",
+ "price_kwh": "0.0899",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": "Wind",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "36",
+ "term_end_date": null,
+ "cost_cancellation_fee": "125",
+ "datUpdate": "2015-09-18 15:26:34",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0899",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "1",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "333",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Star Energy Partners LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.starenergypartners.com",
+ "sb_url": "http://www.starenergypartners.com",
+ "business_url": "http://www.starenergypartners.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "3340 W. Market Street",
+ "residential_address2": "Fl. 1",
+ "residential_address3": "",
+ "residential_city": "Akron",
+ "residential_state": "OH",
+ "residential_zip": "44333",
+ "residential_telephone": "1-855-427-7827",
+ "residential_telephone2": "",
+ "sb_address": "3340 W. Market Street",
+ "sb_address2": "Fl. 1",
+ "sb_address3": "",
+ "sb_city": "Akron",
+ "sb_state": "OH",
+ "sb_zip": "44333",
+ "sb_telephone": "1-855-427-7827",
+ "sb_telephone2": "",
+ "business_address": "3340 W. Market Street",
+ "business_address2": "Fl. 1",
+ "business_address3": "",
+ "business_city": "Akron",
+ "business_state": "OH",
+ "business_zip": "44333",
+ "business_telephone": "1-855-427-7827",
+ "business_telephone2": "",
+ "offer_id": "1431",
+ "TERM_END": "2019-02-05"
+ },
+ {
+ "id": "185",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "185",
+ "distributor_id": "8",
+ "price_kwh": "0.0879",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": "95",
+ "datUpdate": "2015-09-18 15:25:21",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0879",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "1",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "333",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Star Energy Partners LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.starenergypartners.com",
+ "sb_url": "http://www.starenergypartners.com",
+ "business_url": "http://www.starenergypartners.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "3340 W. Market Street",
+ "residential_address2": "Fl. 1",
+ "residential_address3": "",
+ "residential_city": "Akron",
+ "residential_state": "OH",
+ "residential_zip": "44333",
+ "residential_telephone": "1-855-427-7827",
+ "residential_telephone2": "",
+ "sb_address": "3340 W. Market Street",
+ "sb_address2": "Fl. 1",
+ "sb_address3": "",
+ "sb_city": "Akron",
+ "sb_state": "OH",
+ "sb_zip": "44333",
+ "sb_telephone": "1-855-427-7827",
+ "sb_telephone2": "",
+ "business_address": "3340 W. Market Street",
+ "business_address2": "Fl. 1",
+ "business_address3": "",
+ "business_city": "Akron",
+ "business_state": "OH",
+ "business_zip": "44333",
+ "business_telephone": "1-855-427-7827",
+ "business_telephone2": "",
+ "offer_id": "1429",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "142",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "142",
+ "distributor_id": "8",
+ "price_kwh": "0.076",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Take advantage of price security and lock in an all-inclusive, fixed price for 12 months with no early termination or monthly fee.\n\n\u2022 www.mythinkenergy.com\n\u2022 1 (888) 699-4471",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-19 10:30:32",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0810",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://mythinkenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "271",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Think Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.mythinkenergy.com",
+ "sb_url": "http://www.mythinkenergy.com",
+ "business_url": "http://www.mythinkenergy.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1990 Post Oak Blvd",
+ "residential_address2": "Suite 1900",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77056",
+ "residential_telephone": "888-923-3633",
+ "residential_telephone2": "",
+ "sb_address": "1990 Post Oak Blvd",
+ "sb_address2": "Suite 1900",
+ "sb_address3": "",
+ "sb_city": "Houston",
+ "sb_state": "TX",
+ "sb_zip": "77056",
+ "sb_telephone": "888-923-3633",
+ "sb_telephone2": "",
+ "business_address": "1990 Post Oak Blvd",
+ "business_address2": "Suite 1900",
+ "business_address3": "",
+ "business_city": "Houston",
+ "business_state": "TX",
+ "business_zip": "77056",
+ "business_telephone": "888-232-6206",
+ "business_telephone2": "",
+ "offer_id": "949",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "142",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "142",
+ "distributor_id": "8",
+ "price_kwh": "0.086",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Take advantage of price security and lock in an all-inclusive, fixed price for 18 months with no early termination or monthly fee.\n\n\u2022 www.mythinkenergy.com\n\u2022 1 (888) 699-4471",
+ "term_length": "18",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-18 09:51:41",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0830",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://mythinkenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "271",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Think Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.mythinkenergy.com",
+ "sb_url": "http://www.mythinkenergy.com",
+ "business_url": "http://www.mythinkenergy.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1990 Post Oak Blvd",
+ "residential_address2": "Suite 1900",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77056",
+ "residential_telephone": "888-923-3633",
+ "residential_telephone2": "",
+ "sb_address": "1990 Post Oak Blvd",
+ "sb_address2": "Suite 1900",
+ "sb_address3": "",
+ "sb_city": "Houston",
+ "sb_state": "TX",
+ "sb_zip": "77056",
+ "sb_telephone": "888-923-3633",
+ "sb_telephone2": "",
+ "business_address": "1990 Post Oak Blvd",
+ "business_address2": "Suite 1900",
+ "business_address3": "",
+ "business_city": "Houston",
+ "business_state": "TX",
+ "business_zip": "77056",
+ "business_telephone": "888-232-6206",
+ "business_telephone2": "",
+ "offer_id": "950",
+ "TERM_END": "2017-08-05"
+ },
+ {
+ "id": "142",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "142",
+ "distributor_id": "8",
+ "price_kwh": "0.086",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Take advantage of price security and lock in an all-inclusive, fixed price for 24 months with no early termination or monthly fee.\n\n\u2022 www.mythinkenergy.com\n\u2022 1 (888) 699-4471",
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-12-30 16:38:30",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0840",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://mythinkenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "271",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Think Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.mythinkenergy.com",
+ "sb_url": "http://www.mythinkenergy.com",
+ "business_url": "http://www.mythinkenergy.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1990 Post Oak Blvd",
+ "residential_address2": "Suite 1900",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77056",
+ "residential_telephone": "888-923-3633",
+ "residential_telephone2": "",
+ "sb_address": "1990 Post Oak Blvd",
+ "sb_address2": "Suite 1900",
+ "sb_address3": "",
+ "sb_city": "Houston",
+ "sb_state": "TX",
+ "sb_zip": "77056",
+ "sb_telephone": "888-923-3633",
+ "sb_telephone2": "",
+ "business_address": "1990 Post Oak Blvd",
+ "business_address2": "Suite 1900",
+ "business_address3": "",
+ "business_city": "Houston",
+ "business_state": "TX",
+ "business_zip": "77056",
+ "business_telephone": "888-232-6206",
+ "business_telephone2": "",
+ "offer_id": "951",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "150",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "150",
+ "distributor_id": "8",
+ "price_kwh": "0.0749",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "This rate starts at 7.49\u00a2 until your nine meter read! \n\nNo Variable and No Cancel fee!",
+ "term_length": "9",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-29 16:49:14",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0749",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PPOWER&customer_type=Residential",
+ "url_this_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PPOWER&customer_type=Residential",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "283",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Town Square Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Residential&zip;= ",
+ "sb_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Commercial&zip;= ",
+ "business_url": "https://townsquareenergy.com/industrial-ct/ ",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "16233 Kenyon Avenue",
+ "residential_address2": "Suite 210",
+ "residential_address3": "",
+ "residential_city": "Lakeville",
+ "residential_state": "MN",
+ "residential_zip": "55044",
+ "residential_telephone": "800-282-3331",
+ "residential_telephone2": "",
+ "sb_address": "16233 Kenyon Avenue",
+ "sb_address2": "Suite 210",
+ "sb_address3": "",
+ "sb_city": "Lakeville",
+ "sb_state": "MN",
+ "sb_zip": "55044",
+ "sb_telephone": "800-282-3331",
+ "sb_telephone2": "",
+ "business_address": "16233 Kenyon Avenue",
+ "business_address2": "Suite 210",
+ "business_address3": "",
+ "business_city": "Lakeville",
+ "business_state": "MN",
+ "business_zip": "55044",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1379",
+ "TERM_END": "2016-11-05"
+ },
+ {
+ "id": "150",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "150",
+ "distributor_id": "8",
+ "price_kwh": "0.076",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "This rate starts at 7.60\u00a2 until your sixth billing cycle.\n\nNo Cancel fee!\n\nSign-up today!",
+ "term_length": "6",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-29 15:19:59",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0760",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PECO&customer_type=Residential",
+ "url_this_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PPOWER&customer_type=Residential",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "283",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Town Square Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Residential&zip;= ",
+ "sb_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Commercial&zip;= ",
+ "business_url": "https://townsquareenergy.com/industrial-ct/ ",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "16233 Kenyon Avenue",
+ "residential_address2": "Suite 210",
+ "residential_address3": "",
+ "residential_city": "Lakeville",
+ "residential_state": "MN",
+ "residential_zip": "55044",
+ "residential_telephone": "800-282-3331",
+ "residential_telephone2": "",
+ "sb_address": "16233 Kenyon Avenue",
+ "sb_address2": "Suite 210",
+ "sb_address3": "",
+ "sb_city": "Lakeville",
+ "sb_state": "MN",
+ "sb_zip": "55044",
+ "sb_telephone": "800-282-3331",
+ "sb_telephone2": "",
+ "business_address": "16233 Kenyon Avenue",
+ "business_address2": "Suite 210",
+ "business_address3": "",
+ "business_city": "Lakeville",
+ "business_state": "MN",
+ "business_zip": "55044",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1465",
+ "TERM_END": "2016-08-05"
+ },
+ {
+ "id": "150",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "150",
+ "distributor_id": "8",
+ "price_kwh": "0.0759",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "This rate is at 7.59\u00a2 until your third billing cycle! \n\nNo Cancel fee!",
+ "term_length": "3",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-29 15:19:39",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0759",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PPOWER&customer_type=Residential",
+ "url_this_offer":
+ "https://townsquareenergy.com/find-rates/?state_code=PA&utility=PPOWER&customer_type=Residential",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "283",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Town Square Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Residential&zip;= ",
+ "sb_url":
+ "https://townsquareenergy.com/rates-state/?customer_type=Commercial&zip;= ",
+ "business_url": "https://townsquareenergy.com/industrial-ct/ ",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "16233 Kenyon Avenue",
+ "residential_address2": "Suite 210",
+ "residential_address3": "",
+ "residential_city": "Lakeville",
+ "residential_state": "MN",
+ "residential_zip": "55044",
+ "residential_telephone": "800-282-3331",
+ "residential_telephone2": "",
+ "sb_address": "16233 Kenyon Avenue",
+ "sb_address2": "Suite 210",
+ "sb_address3": "",
+ "sb_city": "Lakeville",
+ "sb_state": "MN",
+ "sb_zip": "55044",
+ "sb_telephone": "800-282-3331",
+ "sb_telephone2": "",
+ "business_address": "16233 Kenyon Avenue",
+ "business_address2": "Suite 210",
+ "business_address3": "",
+ "business_city": "Lakeville",
+ "business_state": "MN",
+ "business_zip": "55044",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1378",
+ "TERM_END": "2016-05-05"
+ },
+ {
+ "id": "79",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "79",
+ "distributor_id": "8",
+ "price_kwh": "0.0849",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "New enrollments receive $100 in Cash-Back Savings, a 10% discount on energy saving products, and free access to Verde Energy Solutions where customers can monitor & analyze their energy use.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-11-30 11:46:02",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0000",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://www.lowcostpower.com/registration.aspx?type=res",
+ "url_this_offer":
+ "https://www.lowcostpower.com/registration.aspx?type=res",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "158",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Verde Energy USA, Inc.",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://lowcostpower.com",
+ "sb_url": "http://lowcostpower.com",
+ "business_url": "http://lowcostpower.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "101 Merritt Seven",
+ "residential_address2": "Second Floor",
+ "residential_address3": "",
+ "residential_city": "Norwalk",
+ "residential_state": "CT",
+ "residential_zip": "06851",
+ "residential_telephone": "1-800-388-3862",
+ "residential_telephone2": "",
+ "sb_address": "101 Merritt Seven",
+ "sb_address2": "Second Floor",
+ "sb_address3": "",
+ "sb_city": "Norwalk",
+ "sb_state": "CT",
+ "sb_zip": "06851",
+ "sb_telephone": "1-800-388-3862",
+ "sb_telephone2": "",
+ "business_address": "101 Merritt Seven",
+ "business_address2": "Second Floor",
+ "business_address3": "",
+ "business_city": "Norwalk",
+ "business_state": "CT",
+ "business_zip": "06851",
+ "business_telephone": "1-800-388-3862",
+ "business_telephone2": "",
+ "offer_id": "1143",
+ "TERM_END": "2017-02-05"
+ }
+ ],
+ "variable": [
+ {
+ "id": "103",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "103",
+ "distributor_id": "8",
+ "price_kwh": "0.08879",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "PA Guaranteed Savings Plan: Guaranteed savings vs. incumbent price for the first year. Additional savings plan is available after the end of first year.\n\nCall (877) 28 AMBIT - (877) 282-6248 or visit www.ambitenergy.com\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-12-21 15:07:17",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.ambitenergy.com",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "172",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ambit Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ambitenergy.com",
+ "sb_url": "http://www.ambitenergy.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1801 N Lamar Street",
+ "residential_address2": "Suite 200",
+ "residential_address3": "",
+ "residential_city": "Dallas",
+ "residential_state": "TX",
+ "residential_zip": "75202",
+ "residential_telephone": "877-282-6248 ",
+ "residential_telephone2": "877-28-AMBIT",
+ "sb_address": "1801 N Lamar Street",
+ "sb_address2": "Suite 200",
+ "sb_address3": "",
+ "sb_city": "Dallas",
+ "sb_state": "TX",
+ "sb_zip": "75202",
+ "sb_telephone": "877-282-6248",
+ "sb_telephone2": "877-28-AMBIT",
+ "business_address": "1801 N Lamar Street",
+ "business_address2": "Suite 200",
+ "business_address3": "",
+ "business_city": "Dallas",
+ "business_state": "TX",
+ "business_zip": "75202",
+ "business_telephone": "877-282-6248 ",
+ "business_telephone2": "877-28-AMBIT",
+ "offer_id": "518",
+ "TERM_END": null
+ },
+ {
+ "id": "103",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "103",
+ "distributor_id": "8",
+ "price_kwh": "0.1043",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "100% Renewable! Green E Certified! Power your energy needs while making the world a cleaner place.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Ambit Certified Green Keystone Variable: \n\nThis plan is eligible for free energy and travel rewards.\n\nCall (877) 28 AMBIT - (877) 282-6248 or visit www.ambitenergy.com\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-08-11 15:44:54",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.ambitenergy.com",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "172",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ambit Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ambitenergy.com",
+ "sb_url": "http://www.ambitenergy.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1801 N Lamar Street",
+ "residential_address2": "Suite 200",
+ "residential_address3": "",
+ "residential_city": "Dallas",
+ "residential_state": "TX",
+ "residential_zip": "75202",
+ "residential_telephone": "877-282-6248 ",
+ "residential_telephone2": "877-28-AMBIT",
+ "sb_address": "1801 N Lamar Street",
+ "sb_address2": "Suite 200",
+ "sb_address3": "",
+ "sb_city": "Dallas",
+ "sb_state": "TX",
+ "sb_zip": "75202",
+ "sb_telephone": "877-282-6248",
+ "sb_telephone2": "877-28-AMBIT",
+ "business_address": "1801 N Lamar Street",
+ "business_address2": "Suite 200",
+ "business_address3": "",
+ "business_city": "Dallas",
+ "business_state": "TX",
+ "business_zip": "75202",
+ "business_telephone": "877-282-6248 ",
+ "business_telephone2": "877-28-AMBIT",
+ "offer_id": "519",
+ "TERM_END": null
+ },
+ {
+ "id": "167",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "167",
+ "distributor_id": "8",
+ "price_kwh": "0.0759",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "1",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "Our famous 25% rebate check is available to all of our customers. \nPlus: \n\nTravel Savings\nDeal Dollars\nMovie downloads\nReforestation projects\n1yr magazine subscription\n\nPick yours!\nWe have sent out over $900,000 in rebates. Are you getting one?\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-04 10:36:24",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.08",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://www.americanpowerandgas.com/",
+ "url_this_offer": "https://www.americanpowerandgas.com/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "307",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "American Power & Gas of Pennsylvania LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.americanpowerandgas.com",
+ "sb_url": "http://www.americanpowerandgas.com",
+ "business_url": "http://www.americanpowerandgas.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "10601 Belcher Road S",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Seminole",
+ "residential_state": "FL",
+ "residential_zip": "33777",
+ "residential_telephone": "888-823-9778",
+ "residential_telephone2": "",
+ "sb_address": "10601 Belcher Road S",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Seminole",
+ "sb_state": "FL",
+ "sb_zip": "33777",
+ "sb_telephone": "888-823-9778",
+ "sb_telephone2": "0",
+ "business_address": "10601 Belcher Road S",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Seminole",
+ "business_state": "FL",
+ "business_zip": "33777",
+ "business_telephone": "888-823-9778",
+ "business_telephone2": "",
+ "offer_id": "639",
+ "TERM_END": null
+ },
+ {
+ "id": "167",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "167",
+ "distributor_id": "8",
+ "price_kwh": "0.1059",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "1",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "98",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "Our famous 25% rebate check is available to all of our customers. \nPlus: \n\nTravel Savings\nDeal Dollars\nMovie downloads\nReforestation projects\n1yr magazine subscription\n\nPick yours!\nWe have sent out over $900,000 in rebates. Are you getting one?\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-04 10:36:10",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.11",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://www.americanpowerandgas.com/",
+ "url_this_offer": "https://www.americanpowerandgas.com/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "307",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "American Power & Gas of Pennsylvania LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.americanpowerandgas.com",
+ "sb_url": "http://www.americanpowerandgas.com",
+ "business_url": "http://www.americanpowerandgas.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "10601 Belcher Road S",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Seminole",
+ "residential_state": "FL",
+ "residential_zip": "33777",
+ "residential_telephone": "888-823-9778",
+ "residential_telephone2": "",
+ "sb_address": "10601 Belcher Road S",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Seminole",
+ "sb_state": "FL",
+ "sb_zip": "33777",
+ "sb_telephone": "888-823-9778",
+ "sb_telephone2": "0",
+ "business_address": "10601 Belcher Road S",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Seminole",
+ "business_state": "FL",
+ "business_zip": "33777",
+ "business_telephone": "888-823-9778",
+ "business_telephone2": "",
+ "offer_id": "640",
+ "TERM_END": null
+ },
+ {
+ "id": "174",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "174",
+ "distributor_id": "8",
+ "price_kwh": "0.0855",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Save 5% on monthly energy supply costs guaranteed for 12 months compared to your Utility Price Index. FREE Comcast perks including a $20 Prepaid Visa card, 1 premium channel (HBO, Showtime or Cinemax) for 3 months, and two Fandango tickets.",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-04 11:54:23",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://comcastenergyrewards.com/S10000",
+ "url_this_offer": "https://comcastenergyrewards.com/S10000",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "316",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Energy Rewards",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://comcastenergyrewards.com/S10000",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "6469 102nd Ave North",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Pinellas Park",
+ "residential_state": "FL",
+ "residential_zip": "33782",
+ "residential_telephone": "844-684-5506",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "1366",
+ "TERM_END": null
+ },
+ {
+ "id": "156",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "156",
+ "distributor_id": "8",
+ "price_kwh": "0.113",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "99",
+ "strRenewableAddons":
+ "Ethical Electric's wind power is sourced 100% inside Pennsylvania.",
+ "boolPAWind": "1",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments": "12 month agreement - 3 months fixed, 9 months variable",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-05 13:11:30",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.11",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://ethicalelectric.com/plans/disclosure/penn_power3moJan16",
+ "url_this_offer": "https://ethicalelectric.com/Enroll/Location",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "291",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ethical Electric",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ethicalelectric.com",
+ "sb_url": "http://www.ethicalelectric.com",
+ "business_url": "http://www.ethicalelectric.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1055 Thomas Jefferson Street NW",
+ "residential_address2": "Suite 650",
+ "residential_address3": "",
+ "residential_city": "Washington",
+ "residential_state": "DC",
+ "residential_zip": "20007",
+ "residential_telephone": "1-800-460-4900",
+ "residential_telephone2": "",
+ "sb_address": "1055 Thomas Jefferson Street NW",
+ "sb_address2": "Suite 650",
+ "sb_address3": "",
+ "sb_city": "Washington",
+ "sb_state": "DC",
+ "sb_zip": "20007",
+ "sb_telephone": "1-800-460-4900",
+ "sb_telephone2": "0",
+ "business_address": "1055 Thomas Jefferson Street NW",
+ "business_address2": "Suite 650",
+ "business_address3": "",
+ "business_city": "Washington",
+ "business_state": "DC",
+ "business_zip": "20007",
+ "business_telephone": "1-800-460-4900",
+ "business_telephone2": "",
+ "offer_id": "770",
+ "TERM_END": null
+ },
+ {
+ "id": "138",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "138",
+ "distributor_id": "8",
+ "price_kwh": "0.077",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "97",
+ "strRenewableAddons":
+ "This product is made from 100% national wind energy. By choosing the Pollution Free\u2122 Choice 3 product over typical system power, a PA household with monthly usage of 750 kWh can prevent more than 13,600 pounds of (CO2) emissions/yr.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "Pollution Free\u2122 Choice 3 is only available to new customers through this site. Click Sign Up For This Offer for full details. Other offers available at GreenMountainEnergy.com/?campaignid=7152. \nSign up today!\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-03 11:07:30",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.08",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&sid=A3P_PAPUC_AllOffers/",
+ "url_this_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&product-slug=penn-power-pollution-free-choice-3&sid=A3P_PAPUC_3MonthVar",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "265",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Green Mountain Energy Company",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.greenmountainenergy.com/?campaignid=7152",
+ "sb_url": null,
+ "business_url":
+ "http://www.greenmountain.com/commercial-home/?campaignid=7152",
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "300 W. 6th Street",
+ "residential_address2": "Suite 900",
+ "residential_address3": "",
+ "residential_city": "Austin",
+ "residential_state": "TX",
+ "residential_zip": "78701",
+ "residential_telephone": "855-531-5066",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "300 W. 6th Street",
+ "business_address2": "Suite 900",
+ "business_address3": "",
+ "business_city": "Austin",
+ "business_state": "TX",
+ "business_zip": "78701",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1248",
+ "TERM_END": null
+ },
+ {
+ "id": "84",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "84",
+ "distributor_id": "8",
+ "price_kwh": "0.09458",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "0.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "IDT Energy\u00ae also offers Renewable Electric supply options that are 100% matched with renewable energy certificates and generated from sources like running water, wind, solar, and biomass. For more information, visit www.idtenergy.com",
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "IDT Energy offers special enrollment incentives and annual rebate programs that put real dollars back in the hands of our customers. Our mission is simple - to reduce your annual energy expenses. Call or visit www.idtenergy.com/2free",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 12:43:58",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.idtenergy.com",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "112",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IDT Energy, Inc.",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://idtenergy.com/",
+ "sb_url": "http://idtenergy.com/",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "520 Broad Street 17th Floor",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Newark",
+ "residential_state": "NJ",
+ "residential_zip": "07102",
+ "residential_telephone": "877-887-6866",
+ "residential_telephone2": "",
+ "sb_address": "520 Broad Street",
+ "sb_address2": "17th Floor",
+ "sb_address3": "",
+ "sb_city": "Newark",
+ "sb_state": "NJ",
+ "sb_zip": "07102",
+ "sb_telephone": "877-887-6866",
+ "sb_telephone2": "",
+ "business_address": "520 Broad Street 17th Floor",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Newark",
+ "business_state": "NJ",
+ "business_zip": "07102",
+ "business_telephone": "877-887-6866",
+ "business_telephone2": "",
+ "offer_id": "340",
+ "TERM_END": null
+ },
+ {
+ "id": "100",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "100",
+ "distributor_id": "8",
+ "price_kwh": "0.1199",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 15:42:41",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "292",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Public Power, LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ppandu.com/en/index.php",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "39 Old Ridgebury Road",
+ "residential_address2": "Suite 14",
+ "residential_address3": "",
+ "residential_city": "Danbury",
+ "residential_state": "CT",
+ "residential_zip": "06810",
+ "residential_telephone": "888-354-4415",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "39 Old Ridgebury Road",
+ "business_address2": "Suite 14",
+ "business_address3": "",
+ "business_city": "Danbury",
+ "business_state": "CT",
+ "business_zip": "06810",
+ "business_telephone": "888-354-4415",
+ "business_telephone2": "",
+ "offer_id": "1518",
+ "TERM_END": null
+ },
+ {
+ "id": "124",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "124",
+ "distributor_id": "8",
+ "price_kwh": "0.0769",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "0",
+ "intRenewablePercent": null,
+ "intRenewableLocation": null,
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "This variable rate is exclusive for Penn Power Customer only.",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-25 11:26:45",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "1",
+ "MonthlySvcFeeAmt": "4.93",
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.sperianenergy.com/default.aspx",
+ "url_this_offer": "http://www.sperianenergy.com/default.aspx",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "338",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Sperian Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.sperianenergy.com",
+ "sb_url": "http://www.sperianenergy.com",
+ "business_url": "http://www.sperianenergy.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "2605 Camino Del Rio South",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "San Diego",
+ "residential_state": "CA",
+ "residential_zip": "92108",
+ "residential_telephone": "888-682-8082",
+ "residential_telephone2": "",
+ "sb_address": "2605 Camino Del Rio South",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "San Diego",
+ "sb_state": "CA",
+ "sb_zip": "92108",
+ "sb_telephone": "888-682-8082",
+ "sb_telephone2": "0",
+ "business_address": "2605 Camino Del Rio South",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "San Diego",
+ "business_state": "CA",
+ "business_zip": "92108",
+ "business_telephone": "888-682-8082",
+ "business_telephone2": "",
+ "offer_id": "1572",
+ "TERM_END": null
+ }
+ ],
+ "unlimited": [],
+ "renewable": [
+ {
+ "id": "138",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "138",
+ "distributor_id": "8",
+ "price_kwh": "0.077",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "97",
+ "strRenewableAddons":
+ "This product is made from 100% national wind energy. By choosing the Pollution Free\u2122 Choice 3 product over typical system power, a PA household with monthly usage of 750 kWh can prevent more than 13,600 pounds of (CO2) emissions/yr.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "Pollution Free\u2122 Choice 3 is only available to new customers through this site. Click Sign Up For This Offer for full details. Other offers available at GreenMountainEnergy.com/?campaignid=7152. \nSign up today!\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-03 11:07:30",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.08",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&sid=A3P_PAPUC_AllOffers/",
+ "url_this_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&product-slug=penn-power-pollution-free-choice-3&sid=A3P_PAPUC_3MonthVar",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "265",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Green Mountain Energy Company",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.greenmountainenergy.com/?campaignid=7152",
+ "sb_url": null,
+ "business_url":
+ "http://www.greenmountain.com/commercial-home/?campaignid=7152",
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "300 W. 6th Street",
+ "residential_address2": "Suite 900",
+ "residential_address3": "",
+ "residential_city": "Austin",
+ "residential_state": "TX",
+ "residential_zip": "78701",
+ "residential_telephone": "855-531-5066",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "300 W. 6th Street",
+ "business_address2": "Suite 900",
+ "business_address3": "",
+ "business_city": "Austin",
+ "business_state": "TX",
+ "business_zip": "78701",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1248",
+ "TERM_END": null
+ },
+ {
+ "id": "138",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "138",
+ "distributor_id": "8",
+ "price_kwh": "0.079",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "97",
+ "strRenewableAddons":
+ "This product is made from 100% national wind energy. By choosing the Pollution Free\u2122 Choice 7 product over typical system power, a PA household with monthly usage of 750 kWh can prevent more than 13,600 pounds of (CO2) emissions/year.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Pollution Free\u2122 Choice 7 is only available to new customers through this site. Click Sign Up For This Offer for full details. Other offers available at GreenMountainEnergy.com/?campaignid=7152. \nSign up today!\n",
+ "term_length": "7",
+ "term_end_date": null,
+ "cost_cancellation_fee": "100",
+ "datUpdate": "2016-02-03 11:06:40",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0790",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&sid=A3P_PAPUC_AllOffers/",
+ "url_this_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&product-slug=penn-power-pollution-free-choice-7&sid=A3P_PAPUC_PFChoice7/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "265",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Green Mountain Energy Company",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.greenmountainenergy.com/?campaignid=7152",
+ "sb_url": null,
+ "business_url":
+ "http://www.greenmountain.com/commercial-home/?campaignid=7152",
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "300 W. 6th Street",
+ "residential_address2": "Suite 900",
+ "residential_address3": "",
+ "residential_city": "Austin",
+ "residential_state": "TX",
+ "residential_zip": "78701",
+ "residential_telephone": "855-531-5066",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "300 W. 6th Street",
+ "business_address2": "Suite 900",
+ "business_address3": "",
+ "business_city": "Austin",
+ "business_state": "TX",
+ "business_zip": "78701",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1249",
+ "TERM_END": "2016-09-05"
+ },
+ {
+ "id": "138",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "138",
+ "distributor_id": "8",
+ "price_kwh": "0.081",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "97",
+ "strRenewableAddons":
+ "This product is made from 100% national wind energy. By choosing the Pollution Free\u2122 Choice 9 product over typical system power, a PA household with monthly usage of 750 kWh can prevent more than 13,600 pounds of (CO2) emissions a year.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Pollution Free\u2122 Choice 9 is only available to new customers through this site. Click Sign Up For This Offer for full details. Other offers available at GreenMountainEnergy.com/?campaignid=7152. \nSign up today!\n",
+ "term_length": "9",
+ "term_end_date": null,
+ "cost_cancellation_fee": "100",
+ "datUpdate": "2016-02-03 11:06:31",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0810",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&sid=A3P_PAPUC_AllOffers/",
+ "url_this_offer":
+ "https://www.greenmountainenergy.com/wp-gmec-landing/gmec-lnd-tx/pa-puc/?campaignid=7152&product-slug=penn-power-pollution-free-choice-9&sid=A3P_PAPUC_PFChoice9/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "265",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Green Mountain Energy Company",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.greenmountainenergy.com/?campaignid=7152",
+ "sb_url": null,
+ "business_url":
+ "http://www.greenmountain.com/commercial-home/?campaignid=7152",
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "300 W. 6th Street",
+ "residential_address2": "Suite 900",
+ "residential_address3": "",
+ "residential_city": "Austin",
+ "residential_state": "TX",
+ "residential_zip": "78701",
+ "residential_telephone": "855-531-5066",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "300 W. 6th Street",
+ "business_address2": "Suite 900",
+ "business_address3": "",
+ "business_city": "Austin",
+ "business_state": "TX",
+ "business_zip": "78701",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1250",
+ "TERM_END": "2016-11-05"
+ },
+ {
+ "id": "186",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "186",
+ "distributor_id": "8",
+ "price_kwh": "0.1249",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "Residents Energy\u2019s renewable electricity supply program is 100% matched with renewable energy certificates and generated from sources like running water, solar, wind and biomass.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Concerned about the environment? Looking for price certainty? ResiSure Renewable locks your per kWh supply rate for 12-months. No ETFs. Supply is 100% matched with renewable energy certificates and generated from sources like running water and wind.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 13:40:32",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.1249",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "334",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Residents Energy LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://residentsenergy.com/",
+ "sb_url": "http://residentsenergy.com/",
+ "business_url": "http://residentsenergy.com/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "20 West Third Street",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Jamestown",
+ "residential_state": "NY",
+ "residential_zip": "14701",
+ "residential_telephone": "1-888-828-RESI(7374)",
+ "residential_telephone2": "",
+ "sb_address": "20 West Third Street",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Jamestown",
+ "sb_state": "NY",
+ "sb_zip": "14701",
+ "sb_telephone": "1-888-828-RESI(7374)",
+ "sb_telephone2": "0",
+ "business_address": "20 West Third Street",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Jamestown",
+ "business_state": "NY",
+ "business_zip": "14701",
+ "business_telephone": "1-888-828-RESI(7374)",
+ "business_telephone2": "",
+ "offer_id": "1281",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "84",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "84",
+ "distributor_id": "8",
+ "price_kwh": "0.1159",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "SmartBudget Renewable is a 12-month locked supply rate that is 100% matched with renewable energy certificates and generated from sources like running water, wind, solar and biomass. For more information, visit us online at www.IDTEnergy.com",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Take control of your energy bill with a 12-month locked supply rate. NO termination fees. NO rate spikes. NO hidden fees or deposits. NO surprises. Enjoy the security of locked supply rate protection with the flexibility of a variable program.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 12:45:34",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.1159",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://idtenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "112",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IDT Energy, Inc.",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://idtenergy.com/",
+ "sb_url": "http://idtenergy.com/",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "520 Broad Street 17th Floor",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Newark",
+ "residential_state": "NJ",
+ "residential_zip": "07102",
+ "residential_telephone": "877-887-6866",
+ "residential_telephone2": "",
+ "sb_address": "520 Broad Street",
+ "sb_address2": "17th Floor",
+ "sb_address3": "",
+ "sb_city": "Newark",
+ "sb_state": "NJ",
+ "sb_zip": "07102",
+ "sb_telephone": "877-887-6866",
+ "sb_telephone2": "",
+ "business_address": "520 Broad Street 17th Floor",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Newark",
+ "business_state": "NJ",
+ "business_zip": "07102",
+ "business_telephone": "877-887-6866",
+ "business_telephone2": "",
+ "offer_id": "1385",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "84",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "84",
+ "distributor_id": "8",
+ "price_kwh": "0.09458",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "0.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "IDT Energy\u00ae also offers Renewable Electric supply options that are 100% matched with renewable energy certificates and generated from sources like running water, wind, solar, and biomass. For more information, visit www.idtenergy.com",
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "IDT Energy offers special enrollment incentives and annual rebate programs that put real dollars back in the hands of our customers. Our mission is simple - to reduce your annual energy expenses. Call or visit www.idtenergy.com/2free",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-02-01 12:43:58",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.idtenergy.com",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "112",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IDT Energy, Inc.",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://idtenergy.com/",
+ "sb_url": "http://idtenergy.com/",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "520 Broad Street 17th Floor",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Newark",
+ "residential_state": "NJ",
+ "residential_zip": "07102",
+ "residential_telephone": "877-887-6866",
+ "residential_telephone2": "",
+ "sb_address": "520 Broad Street",
+ "sb_address2": "17th Floor",
+ "sb_address3": "",
+ "sb_city": "Newark",
+ "sb_state": "NJ",
+ "sb_zip": "07102",
+ "sb_telephone": "877-887-6866",
+ "sb_telephone2": "",
+ "business_address": "520 Broad Street 17th Floor",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Newark",
+ "business_state": "NJ",
+ "business_zip": "07102",
+ "business_telephone": "877-887-6866",
+ "business_telephone2": "",
+ "offer_id": "340",
+ "TERM_END": null
+ },
+ {
+ "id": "188",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "188",
+ "distributor_id": "8",
+ "price_kwh": "0.059",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "97",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments": null,
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-21 08:37:47",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.06",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": null,
+ "UnlimitedPriceAmt": null,
+ "account": "335",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Agway Energy Services LLC ",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.agwayenergy.com",
+ "sb_url": "http://www.agwayenergy.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "P.O. Box 4819",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Syracuse",
+ "residential_state": "NY",
+ "residential_zip": "13221",
+ "residential_telephone": "888-982-4929",
+ "residential_telephone2": "",
+ "sb_address": "P.O. Box 4819",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Syracuse",
+ "sb_state": "NY",
+ "sb_zip": "13221",
+ "sb_telephone": "888-982-4929",
+ "sb_telephone2": "",
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "1575",
+ "TERM_END": null
+ },
+ {
+ "id": "156",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "156",
+ "distributor_id": "8",
+ "price_kwh": "0.12",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "99",
+ "strRenewableAddons":
+ "Ethical Electric's wind power is sourced 100% inside Pennsylvania.",
+ "boolPAWind": "1",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-05 13:15:56",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.1200",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://ethicalelectric.com/plans/disclosure/penn_power12moJan16",
+ "url_this_offer": "https://ethicalelectric.com/Enroll/Location",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "291",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ethical Electric",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ethicalelectric.com",
+ "sb_url": "http://www.ethicalelectric.com",
+ "business_url": "http://www.ethicalelectric.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1055 Thomas Jefferson Street NW",
+ "residential_address2": "Suite 650",
+ "residential_address3": "",
+ "residential_city": "Washington",
+ "residential_state": "DC",
+ "residential_zip": "20007",
+ "residential_telephone": "1-800-460-4900",
+ "residential_telephone2": "",
+ "sb_address": "1055 Thomas Jefferson Street NW",
+ "sb_address2": "Suite 650",
+ "sb_address3": "",
+ "sb_city": "Washington",
+ "sb_state": "DC",
+ "sb_zip": "20007",
+ "sb_telephone": "1-800-460-4900",
+ "sb_telephone2": "0",
+ "business_address": "1055 Thomas Jefferson Street NW",
+ "business_address2": "Suite 650",
+ "business_address3": "",
+ "business_city": "Washington",
+ "business_state": "DC",
+ "business_zip": "20007",
+ "business_telephone": "1-800-460-4900",
+ "business_telephone2": "",
+ "offer_id": "834",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "156",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "156",
+ "distributor_id": "8",
+ "price_kwh": "0.113",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "99",
+ "strRenewableAddons":
+ "Ethical Electric's wind power is sourced 100% inside Pennsylvania.",
+ "boolPAWind": "1",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments": "12 month agreement - 3 months fixed, 9 months variable",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-05 13:11:30",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.11",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://ethicalelectric.com/plans/disclosure/penn_power3moJan16",
+ "url_this_offer": "https://ethicalelectric.com/Enroll/Location",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "291",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ethical Electric",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ethicalelectric.com",
+ "sb_url": "http://www.ethicalelectric.com",
+ "business_url": "http://www.ethicalelectric.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1055 Thomas Jefferson Street NW",
+ "residential_address2": "Suite 650",
+ "residential_address3": "",
+ "residential_city": "Washington",
+ "residential_state": "DC",
+ "residential_zip": "20007",
+ "residential_telephone": "1-800-460-4900",
+ "residential_telephone2": "",
+ "sb_address": "1055 Thomas Jefferson Street NW",
+ "sb_address2": "Suite 650",
+ "sb_address3": "",
+ "sb_city": "Washington",
+ "sb_state": "DC",
+ "sb_zip": "20007",
+ "sb_telephone": "1-800-460-4900",
+ "sb_telephone2": "0",
+ "business_address": "1055 Thomas Jefferson Street NW",
+ "business_address2": "Suite 650",
+ "business_address3": "",
+ "business_city": "Washington",
+ "business_state": "DC",
+ "business_zip": "20007",
+ "business_telephone": "1-800-460-4900",
+ "business_telephone2": "",
+ "offer_id": "770",
+ "TERM_END": null
+ },
+ {
+ "id": "167",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "167",
+ "distributor_id": "8",
+ "price_kwh": "0.1059",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "1",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "98",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "Our famous 25% rebate check is available to all of our customers. \nPlus: \n\nTravel Savings\nDeal Dollars\nMovie downloads\nReforestation projects\n1yr magazine subscription\n\nPick yours!\nWe have sent out over $900,000 in rebates. Are you getting one?\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2016-01-04 10:36:10",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": "0.11",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://www.americanpowerandgas.com/",
+ "url_this_offer": "https://www.americanpowerandgas.com/",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": null,
+ "account": "307",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "American Power & Gas of Pennsylvania LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.americanpowerandgas.com",
+ "sb_url": "http://www.americanpowerandgas.com",
+ "business_url": "http://www.americanpowerandgas.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "10601 Belcher Road S",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Seminole",
+ "residential_state": "FL",
+ "residential_zip": "33777",
+ "residential_telephone": "888-823-9778",
+ "residential_telephone2": "",
+ "sb_address": "10601 Belcher Road S",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Seminole",
+ "sb_state": "FL",
+ "sb_zip": "33777",
+ "sb_telephone": "888-823-9778",
+ "sb_telephone2": "0",
+ "business_address": "10601 Belcher Road S",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Seminole",
+ "business_state": "FL",
+ "business_zip": "33777",
+ "business_telephone": "888-823-9778",
+ "business_telephone2": "",
+ "offer_id": "640",
+ "TERM_END": null
+ },
+ {
+ "id": "95",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "95",
+ "distributor_id": "8",
+ "price_kwh": "0.0769",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "25.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": "This offer is for new North American Power customers only.",
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-12-14 11:53:01",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0769",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "http://napower.com/rateboards",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "336",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "North American Power",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.napower.com/rateboards",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "20 Glover Avenue ",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Norwalk",
+ "residential_state": "CT",
+ "residential_zip": "06850",
+ "residential_telephone": "877-572-0736",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": "20 Glover Avenue",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Norwalk",
+ "business_state": "CT",
+ "business_zip": "06850",
+ "business_telephone": "",
+ "business_telephone2": "",
+ "offer_id": "1103",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "185",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "185",
+ "distributor_id": "8",
+ "price_kwh": "0.0839",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": "Wind",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "50",
+ "datUpdate": "2015-12-21 16:27:50",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0839",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "1",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "333",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Star Energy Partners LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.starenergypartners.com",
+ "sb_url": "http://www.starenergypartners.com",
+ "business_url": "http://www.starenergypartners.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "3340 W. Market Street",
+ "residential_address2": "Fl. 1",
+ "residential_address3": "",
+ "residential_city": "Akron",
+ "residential_state": "OH",
+ "residential_zip": "44333",
+ "residential_telephone": "1-855-427-7827",
+ "residential_telephone2": "",
+ "sb_address": "3340 W. Market Street",
+ "sb_address2": "Fl. 1",
+ "sb_address3": "",
+ "sb_city": "Akron",
+ "sb_state": "OH",
+ "sb_zip": "44333",
+ "sb_telephone": "1-855-427-7827",
+ "sb_telephone2": "",
+ "business_address": "3340 W. Market Street",
+ "business_address2": "Fl. 1",
+ "business_address3": "",
+ "business_city": "Akron",
+ "business_state": "OH",
+ "business_zip": "44333",
+ "business_telephone": "1-855-427-7827",
+ "business_telephone2": "",
+ "offer_id": "1430",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "79",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "79",
+ "distributor_id": "8",
+ "price_kwh": "0.0849",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "New enrollments receive $100 in Cash-Back Savings, a 10% discount on energy saving products, and free access to Verde Energy Solutions where customers can monitor & analyze their energy use.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-11-30 11:46:02",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0000",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "https://www.lowcostpower.com/registration.aspx?type=res",
+ "url_this_offer":
+ "https://www.lowcostpower.com/registration.aspx?type=res",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "158",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Verde Energy USA, Inc.",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://lowcostpower.com",
+ "sb_url": "http://lowcostpower.com",
+ "business_url": "http://lowcostpower.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "101 Merritt Seven",
+ "residential_address2": "Second Floor",
+ "residential_address3": "",
+ "residential_city": "Norwalk",
+ "residential_state": "CT",
+ "residential_zip": "06851",
+ "residential_telephone": "1-800-388-3862",
+ "residential_telephone2": "",
+ "sb_address": "101 Merritt Seven",
+ "sb_address2": "Second Floor",
+ "sb_address3": "",
+ "sb_city": "Norwalk",
+ "sb_state": "CT",
+ "sb_zip": "06851",
+ "sb_telephone": "1-800-388-3862",
+ "sb_telephone2": "",
+ "business_address": "101 Merritt Seven",
+ "business_address2": "Second Floor",
+ "business_address3": "",
+ "business_city": "Norwalk",
+ "business_state": "CT",
+ "business_zip": "06851",
+ "business_telephone": "1-800-388-3862",
+ "business_telephone2": "",
+ "offer_id": "1143",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "113",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "113",
+ "distributor_id": "8",
+ "price_kwh": "0.0869",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": null,
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "What you get:\n\nA 90-day customer satisfaction guarantee that gives you the ability to cancel your contract during the 90-day period without an early termination fee.\n",
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": "150",
+ "datUpdate": "2015-12-07 13:01:09",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0000",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer":
+ "https://home2.constellation.com/?s=PA&u=PENNPWR&p=PAPOWERSWITCH&c=E",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "201",
+ "residential": "1",
+ "business": "0",
+ "slug": "penn-power",
+ "title": "Constellation Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://home2.constellation.com/?p=PAPowerSwitch",
+ "sb_url": null,
+ "business_url": null,
+ "smallbusiness": "0",
+ "addon": "0",
+ "residential_address": "1221 Lamar Street Suite 750",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Houston",
+ "residential_state": "TX",
+ "residential_zip": "77010",
+ "residential_telephone": "1-866-577-4700",
+ "residential_telephone2": "",
+ "sb_address": null,
+ "sb_address2": null,
+ "sb_address3": null,
+ "sb_city": null,
+ "sb_state": null,
+ "sb_zip": null,
+ "sb_telephone": null,
+ "sb_telephone2": null,
+ "business_address": null,
+ "business_address2": null,
+ "business_address3": null,
+ "business_city": null,
+ "business_state": null,
+ "business_zip": null,
+ "business_telephone": null,
+ "business_telephone2": null,
+ "offer_id": "618",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "127",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "127",
+ "distributor_id": "8",
+ "price_kwh": "0.0869",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "How you benefit:\n\nEnjoy today's locked in rates that can save both money and the environment. \n\n100% GREEN",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "12",
+ "term_end_date": null,
+ "cost_cancellation_fee": "100",
+ "datUpdate": "2015-11-30 09:20:07",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0869",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.igsenergy.com/",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "223",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "IGS Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.igsenergy.com",
+ "sb_url": "http://www.igsenergy.com/business/small-business/",
+ "business_url": "http://www.igsenergy.com/business/large-business/",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "6100 Emerald Parkway",
+ "residential_address2": "",
+ "residential_address3": "",
+ "residential_city": "Dublin",
+ "residential_state": "OH",
+ "residential_zip": "43106",
+ "residential_telephone": "1-800-280-4474",
+ "residential_telephone2": "",
+ "sb_address": "6100 Emerald Parkway",
+ "sb_address2": "",
+ "sb_address3": "",
+ "sb_city": "Dublin",
+ "sb_state": "OH",
+ "sb_zip": "43106",
+ "sb_telephone": "1-800-280-4474",
+ "sb_telephone2": "0",
+ "business_address": "6100 Emerald Parkway",
+ "business_address2": "",
+ "business_address3": "",
+ "business_city": "Dublin",
+ "business_state": "OH",
+ "business_zip": "43106",
+ "business_telephone": "1-800-280-4474",
+ "business_telephone2": "",
+ "offer_id": "738",
+ "TERM_END": "2017-02-05"
+ },
+ {
+ "id": "185",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "185",
+ "distributor_id": "8",
+ "price_kwh": "0.0899",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons": "Wind",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments": null,
+ "term_length": "36",
+ "term_end_date": null,
+ "cost_cancellation_fee": "125",
+ "datUpdate": "2015-09-18 15:26:34",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0899",
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "1",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "333",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Star Energy Partners LLC",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.starenergypartners.com",
+ "sb_url": "http://www.starenergypartners.com",
+ "business_url": "http://www.starenergypartners.com",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "3340 W. Market Street",
+ "residential_address2": "Fl. 1",
+ "residential_address3": "",
+ "residential_city": "Akron",
+ "residential_state": "OH",
+ "residential_zip": "44333",
+ "residential_telephone": "1-855-427-7827",
+ "residential_telephone2": "",
+ "sb_address": "3340 W. Market Street",
+ "sb_address2": "Fl. 1",
+ "sb_address3": "",
+ "sb_city": "Akron",
+ "sb_state": "OH",
+ "sb_zip": "44333",
+ "sb_telephone": "1-855-427-7827",
+ "sb_telephone2": "",
+ "business_address": "3340 W. Market Street",
+ "business_address2": "Fl. 1",
+ "business_address3": "",
+ "business_city": "Akron",
+ "business_state": "OH",
+ "business_zip": "44333",
+ "business_telephone": "1-855-427-7827",
+ "business_telephone2": "",
+ "offer_id": "1431",
+ "TERM_END": "2019-02-05"
+ },
+ {
+ "id": "168",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "168",
+ "distributor_id": "8",
+ "price_kwh": "0.0959",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "0.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "For 1.98\u00a2/kWh more per month, make Your Electricity 100% Green. In addition, SFE will plant 1 tree on your behalf. ",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "1st month at $.0909/kWh, you may receive up to $75 cash-back.*See terms and conditions for details.\n ",
+ "term_length": "36",
+ "term_end_date": null,
+ "cost_cancellation_fee": "75",
+ "datUpdate": "2015-12-07 13:18:26",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0959",
+ "IntroductoryPriceAmt": "0.09",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "309",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "SFE Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.sfeenergy.com/pennsylvania",
+ "sb_url": "http://www.sfeenergy.com/pennsylvania",
+ "business_url": "http://www.sfeenergy.com/pennsylvania",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "651 Holiday Drive",
+ "residential_address2": "Foster Plaza 5 Suite 300 ",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15220",
+ "residential_telephone": "1-877-316-6344",
+ "residential_telephone2": "",
+ "sb_address": "651 Holiday Drive",
+ "sb_address2": "Foster Plaza 5 Suite 300",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15220",
+ "sb_telephone": "1-877-316-6344",
+ "sb_telephone2": "0",
+ "business_address": "651 Holiday Drive",
+ "business_address2": "Foster Plaza 5 Suite 300",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15220",
+ "business_telephone": "1-877-316-6344",
+ "business_telephone2": "",
+ "offer_id": "725",
+ "TERM_END": "2019-02-05"
+ },
+ {
+ "id": "168",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "168",
+ "distributor_id": "8",
+ "price_kwh": "0.0959",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "1",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "0.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "For 1.98\u00a2/kWh more per month, make Your Electricity 100% Green. In addition, SFE will plant 1 tree on your behalf.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "1",
+ "price_plan_fixed_old": null,
+ "introductory_price": "1",
+ "comments":
+ "1st month at $.0909/kWh, you may receive up to $50 cash-back.*See terms and conditions for details.\n",
+ "term_length": "24",
+ "term_end_date": null,
+ "cost_cancellation_fee": "50",
+ "datUpdate": "2015-12-07 13:18:02",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": "0.0959",
+ "IntroductoryPriceAmt": "0.09",
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": null,
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "309",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "SFE Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.sfeenergy.com/pennsylvania",
+ "sb_url": "http://www.sfeenergy.com/pennsylvania",
+ "business_url": "http://www.sfeenergy.com/pennsylvania",
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "651 Holiday Drive",
+ "residential_address2": "Foster Plaza 5 Suite 300 ",
+ "residential_address3": "",
+ "residential_city": "Pittsburgh",
+ "residential_state": "PA",
+ "residential_zip": "15220",
+ "residential_telephone": "1-877-316-6344",
+ "residential_telephone2": "",
+ "sb_address": "651 Holiday Drive",
+ "sb_address2": "Foster Plaza 5 Suite 300",
+ "sb_address3": "",
+ "sb_city": "Pittsburgh",
+ "sb_state": "PA",
+ "sb_zip": "15220",
+ "sb_telephone": "1-877-316-6344",
+ "sb_telephone2": "0",
+ "business_address": "651 Holiday Drive",
+ "business_address2": "Foster Plaza 5 Suite 300",
+ "business_address3": "",
+ "business_city": "Pittsburgh",
+ "business_state": "PA",
+ "business_zip": "15220",
+ "business_telephone": "1-877-316-6344",
+ "business_telephone2": "",
+ "offer_id": "724",
+ "TERM_END": "2018-02-05"
+ },
+ {
+ "id": "103",
+ "status": "1",
+ "created_on": null,
+ "price_to_compare": "0",
+ "rate_id": "1",
+ "supplier_id": "103",
+ "distributor_id": "8",
+ "price_kwh": "0.1043",
+ "price_current": null,
+ "price_future": null,
+ "price_future_start": null,
+ "price_future_end": null,
+ "pending_price_kwh": null,
+ "pending_created_on": null,
+ "price_future_estimate": "0",
+ "cancellation_fee": "0",
+ "bulk_discounts": "0",
+ "renewable_addons": "1",
+ "intRenewablePercent": "100.000",
+ "intRenewableLocation": "0",
+ "strRenewableAddons":
+ "100% Renewable! Green E Certified! Power your energy needs while making the world a cleaner place.",
+ "boolPAWind": "0",
+ "price_plan_fixed": "0",
+ "price_plan_fixed_old": null,
+ "introductory_price": "0",
+ "comments":
+ "Ambit Certified Green Keystone Variable: \n\nThis plan is eligible for free energy and travel rewards.\n\nCall (877) 28 AMBIT - (877) 282-6248 or visit www.ambitenergy.com\n",
+ "term_length": null,
+ "term_end_date": null,
+ "cost_cancellation_fee": null,
+ "datUpdate": "2015-08-11 15:44:54",
+ "depositrequired": "0",
+ "isMonthlySvcFee": "0",
+ "MonthlySvcFeeAmt": null,
+ "FixedPriceAmt": null,
+ "IntroductoryPriceAmt": null,
+ "isPassThroughPrice": "0",
+ "isIndexedPrice": "0",
+ "IndexedPriceAmt": null,
+ "isTimeOfUsePrice": "0",
+ "TimeOfUseDetails": null,
+ "isNetMetering": "0",
+ "isPrepaidEnergySvcs": "0",
+ "isEnergyEfficiencyPlan": "0",
+ "EnergyEfficiencyPlan": null,
+ "url_offer": "http://www.ambitenergy.com",
+ "url_this_offer": "",
+ "price_past_footnote": null,
+ "price_plan_unlimited": "0",
+ "UnlimitedPriceAmt": "0.0000",
+ "account": "172",
+ "residential": "1",
+ "business": "1",
+ "slug": "penn-power",
+ "title": "Ambit Energy",
+ "dba": null,
+ "business_suppliers":
+ "184,103,167,125,114,183,148,50,86,157,44,39,60,108,164,42,177,143,66,61,176,117,84,127,152,171,63,154,56,111,186,168,180,185,55,15,188,174,",
+ "business_brokers":
+ "37,83,52,1,53,63,68,93,90,76,40,24,74,92,2,3,57,55,80,17,11,39,45,58,65,4,26,78,86,32,34,51,18,48,30,72,54,81,88,42,21,5,61,19,41,43,44,31,12,56,64,6,25,7,89,14,69,82,59,50,8,79,60,22,4694,94,95,",
+ "distributor": "0",
+ "edi": "1",
+ "residential_url": "http://www.ambitenergy.com",
+ "sb_url": "http://www.ambitenergy.com",
+ "business_url": null,
+ "smallbusiness": "1",
+ "addon": "0",
+ "residential_address": "1801 N Lamar Street",
+ "residential_address2": "Suite 200",
+ "residential_address3": "",
+ "residential_city": "Dallas",
+ "residential_state": "TX",
+ "residential_zip": "75202",
+ "residential_telephone": "877-282-6248 ",
+ "residential_telephone2": "877-28-AMBIT",
+ "sb_address": "1801 N Lamar Street",
+ "sb_address2": "Suite 200",
+ "sb_address3": "",
+ "sb_city": "Dallas",
+ "sb_state": "TX",
+ "sb_zip": "75202",
+ "sb_telephone": "877-282-6248",
+ "sb_telephone2": "877-28-AMBIT",
+ "business_address": "1801 N Lamar Street",
+ "business_address2": "Suite 200",
+ "business_address3": "",
+ "business_city": "Dallas",
+ "business_state": "TX",
+ "business_zip": "75202",
+ "business_telephone": "877-282-6248 ",
+ "business_telephone2": "877-28-AMBIT",
+ "offer_id": "519",
+ "TERM_END": null
+ }
+ ],
+ "message":
+ "\u003Cdiv class=\"grid-wrap top\"\u003E\u003Cdiv class=\"grid--half first\"\u003E\u003Cdiv class=\"result-number\"\u003E\n\t\t\t\t\t\t\t\u003Cstrong\u003E48\u003C/strong\u003E\u003Cspan\u003EOffers\u003C/span\u003E\u003C/div\u003E \u003C!-- /.result-number --\u003E\u003Cdiv class=\"result-types\"\u003E\n\t\t\t\t\t\t\t\u003Cspan class=\"type-fixed\"\u003E\n\t\t\t\t\t\t\t\t\u003Cstrong\u003E38\u003C/strong\u003E Fixed\n\t\t\t\t\t\t\t\u003Cdiv class=\"termHelp\" title=\"A fixed price is an all-inclusive per kilowatt hour (kWh) price that will remain the same for at least three billing cycles or the term of the contract, whichever is longer. Fixed prices remain the same, usually for a set period of time. This gives you certainty that your price will not change during the term of the agreement.\"\u003E \u003C/div\u003E\u003C/span\u003E\u003Cbr /\u003E\n\t\t\t\t\t\t\t\u003Cspan class=\"type-variable\"\u003E\n\t\t\t\t\t\t\t\t\u003Cstrong\u003E10\u003C/strong\u003E Variable\n\t\t\t\t\t\t\t\u003Cdiv class=\"termHelp\" title=\"A variable price is an all-inclusive per kWh price that can change, by the hour, day, month, etc., according to the terms and conditions in the supplier’s disclosure statement. If you select a variable rate, the rate may change with market and extreme weather conditions.\"\u003E \u003C/div\u003E\u003C/span\u003E\u003Cbr /\u003E\n\t\t\t\t\t\t\t\u003Cspan class=\"type-unlimited\"\u003E\n\t\t\t\t\t\t\t\t\u003Cstrong\u003E0\u003C/strong\u003E Unlimited\n\t\t\t\t\t\t\t\u003Cdiv class=\"termHelp\" title=\"An unlimited usage flat bill plan is a locked-in monthly price that is not based on kWh usage. This gives you unlimited electric usage at one steady rate that cannot change during the contract\u2019s term.\"\u003E \u003C/div\u003E\u003C/span\u003E\u003Cbr /\u003E\u003Cspan class=\"type-renewable\"\u003E\n\t\t\t\t\t\t\t\t\u003Cstrong\u003E19\u003C/strong\u003E Renewable Energy\u003C/span\u003E\u003C/div\u003E \u003C!-- /.result-types --\u003E\u003C/div\u003E \u003C!-- /.grid-half --\u003E\u003Cdiv class=\"grid--half\"\u003E\u003Ch3\u003EYour distributor: \u003Cstrong\u003EPenn Power\u003C/strong\u003E\n\t\t\t\t\t\u003C/h3\u003E\u003Cdiv class=\"price-month\"\u003E\n\t\t\t\t\t\t\u003Cspan class=\"price-month-price\"\u003E$63\u003C/span\u003E\n\t\t\t\t\t\t\u003Cdiv class=\"help-icon\" title=\"Estimate based on a monthly usage of 700 kWh per month. This rate was last updated on 01/21/2016 3:52 pm\"\u003E \u003C/div\u003E\n\t\t\t\t\t\t\u003Cspan class=\"price-label\"\u003EEstimated on 700 kWh Per Month\u003C/span\u003E\n\t\t\t\t\t\u003C/div\u003E\u003Cdiv class=\"price-kwh\"\u003E\n\t\t\t\t\t\t\u003Cspan class=\"price-kwh-price\"\u003E$0.0900\u003C/span\u003E\u003Cbr /\u003E\n\t\t\t\t\t\t\u003Cspan class=\"price-kwh-label\"\u003Eper kWh\u003C/span\u003E\n\t\t\t\t\t\u003C/div\u003E\u003C/div\u003E \u003C!-- /.grid-half --\u003E\u003C/div\u003E \u003C!-- /.grid-wrap --\u003E\u003Cdiv class=\"grid-wrap\"\u003E\u003Cdiv class=\"grid--half first\"\u003E\u003Ch3\u003ESome offers could save you up to:\u003C/h3\u003E\u003Cdiv class=\"savings-percent\"\u003E\n\t\t\t\t\t\t\t\t8%\n\t\t\t\t\t\t\t\u003C/div\u003E\u003Cdiv class=\"savings\"\u003E\n\t\t\t\t\t\t\t\t\u003Cspan class=\"savings-month\"\u003E\u003Cstrong\u003EThat's $4.96\u003C/strong\u003E/mo \u003C/span\u003E\n\t\t\t\t\t\t\t\t\u003Cspan class=\"savings-year\"\u003Eor \u003Cspan\u003E\u003Cstrong\u003E$59.56\u003C/strong\u003E/year\u003C/span\u003E\n\t\t\t\t\t\t\t\t\u003C/span\u003E\n\t\t\t\t\t\t\t\u003C/div\u003E\u003C/div\u003E \u003C!-- /.grid-half --\u003E\u003Cdiv class=\"grid--half\"\u003E\u003Ch3\u003EFind the right supplier for you:\u003C/h3\u003E\n\t\t\t\t\t\t\t\u003Cspan\u003EEvery PA resident has the right to change.\u003C/span\u003E\n\t\t\t\t\t\t\u003Ca class=\"btn-secondary\" href=\"/shop-for-electricity/shop-for-your-home/by-distributor/penn-power/rs/\"\u003ESee Full Results »\u003C/a\u003E \n\t\t\t\t\t\t\u003C/div\u003E \u003C!-- /.grid-half --\u003E\u003C/div\u003E \u003C!-- /.grid-wrap --\u003E"
+}
diff --git a/Vagrantfile b/Vagrantfile
new file mode 100644
index 00000000..7f17fa0c
--- /dev/null
+++ b/Vagrantfile
@@ -0,0 +1,28 @@
+# -*- mode: ruby -*-
+# vi: set ft=ruby :
+
+Vagrant.configure("2") do |config|
+ config.vm.hostname = 'comparehare-dev'
+ config.vm.box = "ubuntu/xenial64"
+ config.vm.synced_folder "./", "/vagrant",
+ id: "app",
+ owner: "vagrant",
+ group: "vagrant",
+ mount_options: ["dmode=775,fmode=664"]
+
+ config.vm.provider "virtualbox" do |vb|
+ vb.name = "CompareHare Dev"
+ vb.cpus = 1
+ vb.memory = 1024
+ # Disable the generation of the console log file
+ # https://groups.google.com/forum/#!topic/vagrant-up/eZljy-bddoI
+ vb.customize [ "modifyvm", :id, "--uartmode1", "disconnected" ]
+ vb.customize ["setextradata", :id, "VBoxInternal2/SharedFoldersEnableSymlinksCreate/vagrant", "1"]
+ end
+
+ config.vm.provision :shell, path: 'vagrant-config/bootstrap.sh', keep_color: true
+
+ config.vm.network "private_network", type: "dhcp"
+ config.vm.network :forwarded_port, guest: 80, host: 8000, hostIp: '127.0.0.1'
+ config.vm.network :forwarded_port, guest: 3306, host: 3307, hostIp: '127.0.0.1'
+end
diff --git a/babel.config.js b/babel.config.js
index aceed26e..b09ba4b5 100644
--- a/babel.config.js
+++ b/babel.config.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
// Babel configuration
// https://babeljs.io/docs/usage/api/
module.exports = {
diff --git a/jest.config.js b/jest.config.js
index 7cf65648..c652a907 100644
--- a/jest.config.js
+++ b/jest.config.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
// Jest configuration
// https://facebook.github.io/jest/docs/en/configuration.html
module.exports = {
diff --git a/package.json b/package.json
index 77ec4a44..4d6125b4 100644
--- a/package.json
+++ b/package.json
@@ -24,6 +24,7 @@
"history": "^4.7.2",
"isomorphic-style-loader": "^4.0.0",
"jsonwebtoken": "^8.3.0",
+ "mysql2": "^1.6.5",
"node-fetch": "^2.1.2",
"normalize.css": "^8.0.0",
"passport": "^0.4.0",
@@ -36,7 +37,6 @@
"sequelize": "^4.37.10",
"serialize-javascript": "^1.5.0",
"source-map-support": "^0.5.6",
- "sqlite3": "^4.0.0",
"universal-router": "^6.0.0",
"whatwg-fetch": "^2.0.4"
},
@@ -106,6 +106,7 @@
"react-error-overlay": "^4.0.0",
"react-test-renderer": "^16.4.1",
"rimraf": "^2.6.2",
+ "sequelize-auto-migrations": "^1.0.3",
"stylelint": "^9.3.0",
"stylelint-config-standard": "^18.2.0",
"stylelint-order": "^0.8.1",
diff --git a/src/DOMUtils.js b/src/DOMUtils.js
index 11c132f0..2d1f682d 100644
--- a/src/DOMUtils.js
+++ b/src/DOMUtils.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
export function updateTag(tagName, keyName, keyValue, attrName, attrValue) {
const node = document.head.querySelector(
`${tagName}[${keyName}="${keyValue}"]`,
diff --git a/src/client.js b/src/client.js
index e35a71b7..6472de57 100644
--- a/src/client.js
+++ b/src/client.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import 'whatwg-fetch';
import React from 'react';
import ReactDOM from 'react-dom';
diff --git a/src/components/App.js b/src/components/App.js
index f20711f2..f6d51c24 100644
--- a/src/components/App.js
+++ b/src/components/App.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
@@ -20,36 +11,7 @@ const ContextType = {
query: PropTypes.object,
};
-/**
- * The top-level React component setting context (global) variables
- * that can be accessed from all the child components.
- *
- * https://facebook.github.io/react/docs/context.html
- *
- * Usage example:
- *
- * const context = {
- * history: createBrowserHistory(),
- * store: createStore(),
- * };
- *
- * ReactDOM.render(
- *
- *
- *
- *
- * ,
- * container,
- * );
- */
class App extends React.PureComponent {
- static propTypes = {
- context: PropTypes.shape(ContextType).isRequired,
- children: PropTypes.element.isRequired,
- };
-
- static childContextTypes = ContextType;
-
getChildContext() {
return this.props.context;
}
@@ -61,4 +23,11 @@ class App extends React.PureComponent {
}
}
+App.propTypes = {
+ context: PropTypes.shape(ContextType).isRequired,
+ children: PropTypes.element.isRequired,
+};
+
+App.childContextTypes = ContextType;
+
export default App;
diff --git a/src/components/Feedback/Feedback.css b/src/components/Feedback/Feedback.css
index e67a9eb3..f79371ef 100644
--- a/src/components/Feedback/Feedback.css
+++ b/src/components/Feedback/Feedback.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
@import '../variables.css';
.root {
diff --git a/src/components/Feedback/Feedback.js b/src/components/Feedback/Feedback.js
index 6c971249..81830649 100644
--- a/src/components/Feedback/Feedback.js
+++ b/src/components/Feedback/Feedback.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
import s from './Feedback.css';
diff --git a/src/components/Footer/Footer.css b/src/components/Footer/Footer.css
index 3297798d..9aeefa52 100644
--- a/src/components/Footer/Footer.css
+++ b/src/components/Footer/Footer.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
@import '../variables.css';
.root {
diff --git a/src/components/Footer/Footer.js b/src/components/Footer/Footer.js
index 5b6cc5de..667380e6 100644
--- a/src/components/Footer/Footer.js
+++ b/src/components/Footer/Footer.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
import s from './Footer.css';
diff --git a/src/components/Header/Header.css b/src/components/Header/Header.css
index 6d878562..1c60bdf2 100644
--- a/src/components/Header/Header.css
+++ b/src/components/Header/Header.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
@import '../variables.css';
:root {
diff --git a/src/components/Header/Header.js b/src/components/Header/Header.js
index 13a48096..435b77e4 100644
--- a/src/components/Header/Header.js
+++ b/src/components/Header/Header.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
import s from './Header.css';
diff --git a/src/components/Html.js b/src/components/Html.js
index 3c56b12e..33a25395 100644
--- a/src/components/Html.js
+++ b/src/components/Html.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
import serialize from 'serialize-javascript';
diff --git a/src/components/Layout/Layout.css b/src/components/Layout/Layout.css
index 34f51744..4df1838c 100644
--- a/src/components/Layout/Layout.css
+++ b/src/components/Layout/Layout.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
@import '../variables.css';
/*
diff --git a/src/components/Layout/Layout.js b/src/components/Layout/Layout.js
index 6c88b352..df96eef3 100644
--- a/src/components/Layout/Layout.js
+++ b/src/components/Layout/Layout.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
diff --git a/src/components/Layout/Layout.test.js b/src/components/Layout/Layout.test.js
index f2e24937..6570cf4f 100644
--- a/src/components/Layout/Layout.test.js
+++ b/src/components/Layout/Layout.test.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
/* eslint-env jest */
/* eslint-disable padded-blocks, no-unused-expressions */
diff --git a/src/components/Link/Link.js b/src/components/Link/Link.js
index 3bf5c63d..6787f254 100644
--- a/src/components/Link/Link.js
+++ b/src/components/Link/Link.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
import history from '../../history';
diff --git a/src/components/Navigation/Navigation.css b/src/components/Navigation/Navigation.css
index d0521bc0..495f3512 100644
--- a/src/components/Navigation/Navigation.css
+++ b/src/components/Navigation/Navigation.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
.root {
float: right;
margin: 6px 0 0;
diff --git a/src/components/Navigation/Navigation.js b/src/components/Navigation/Navigation.js
index 56a1a782..43f31a72 100644
--- a/src/components/Navigation/Navigation.js
+++ b/src/components/Navigation/Navigation.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import cx from 'classnames';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
diff --git a/src/components/Page/Page.css b/src/components/Page/Page.css
index 9dea58dd..5132a919 100644
--- a/src/components/Page/Page.css
+++ b/src/components/Page/Page.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
@import '../variables.css';
.root {
diff --git a/src/components/Page/Page.js b/src/components/Page/Page.js
index 291cfbff..e2b18f39 100644
--- a/src/components/Page/Page.js
+++ b/src/components/Page/Page.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
diff --git a/src/components/variables.css b/src/components/variables.css
index 7afb3f31..d58c6ae6 100644
--- a/src/components/variables.css
+++ b/src/components/variables.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
:root {
/*
* Typography
diff --git a/src/config.js b/src/config.js
index c1261b54..8d8d48ab 100644
--- a/src/config.js
+++ b/src/config.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
/* eslint-disable max-len */
if (process.env.BROWSER) {
@@ -33,17 +24,21 @@ module.exports = {
},
// Database
- databaseUrl: process.env.DATABASE_URL || 'sqlite:database.sqlite',
+ databaseHost: process.env.DATABASE_HOST || 'localhost',
+ databaseName: process.env.DATABASE_NAME || 'comparehare',
+ databaseUser: process.env.DATABASE_USER || 'root',
+ databasePassword: process.env.DATABASE_PASS || 'passw0rd',
+ databasePort: process.env.DATABASE_PORT || 3307,
// Web analytics
analytics: {
// https://analytics.google.com/
- googleTrackingId: process.env.GOOGLE_TRACKING_ID, // UA-XXXXX-X
+ googleTrackingId: process.env.GOOGLE_TRACKING_ID || 'UA-134340231-1', // This is real -Matt
},
// Authentication
auth: {
- jwt: { secret: process.env.JWT_SECRET || 'React Starter Kit' },
+ jwt: { secret: process.env.JWT_SECRET || 'CompareHare' },
// https://developers.facebook.com/
facebook: {
diff --git a/src/createFetch.js b/src/createFetch.js
index 861ab7a8..18603b82 100644
--- a/src/createFetch.js
+++ b/src/createFetch.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
/* @flow */
import type { graphql as graphqType, GraphQLSchema } from 'graphql';
diff --git a/src/data/models/Alert.js b/src/data/models/Alert.js
new file mode 100644
index 00000000..e1e0752f
--- /dev/null
+++ b/src/data/models/Alert.js
@@ -0,0 +1,39 @@
+import DataType from 'sequelize';
+import Model from '../sequelize';
+
+const Alert = Model.define('Alert', {
+ id: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ primaryKey: true,
+ autoIncrement: true,
+ },
+ alertCriteriaId: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ },
+ priceOfferId: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ distributorState: {
+ type: DataType.STRING(2),
+ allowNull: false,
+ },
+ utilityPriceHistoryId: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ },
+ createdAt: {
+ type: DataType.DATE,
+ allowNull: false,
+ defaultValue: DataType.NOW,
+ },
+ lastUpdatedAt: {
+ type: DataType.DATE,
+ allowNull: false,
+ defaultValue: DataType.NOW,
+ },
+});
+
+export default Alert;
diff --git a/src/data/models/AlertCriteria.js b/src/data/models/AlertCriteria.js
new file mode 100644
index 00000000..bc134208
--- /dev/null
+++ b/src/data/models/AlertCriteria.js
@@ -0,0 +1,62 @@
+import DataType from 'sequelize';
+import Model from '../sequelize';
+
+const AlertCriteria = Model.define('AlertCriteria', {
+ id: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ primaryKey: true,
+ autoIncrement: true,
+ },
+ userId: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ },
+ name: DataType.STRING,
+ distributorRateId: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ },
+ distributorState: {
+ type: DataType.STRING(2),
+ allowNull: false,
+ },
+ priceType: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ },
+ minimumPrice: DataType.DECIMAL,
+ maximumPrice: DataType.DECIMAL,
+ minimumRenewablePercent: DataType.DECIMAL,
+ maximumRenewablePercent: DataType.DECIMAL,
+ minimumMonthLength: DataType.INTEGER,
+ maximumMonthLength: DataType.INTEGER,
+ hasCancellationFee: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ hasMonthlyFee: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ hasNetMetering: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ requiresDeposit: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ hasBulkDiscounts: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ comments: DataType.STRING,
+ createdAt: {
+ type: DataType.DATE,
+ allowNull: false,
+ defaultValue: DataType.NOW,
+ },
+});
+
+export default AlertCriteria;
diff --git a/src/data/models/DistributorRate.js b/src/data/models/DistributorRate.js
new file mode 100644
index 00000000..3dd21942
--- /dev/null
+++ b/src/data/models/DistributorRate.js
@@ -0,0 +1,69 @@
+import DataType from 'sequelize';
+import Model from '../sequelize';
+
+const DistributorRate = Model.define('DistributorRate', {
+ id: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ primaryKey: true,
+ autoIncrement: true,
+ },
+ name: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ rateType: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ pricePerUnit: {
+ type: DataType.DECIMAL,
+ allowNull: false,
+ },
+ priceUnit: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ priceFuture: DataType.DECIMAL,
+ priceFutureStart: DataType.DATE,
+ priceFutureEnd: DataType.DATE,
+ hasCancellationFee: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ cancellationFee: DataType.DECIMAL,
+ hasMonthlyFee: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ monthlyFee: DataType.DECIMAL,
+ hasNetMetering: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ requiresDeposit: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ hasBulkDiscounts: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ offerUrl: DataType.STRING,
+ supplierAddress1: DataType.STRING,
+ supplierAddress2: DataType.STRING,
+ supplierCity: DataType.STRING,
+ supplierState: DataType.STRING,
+ supplierZip: DataType.STRING,
+ supplierPhone1: DataType.STRING,
+ supplierPhone2: DataType.STRING,
+ supplierUrl: DataType.STRING,
+ comments: DataType.STRING,
+ createdAt: {
+ type: DataType.DATE,
+ allowNull: false,
+ defaultValue: DataType.NOW,
+ },
+});
+
+export default DistributorRate;
diff --git a/src/data/models/DistributorRateUpdate.js b/src/data/models/DistributorRateUpdate.js
new file mode 100644
index 00000000..40e6629b
--- /dev/null
+++ b/src/data/models/DistributorRateUpdate.js
@@ -0,0 +1,34 @@
+import DataType from 'sequelize';
+import Model from '../sequelize';
+
+const DistributorRateUpdate = Model.define('DistributorRateUpdate', {
+ id: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ primaryKey: true,
+ autoIncrement: true,
+ },
+ distributorRateId: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ },
+ distributorRateType: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ distributorState: {
+ type: DataType.STRING(2),
+ allowNull: false,
+ },
+ priceDataHash: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ lastUpdated: {
+ type: DataType.DATE,
+ allowNull: false,
+ defaultValue: DataType.NOW,
+ },
+});
+
+export default DistributorRateUpdate;
diff --git a/src/data/models/PendingAlertNotification.js b/src/data/models/PendingAlertNotification.js
new file mode 100644
index 00000000..b93cd55e
--- /dev/null
+++ b/src/data/models/PendingAlertNotification.js
@@ -0,0 +1,30 @@
+import DataType from 'sequelize';
+import Model from '../sequelize';
+
+const PendingAlertNotification = Model.define('PendingAlertNotification', {
+ id: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ primaryKey: true,
+ autoIncrement: true,
+ },
+ userId: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ },
+ distributorRateId: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ },
+ alertCriteriaId: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ },
+ createdAt: {
+ type: DataType.DATE,
+ allowNull: false,
+ defaultValue: DataType.NOW,
+ },
+});
+
+export default PendingAlertNotification;
diff --git a/src/data/models/User.js b/src/data/models/User.js
index 38d18caf..8dddc333 100644
--- a/src/data/models/User.js
+++ b/src/data/models/User.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import DataType from 'sequelize';
import Model from '../sequelize';
diff --git a/src/data/models/UserClaim.js b/src/data/models/UserClaim.js
index 698ffaeb..0864893d 100644
--- a/src/data/models/UserClaim.js
+++ b/src/data/models/UserClaim.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import DataType from 'sequelize';
import Model from '../sequelize';
diff --git a/src/data/models/UserLogin.js b/src/data/models/UserLogin.js
index 0b68b9fe..9b01020f 100644
--- a/src/data/models/UserLogin.js
+++ b/src/data/models/UserLogin.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import DataType from 'sequelize';
import Model from '../sequelize';
diff --git a/src/data/models/UserProfile.js b/src/data/models/UserProfile.js
index c5c0f0fb..a94a7bfb 100644
--- a/src/data/models/UserProfile.js
+++ b/src/data/models/UserProfile.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import DataType from 'sequelize';
import Model from '../sequelize';
diff --git a/src/data/models/UtilityPrice.js b/src/data/models/UtilityPrice.js
new file mode 100644
index 00000000..58cbc2c8
--- /dev/null
+++ b/src/data/models/UtilityPrice.js
@@ -0,0 +1,81 @@
+import DataType from 'sequelize';
+import Model from '../sequelize';
+
+const UtilityPrice = Model.define('UtilityPrice', {
+ id: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ primaryKey: true,
+ autoIncrement: true,
+ },
+ name: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ priceType: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ distributorState: {
+ type: DataType.STRING(2),
+ allowNull: false,
+ },
+ distributorRateId: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ },
+ pricePerUnit: {
+ type: DataType.DECIMAL,
+ allowNull: false,
+ },
+ priceUnit: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ priceFuture: DataType.DECIMAL,
+ priceFutureStart: DataType.DATE,
+ priceFutureEnd: DataType.DATE,
+ secondaryPricePerUnit: DataType.DECIMAL,
+ secondaryPriceType: DataType.INTEGER,
+ hasCancellationFee: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ cancellationFee: DataType.DECIMAL,
+ hasMonthlyFee: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ monthlyFee: DataType.DECIMAL,
+ hasNetMetering: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ requiresDeposit: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ hasBulkDiscounts: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ offerUrl: DataType.STRING,
+ termMonthLength: DataType.INTEGER,
+ termEndDate: DataType.DATE,
+ supplierAddress1: DataType.STRING,
+ supplierAddress2: DataType.STRING,
+ supplierCity: DataType.STRING,
+ supplierState: DataType.STRING,
+ supplierZip: DataType.STRING,
+ supplierPhone1: DataType.STRING,
+ supplierPhone2: DataType.STRING,
+ supplierUrl: DataType.STRING,
+ comments: DataType.STRING,
+ createdAt: {
+ type: DataType.DATE,
+ allowNull: false,
+ defaultValue: DataType.NOW,
+ },
+});
+
+export default UtilityPrice;
diff --git a/src/data/models/UtilityPriceHistory.js b/src/data/models/UtilityPriceHistory.js
new file mode 100644
index 00000000..98280a6f
--- /dev/null
+++ b/src/data/models/UtilityPriceHistory.js
@@ -0,0 +1,81 @@
+import DataType from 'sequelize';
+import Model from '../sequelize';
+
+const UtilityPriceHistory = Model.define('UtilityPriceHistory', {
+ id: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ primaryKey: true,
+ autoIncrement: true,
+ },
+ name: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ priceType: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ distributorState: {
+ type: DataType.STRING(2),
+ allowNull: false,
+ },
+ distributorRateId: {
+ type: DataType.INTEGER,
+ allowNull: false,
+ },
+ pricePerUnit: {
+ type: DataType.DECIMAL,
+ allowNull: false,
+ },
+ priceUnit: {
+ type: DataType.STRING,
+ allowNull: false,
+ },
+ priceFuture: DataType.DECIMAL,
+ priceFutureStart: DataType.DATE,
+ priceFutureEnd: DataType.DATE,
+ secondaryPricePerUnit: DataType.DECIMAL,
+ secondaryPriceType: DataType.INTEGER,
+ hasCancellationFee: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ cancellationFee: DataType.DECIMAL,
+ hasMonthlyFee: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ monthlyFee: DataType.DECIMAL,
+ hasNetMetering: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ requiresDeposit: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ hasBulkDiscounts: {
+ type: DataType.BOOLEAN,
+ allowNull: false,
+ },
+ offerUrl: DataType.STRING,
+ termMonthLength: DataType.INTEGER,
+ termEndDate: DataType.DATE,
+ supplierAddress1: DataType.STRING,
+ supplierAddress2: DataType.STRING,
+ supplierCity: DataType.STRING,
+ supplierState: DataType.STRING,
+ supplierZip: DataType.STRING,
+ supplierPhone1: DataType.STRING,
+ supplierPhone2: DataType.STRING,
+ supplierUrl: DataType.STRING,
+ comments: DataType.STRING,
+ createdAt: {
+ type: DataType.DATE,
+ allowNull: false,
+ defaultValue: DataType.NOW,
+ },
+});
+
+export default UtilityPriceHistory;
diff --git a/src/data/models/index.js b/src/data/models/index.js
index e4ca45de..2bdc1725 100644
--- a/src/data/models/index.js
+++ b/src/data/models/index.js
@@ -1,18 +1,17 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import sequelize from '../sequelize';
import User from './User';
import UserLogin from './UserLogin';
import UserClaim from './UserClaim';
import UserProfile from './UserProfile';
+import Alert from './Alert';
+import AlertCriteria from './AlertCriteria';
+import DistributorRate from './DistributorRate';
+import DistributorRateUpdate from './DistributorRateUpdate';
+import PendingAlertNotification from './PendingAlertNotification';
+import UtilityPrice from './UtilityPrice';
+import UtilityPriceHistory from './UtilityPriceHistory';
+
User.hasMany(UserLogin, {
foreignKey: 'userId',
as: 'logins',
@@ -34,9 +33,64 @@ User.hasOne(UserProfile, {
onDelete: 'cascade',
});
+User.hasMany(AlertCriteria, {
+ foreignKey: 'userId',
+ as: 'alertCriteria',
+ onUpdate: 'cascade',
+ onDelete: 'cascade',
+});
+
+User.hasMany(Alert, {
+ foreignKey: 'userId',
+ as: 'alerts',
+ onUdpate: 'cascade',
+ onDelete: 'cascade',
+});
+
+User.hasMany(PendingAlertNotification, {
+ foreignKey: 'userId',
+ as: 'pendingAlertNotifications',
+ onUpdate: 'cascade',
+ onDelete: 'cascade',
+});
+
+UtilityPrice.hasOne(UtilityPriceHistory, {
+ onUpdate: 'cascade',
+ onDelete: 'set null',
+});
+
+Alert.belongsTo(UtilityPriceHistory, {
+ foreignKey: 'utilityPriceHistoryId',
+ onDelete: 'set null',
+});
+
+AlertCriteria.hasOne(DistributorRate, {
+ foreignKey: 'distributorRateId',
+ onUpdate: 'cascade',
+ onDelete: 'cascade',
+});
+
+DistributorRate.hasMany(AlertCriteria, {
+ foreignKey: 'distributorRateId',
+ onUpdate: 'cascade',
+ onDelete: 'cascade',
+});
+
function sync(...args) {
return sequelize.sync(...args);
}
export default { sync };
-export { User, UserLogin, UserClaim, UserProfile };
+export {
+ User,
+ UserLogin,
+ UserClaim,
+ UserProfile,
+ Alert,
+ AlertCriteria,
+ DistributorRate,
+ DistributorRateUpdate,
+ PendingAlertNotification,
+ UtilityPrice,
+ UtilityPriceHistory,
+};
diff --git a/src/data/queries/me.js b/src/data/queries/me.js
index 7314a97e..af3cbe68 100644
--- a/src/data/queries/me.js
+++ b/src/data/queries/me.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import UserType from '../types/UserType';
const me = {
diff --git a/src/data/queries/news.js b/src/data/queries/news.js
index c0fa9048..fec88103 100644
--- a/src/data/queries/news.js
+++ b/src/data/queries/news.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import { GraphQLList as List } from 'graphql';
import fetch from 'node-fetch';
import NewsItemType from '../types/NewsItemType';
diff --git a/src/data/schema.js b/src/data/schema.js
index 6156b07c..41df0af4 100644
--- a/src/data/schema.js
+++ b/src/data/schema.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import {
GraphQLSchema as Schema,
GraphQLObjectType as ObjectType,
diff --git a/src/data/sequelize.js b/src/data/sequelize.js
index 6f33b63d..ad9936ac 100644
--- a/src/data/sequelize.js
+++ b/src/data/sequelize.js
@@ -1,20 +1,19 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import Sequelize, { Op } from 'sequelize';
import config from '../config';
-const sequelize = new Sequelize(config.databaseUrl, {
- operatorsAliases: Op,
- define: {
- freezeTableName: true,
+const sequelize = new Sequelize(
+ config.databaseName,
+ config.databaseUser,
+ config.databasePassword,
+ {
+ host: config.databaseHost,
+ port: config.databasePort,
+ dialect: 'mysql',
+ operatorsAliases: Op,
+ define: {
+ freezeTableName: true,
+ },
},
-});
+);
export default sequelize;
diff --git a/src/data/types/NewsItemType.js b/src/data/types/NewsItemType.js
index 1933e1fb..dd60fbac 100644
--- a/src/data/types/NewsItemType.js
+++ b/src/data/types/NewsItemType.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import {
GraphQLObjectType as ObjectType,
GraphQLString as StringType,
diff --git a/src/data/types/UserType.js b/src/data/types/UserType.js
index d68165ee..86f0f00c 100644
--- a/src/data/types/UserType.js
+++ b/src/data/types/UserType.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import {
GraphQLObjectType as ObjectType,
GraphQLID as ID,
diff --git a/src/history.js b/src/history.js
index 2f2faacc..d39e1937 100644
--- a/src/history.js
+++ b/src/history.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import createBrowserHistory from 'history/createBrowserHistory';
// Navigation manager, e.g. history.push('/home')
diff --git a/src/passport.js b/src/passport.js
index 511cd3c1..67f7375d 100644
--- a/src/passport.js
+++ b/src/passport.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
/**
* Passport.js reference implementation.
* The database schema used in this sample is available at
diff --git a/src/router.js b/src/router.js
index ca61d585..1935c97a 100644
--- a/src/router.js
+++ b/src/router.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import UniversalRouter from 'universal-router';
import routes from './routes';
diff --git a/src/routes/about/index.js b/src/routes/about/index.js
index 7fe83fa2..f605f757 100644
--- a/src/routes/about/index.js
+++ b/src/routes/about/index.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import Layout from '../../components/Layout';
import Page from '../../components/Page';
diff --git a/src/routes/admin/Admin.css b/src/routes/admin/Admin.css
index feef11ab..43c93590 100644
--- a/src/routes/admin/Admin.css
+++ b/src/routes/admin/Admin.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
@import '../../components/variables.css';
.root {
diff --git a/src/routes/admin/Admin.js b/src/routes/admin/Admin.js
index c2977542..80ec6234 100644
--- a/src/routes/admin/Admin.js
+++ b/src/routes/admin/Admin.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
diff --git a/src/routes/admin/index.js b/src/routes/admin/index.js
index 1c399a61..c8cebe60 100644
--- a/src/routes/admin/index.js
+++ b/src/routes/admin/index.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import Layout from '../../components/Layout';
import Admin from './Admin';
diff --git a/src/routes/contact/Contact.css b/src/routes/contact/Contact.css
index feef11ab..43c93590 100644
--- a/src/routes/contact/Contact.css
+++ b/src/routes/contact/Contact.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
@import '../../components/variables.css';
.root {
diff --git a/src/routes/contact/Contact.js b/src/routes/contact/Contact.js
index 5c8f398a..a786eb70 100644
--- a/src/routes/contact/Contact.js
+++ b/src/routes/contact/Contact.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
diff --git a/src/routes/contact/index.js b/src/routes/contact/index.js
index 158c81f7..4399acb4 100644
--- a/src/routes/contact/index.js
+++ b/src/routes/contact/index.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import Layout from '../../components/Layout';
import Contact from './Contact';
diff --git a/src/routes/error/ErrorPage.css b/src/routes/error/ErrorPage.css
index 94bd9e57..d6f5db20 100644
--- a/src/routes/error/ErrorPage.css
+++ b/src/routes/error/ErrorPage.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
html {
display: flex;
align-items: center;
diff --git a/src/routes/error/ErrorPage.js b/src/routes/error/ErrorPage.js
index aff9d079..0ad5b0f7 100644
--- a/src/routes/error/ErrorPage.js
+++ b/src/routes/error/ErrorPage.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
diff --git a/src/routes/error/index.js b/src/routes/error/index.js
index 3f869b19..0636ab52 100644
--- a/src/routes/error/index.js
+++ b/src/routes/error/index.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import ErrorPage from './ErrorPage';
diff --git a/src/routes/home/Home.css b/src/routes/home/Home.css
index 95301277..6c0aabe5 100644
--- a/src/routes/home/Home.css
+++ b/src/routes/home/Home.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
@import '../../components/variables.css';
.root {
diff --git a/src/routes/home/Home.js b/src/routes/home/Home.js
index c4e4b8f6..ad7446f1 100644
--- a/src/routes/home/Home.js
+++ b/src/routes/home/Home.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
diff --git a/src/routes/home/index.js b/src/routes/home/index.js
index d330e10e..b9df998f 100644
--- a/src/routes/home/index.js
+++ b/src/routes/home/index.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import Home from './Home';
import Layout from '../../components/Layout';
diff --git a/src/routes/index.js b/src/routes/index.js
index 7c32265f..2d727787 100644
--- a/src/routes/index.js
+++ b/src/routes/index.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
/* eslint-disable global-require */
// The top-level (parent) route
diff --git a/src/routes/login/Login.js b/src/routes/login/Login.js
index 852919ce..a2bfaf52 100644
--- a/src/routes/login/Login.js
+++ b/src/routes/login/Login.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
diff --git a/src/routes/login/index.js b/src/routes/login/index.js
index 3f9a754d..e7277dee 100644
--- a/src/routes/login/index.js
+++ b/src/routes/login/index.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import Layout from '../../components/Layout';
import Login from './Login';
diff --git a/src/routes/not-found/NotFound.css b/src/routes/not-found/NotFound.css
index feef11ab..43c93590 100644
--- a/src/routes/not-found/NotFound.css
+++ b/src/routes/not-found/NotFound.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
@import '../../components/variables.css';
.root {
diff --git a/src/routes/not-found/NotFound.js b/src/routes/not-found/NotFound.js
index 437b2ba0..67b0f536 100644
--- a/src/routes/not-found/NotFound.js
+++ b/src/routes/not-found/NotFound.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
diff --git a/src/routes/not-found/index.js b/src/routes/not-found/index.js
index 40d83481..e5a9223f 100644
--- a/src/routes/not-found/index.js
+++ b/src/routes/not-found/index.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import Layout from '../../components/Layout';
import NotFound from './NotFound';
diff --git a/src/routes/privacy/index.js b/src/routes/privacy/index.js
index f76362bf..c54684ae 100644
--- a/src/routes/privacy/index.js
+++ b/src/routes/privacy/index.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import Layout from '../../components/Layout';
import Page from '../../components/Page';
diff --git a/src/routes/register/Register.css b/src/routes/register/Register.css
index feef11ab..43c93590 100644
--- a/src/routes/register/Register.css
+++ b/src/routes/register/Register.css
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
@import '../../components/variables.css';
.root {
diff --git a/src/routes/register/Register.js b/src/routes/register/Register.js
index 3a5a6180..a7f4d7ae 100644
--- a/src/routes/register/Register.js
+++ b/src/routes/register/Register.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import PropTypes from 'prop-types';
import withStyles from 'isomorphic-style-loader/lib/withStyles';
diff --git a/src/routes/register/index.js b/src/routes/register/index.js
index a8e82645..d202bdc3 100644
--- a/src/routes/register/index.js
+++ b/src/routes/register/index.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import React from 'react';
import Layout from '../../components/Layout';
import Register from './Register';
diff --git a/src/server.js b/src/server.js
index 2bad532b..e74f857b 100644
--- a/src/server.js
+++ b/src/server.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import path from 'path';
import express from 'express';
import cookieParser from 'cookie-parser';
diff --git a/tools/build.js b/tools/build.js
index 668283b8..9a6d7bc5 100644
--- a/tools/build.js
+++ b/tools/build.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import cp from 'child_process';
import run from './run';
import clean from './clean';
diff --git a/tools/bundle.js b/tools/bundle.js
index 707a1340..9c1f6e90 100644
--- a/tools/bundle.js
+++ b/tools/bundle.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import webpack from 'webpack';
import webpackConfig from './webpack.config';
diff --git a/tools/clean.js b/tools/clean.js
index a27ae1a2..5cc31423 100644
--- a/tools/clean.js
+++ b/tools/clean.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import { cleanDir } from './lib/fs';
/**
diff --git a/tools/copy.js b/tools/copy.js
index f281be01..94d4b3ad 100644
--- a/tools/copy.js
+++ b/tools/copy.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import path from 'path';
import chokidar from 'chokidar';
import { writeFile, copyFile, makeDir, copyDir, cleanDir } from './lib/fs';
diff --git a/tools/deploy.js b/tools/deploy.js
index b17684fb..bbcd5f48 100644
--- a/tools/deploy.js
+++ b/tools/deploy.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import path from 'path';
import fetch from 'node-fetch';
import { spawn } from './lib/cp';
diff --git a/tools/lib/cp.js b/tools/lib/cp.js
index 967d7772..6210a595 100644
--- a/tools/lib/cp.js
+++ b/tools/lib/cp.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import cp from 'child_process';
export const spawn = (command, args, options) =>
diff --git a/tools/lib/fileTransformer.js b/tools/lib/fileTransformer.js
index 2f77e3c8..cc9579c0 100644
--- a/tools/lib/fileTransformer.js
+++ b/tools/lib/fileTransformer.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
const path = require('path');
// This is a custom Jest transformer turning file imports into filenames.
diff --git a/tools/lib/fs.js b/tools/lib/fs.js
index 6acd1104..4e60a0f3 100644
--- a/tools/lib/fs.js
+++ b/tools/lib/fs.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import fs from 'fs';
import path from 'path';
import glob from 'glob';
diff --git a/tools/lib/markdown-loader.js b/tools/lib/markdown-loader.js
index b311265c..a1b09dfb 100644
--- a/tools/lib/markdown-loader.js
+++ b/tools/lib/markdown-loader.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
const path = require('path');
const fm = require('front-matter');
const MarkdownIt = require('markdown-it');
diff --git a/tools/lib/overrideRules.js b/tools/lib/overrideRules.js
index a1b6197a..6912ba3e 100644
--- a/tools/lib/overrideRules.js
+++ b/tools/lib/overrideRules.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
function overrideRules(rules, patch) {
return rules.map(ruleToPatch => {
let rule = patch(ruleToPatch);
diff --git a/tools/lib/webpackHotDevClient.js b/tools/lib/webpackHotDevClient.js
index a5535f9b..05eaa720 100644
--- a/tools/lib/webpackHotDevClient.js
+++ b/tools/lib/webpackHotDevClient.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import hotClient from 'webpack-hot-middleware/client';
import launchEditorEndpoint from 'react-dev-utils/launchEditorEndpoint';
import formatWebpackMessages from 'react-dev-utils/formatWebpackMessages';
diff --git a/tools/postcss.config.js b/tools/postcss.config.js
index fd8e24a0..da4ac40f 100644
--- a/tools/postcss.config.js
+++ b/tools/postcss.config.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
/* eslint-disable global-require */
const pkg = require('../package.json');
diff --git a/tools/render.js b/tools/render.js
index 527cb38f..e79b30df 100644
--- a/tools/render.js
+++ b/tools/render.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import path from 'path';
import fetch from 'node-fetch';
import { writeFile, makeDir } from './lib/fs';
diff --git a/tools/run.js b/tools/run.js
index 68a8adb1..e72cf728 100644
--- a/tools/run.js
+++ b/tools/run.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
export function format(time) {
return time.toTimeString().replace(/.*(\d{2}:\d{2}:\d{2}).*/, '$1');
}
diff --git a/tools/runServer.js b/tools/runServer.js
index 44921417..be18f3ad 100644
--- a/tools/runServer.js
+++ b/tools/runServer.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import path from 'path';
import cp from 'child_process';
import webpackConfig from './webpack.config';
diff --git a/tools/start.js b/tools/start.js
index 7e9d1818..e7e21957 100644
--- a/tools/start.js
+++ b/tools/start.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import path from 'path';
import express from 'express';
import browserSync from 'browser-sync';
diff --git a/tools/webpack.config.js b/tools/webpack.config.js
index 4dd658fe..5b35d0e5 100644
--- a/tools/webpack.config.js
+++ b/tools/webpack.config.js
@@ -1,12 +1,3 @@
-/**
- * React Starter Kit (https://www.reactstarterkit.com/)
- *
- * Copyright © 2014-present Kriasoft, LLC. All rights reserved.
- *
- * This source code is licensed under the MIT license found in the
- * LICENSE.txt file in the root directory of this source tree.
- */
-
import fs from 'fs';
import path from 'path';
import webpack from 'webpack';
diff --git a/vagrant-config/bootstrap.sh b/vagrant-config/bootstrap.sh
new file mode 100644
index 00000000..8d152dd1
--- /dev/null
+++ b/vagrant-config/bootstrap.sh
@@ -0,0 +1,57 @@
+CONFIG_SRC=/vagrant/vagrant-config
+MYSQL=/etc/mysql/mysql.conf.d
+#NGINX=/etc/nginx
+
+# The output of all these installation steps is noisy. With this utility
+# the progress report is nice and concise.
+function install {
+ echo installing $1
+ shift
+ apt-get -y install "$@" >/dev/null 2>&1
+}
+
+function quietRun {
+ "$@" > /dev/null 2>&1
+}
+
+install CUrl curl
+
+echo Update Repositories
+curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add - >/dev/null
+echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list >/dev/null
+curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash - >/dev/null
+#apt-add-repository ppa:ondrej/php >/dev/null
+apt-get -y update >/dev/null
+
+install NodeJS nodejs
+install NPM npm
+mkdir ~/.npm-global
+npm config set prefix '~/.npm-global'
+install Yarn yarn
+
+#install nginx nginx-full
+
+debconf-set-selections <<< 'mysql-server mysql-server/root_password password passw0rd'
+debconf-set-selections <<< 'mysql-server mysql-server/root_password_again password passw0rd'
+install MySql mysql-server
+quietRun mysql -uroot -proot < $CONFIG_SRC/database-config.sql || echo "Run MySQL config"
+quietRun cp $MYSQL/mysqld.cnf $MYSQL/mysqld.cnf.save || echo "Backup MySQL cnf"
+quietRun cp $CONFIG_SRC/mysqld.cnf $MYSQL/mysqld.cnf || echo "Install new MySQL cnf"
+
+# echo Updating Nginx config
+# quietRun cp $CONFIG_SRC/comparehare $NGINX/sites-available/comparehare || echo "Copy Nginx config to sites-available"
+# quietRun rm $NGINX/sites-enabled/* || echo "Remove existing sites-enabled from Nginx"
+# quietRun ln -s $NGINX/sites-available/comparehare $NGINX/sites-enabled/comparehare || echo "Add Nginx config to sites-enabled"
+
+#quietRun cp $CONFIG_SRC/xdebug.ini $PHP/mods-available/xdebug.ini || echo "Copy Xdebug config"
+
+echo Restarting Services
+quietRun systemctl restart mysql.service || echo "Restart MySQL"
+#quietRun systemctl restart nginx.service || echo "Restart Nginx"
+
+echo Creating CompareHare database
+#runuser -l vagrant -c 'mysqladmin -u root -p passw0rd create comparehare'
+quietRun mysqladmin -u root -p passw0rd create comparehare
+
+#runuser -l vagrant -c 'sudo chown -R -H $USER: /vagrant'
+#runuser -l vagrant -c 'sudo npm install -g gulp@3.9.0'
diff --git a/vagrant-config/comparehare b/vagrant-config/comparehare
new file mode 100644
index 00000000..e3039f4e
--- /dev/null
+++ b/vagrant-config/comparehare
@@ -0,0 +1,58 @@
+server {
+ listen 80;
+
+ #Change the absolute path below to the base directory that CompareHare lives
+ root /vagrant;
+
+ index index.html;
+
+ #Change the domain below to the domain name or IP address the site will run off of
+ #NOTE: the "www" subdomain is purposefully left off. In the first server block, we are explicitly
+ #choosing to forward
+ #server_name comparehare.local;
+
+ location /api/ {
+ try_files $uri /api/bootstrap.php$is_args$args;
+ }
+
+ #Ensure the path passed to fastcgi_pass below matches up with where php-fpm lives
+ location ~* \.php$ {
+ try_files $uri $uri/ /index.php?$query_string;
+ fastcgi_split_path_info ^(.+\.php)(/.+)$;
+ #include snippets/fastcgi-php.conf;
+ fastcgi_pass unix:/var/run/php/php7.1-fpm.sock;
+ include fastcgi_params;
+ fastcgi_param SCRIPT_FILENAME $document_root$fastcgi_script_name;
+ fastcgi_param PATH_INFO $fastcgi_path_info;
+ fastcgi_param HTTP_PROXY "";
+ fastcgi_param HTTP_HOST localhost:3000;
+ fastcgi_param SERVER_NAME icoalert.truefit.vagrant;
+
+ fastcgi_intercept_errors off;
+ fastcgi_buffer_size 16k;
+ fastcgi_buffers 4 16k;
+ fastcgi_connect_timeout 300;
+ fastcgi_send_timeout 300;
+ fastcgi_read_timeout 300;
+ }
+
+ location / {
+ # First attempt to serve request as file, then
+ # as directory, then fall back to displaying a 404.
+ try_files $uri $uri/ /index.html;
+ }
+
+ error_page 404 /404.html;
+ error_page 500 502 503 504 /50x.html;
+ location = /50x.html {
+ root /usr/share/nginx/html;
+ }
+
+ location ~ /\.ht {
+ deny all;
+ }
+
+ # Disable sendfile - becuase of bug in VirtualBox
+ # https://www.vagrantup.com/docs/synced-folders/virtualbox.html
+ sendfile off;
+}
diff --git a/vagrant-config/database-config.sql b/vagrant-config/database-config.sql
new file mode 100644
index 00000000..307e80d9
--- /dev/null
+++ b/vagrant-config/database-config.sql
@@ -0,0 +1,3 @@
+GRANT ALL ON *.* TO 'root'@'%' IDENTIFIED BY 'root';
+CREATE DATABASE comparehare;
+ALTER DATABASE comparehare CHARACTER SET utf8 COLLATE utf8_general_ci;
diff --git a/vagrant-config/mysqld.cnf b/vagrant-config/mysqld.cnf
new file mode 100644
index 00000000..1b3fd199
--- /dev/null
+++ b/vagrant-config/mysqld.cnf
@@ -0,0 +1,104 @@
+#
+# The MySQL database server configuration file.
+#
+# You can copy this to one of:
+# - "/etc/mysql/my.cnf" to set global options,
+# - "~/.my.cnf" to set user-specific options.
+#
+# One can use all long options that the program supports.
+# Run program with --help to get a list of available options and with
+# --print-defaults to see which it would actually understand and use.
+#
+# For explanations see
+# http://dev.mysql.com/doc/mysql/en/server-system-variables.html
+
+# This will be passed to all mysql clients
+# It has been reported that passwords should be enclosed with ticks/quotes
+# escpecially if they contain "#" chars...
+# Remember to edit /etc/mysql/debian.cnf when changing the socket location.
+
+# Here is entries for some specific programs
+# The following values assume you have at least 32M ram
+
+[mysqld_safe]
+socket = /var/run/mysqld/mysqld.sock
+nice = 0
+
+[mysqld]
+#
+# * Basic Settings
+#
+user = mysql
+pid-file = /var/run/mysqld/mysqld.pid
+socket = /var/run/mysqld/mysqld.sock
+port = 3306
+basedir = /usr
+datadir = /var/lib/mysql
+tmpdir = /tmp
+lc-messages-dir = /usr/share/mysql
+skip-external-locking
+#
+# Instead of skip-networking the default is now to listen only on
+# localhost which is more compatible and is not less secure.
+bind-address = 0.0.0.0
+#
+# * Fine Tuning
+#
+key_buffer_size = 16M
+max_allowed_packet = 16M
+thread_stack = 192K
+thread_cache_size = 8
+# This replaces the startup script and checks MyISAM tables if needed
+# the first time they are touched
+myisam-recover-options = BACKUP
+#max_connections = 100
+#table_cache = 64
+#thread_concurrency = 10
+#
+# * Query Cache Configuration
+#
+query_cache_limit = 1M
+query_cache_size = 16M
+#
+# * Logging and Replication
+#
+# Both location gets rotated by the cronjob.
+# Be aware that this log type is a performance killer.
+# As of 5.1 you can enable the log at runtime!
+#general_log_file = /var/log/mysql/mysql.log
+#general_log = 1
+#
+# Error log - should be very few entries.
+#
+log_error = /var/log/mysql/error.log
+#
+# Here you can see queries with especially long duration
+#log_slow_queries = /var/log/mysql/mysql-slow.log
+#long_query_time = 2
+#log-queries-not-using-indexes
+#
+# The following can be used as easy to replay backup logs or for replication.
+# note: if you are setting up a replication slave, see README.Debian about
+# other settings you may need to change.
+#server-id = 1
+#log_bin = /var/log/mysql/mysql-bin.log
+expire_logs_days = 10
+max_binlog_size = 100M
+#binlog_do_db = include_database_name
+#binlog_ignore_db = include_database_name
+#
+# * InnoDB
+#
+# InnoDB is enabled by default with a 10MB datafile in /var/lib/mysql/.
+# Read the manual for more InnoDB related options. There are many!
+#
+# * Security Features
+#
+# Read the manual, too, if you want chroot!
+# chroot = /var/lib/mysql/
+#
+# For generating SSL certificates I recommend the OpenSSL GUI "tinyca".
+#
+# ssl-ca=/etc/mysql/cacert.pem
+# ssl-cert=/etc/mysql/server-cert.pem
+# ssl-key=/etc/mysql/server-key.pem
diff --git a/yarn.lock b/yarn.lock
index 4b04643b..71c6fbd1 100644
--- a/yarn.lock
+++ b/yarn.lock
@@ -860,6 +860,16 @@
version "10.3.4"
resolved "https://registry.yarnpkg.com/@types/node/-/node-10.3.4.tgz#c74e8aec19e555df44609b8057311052a2c84d9e"
+"@types/node@^10.11.7":
+ version "10.12.25"
+ resolved "https://registry.yarnpkg.com/@types/node/-/node-10.12.25.tgz#0d01a7dd6127de60d861ece4a650963042abb538"
+ integrity sha512-IcvnGLGSQFDvC07Bz2I8SX+QKErDZbUdiQq7S2u3XyzTyJfUmT0sWJMbeQkMzpTAkO7/N7sZpW/arUM2jfKsbQ==
+
+"@types/semver@^5.5.0":
+ version "5.5.0"
+ resolved "https://registry.yarnpkg.com/@types/semver/-/semver-5.5.0.tgz#146c2a29ee7d3bae4bf2fcb274636e264c813c45"
+ integrity sha512-41qEJgBH/TWgo5NFSvBCJ1qkoi3Q6ONSF2avrHq1LVEZfYpdHmj0y9SuTK+u9ZhG1sYQKBL1AWXKyLWP4RaUoQ==
+
"@webassemblyjs/ast@1.5.12":
version "1.5.12"
resolved "https://registry.yarnpkg.com/@webassemblyjs/ast/-/ast-1.5.12.tgz#a9acbcb3f25333c4edfa1fdf3186b1ccf64e6664"
@@ -1162,6 +1172,14 @@ argparse@^1.0.7:
dependencies:
sprintf-js "~1.0.2"
+argv-tools@^0.1.1:
+ version "0.1.1"
+ resolved "https://registry.yarnpkg.com/argv-tools/-/argv-tools-0.1.1.tgz#588283f3393ada47141440b12981cd41bf6b7032"
+ integrity sha512-Cc0dBvx4dvrjjKpyDA6w8RlNAw8Su30NvZbWl/Tv9ZALEVlLVkWQiHMi84Q0xNfpVuSaiQbYkdmWK8g1PLGhKw==
+ dependencies:
+ array-back "^2.0.0"
+ find-replace "^2.0.1"
+
aria-query@^0.7.0:
version "0.7.1"
resolved "https://registry.yarnpkg.com/aria-query/-/aria-query-0.7.1.tgz#26cbb5aff64144b0a825be1846e0b16cfa00b11e"
@@ -1187,6 +1205,13 @@ arr-union@^3.1.0:
version "3.1.0"
resolved "https://registry.yarnpkg.com/arr-union/-/arr-union-3.1.0.tgz#e39b09aea9def866a8f206e288af63919bae39c4"
+array-back@^2.0.0:
+ version "2.0.0"
+ resolved "https://registry.yarnpkg.com/array-back/-/array-back-2.0.0.tgz#6877471d51ecc9c9bfa6136fb6c7d5fe69748022"
+ integrity sha512-eJv4pLLufP3g5kcZry0j6WXpIbzYw9GUB4mVJZno9wfwiBxbizTnHCw3VJb07cBihbFX48Y7oSrW9y+gt4glyw==
+ dependencies:
+ typical "^2.6.1"
+
array-equal@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/array-equal/-/array-equal-1.0.0.tgz#8c2a5ef2472fd9ea742b04c77a75093ba2757c93"
@@ -1302,7 +1327,7 @@ async@1.5.2, async@^1.4.0, async@^1.5.0:
version "1.5.2"
resolved "https://registry.yarnpkg.com/async/-/async-1.5.2.tgz#ec6a61ae56480c0c3cb241c95618e20892f9672a"
-async@^2.1.4:
+async@^2.1.4, async@^2.5.1:
version "2.6.1"
resolved "https://registry.yarnpkg.com/async/-/async-2.6.1.tgz#b245a23ca71930044ec53fa46aa00a3e87c6a610"
dependencies:
@@ -2257,10 +2282,26 @@ combined-stream@1.0.6, combined-stream@~1.0.5:
dependencies:
delayed-stream "~1.0.0"
+command-line-args@^5.0.2:
+ version "5.0.2"
+ resolved "https://registry.yarnpkg.com/command-line-args/-/command-line-args-5.0.2.tgz#c4e56b016636af1323cf485aa25c3cb203dfbbe4"
+ integrity sha512-/qPcbL8zpqg53x4rAaqMFlRV4opN3pbla7I7k9x8kyOBMQoGT6WltjN6sXZuxOXw6DgdK7Ad+ijYS5gjcr7vlA==
+ dependencies:
+ argv-tools "^0.1.1"
+ array-back "^2.0.0"
+ find-replace "^2.0.1"
+ lodash.camelcase "^4.3.0"
+ typical "^2.6.1"
+
commander@^2.11.0, commander@^2.13.0, commander@^2.14.1, commander@^2.2.0, commander@^2.8.1, commander@^2.9.0:
version "2.15.1"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.15.1.tgz#df46e867d0fc2aec66a34662b406a9ccafff5b0f"
+commander@^2.19.0:
+ version "2.19.0"
+ resolved "https://registry.yarnpkg.com/commander/-/commander-2.19.0.tgz#f6198aa84e5b83c46054b94ddedbfed5ee9ff12a"
+ integrity sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==
+
commander@~2.13.0:
version "2.13.0"
resolved "https://registry.yarnpkg.com/commander/-/commander-2.13.0.tgz#6964bca67685df7c1f1430c584f07d7597885b9c"
@@ -2298,6 +2339,14 @@ concat-stream@^1.5.0, concat-stream@^1.6.0:
readable-stream "^2.2.2"
typedarray "^0.0.6"
+config-chain@^1.1.12:
+ version "1.1.12"
+ resolved "https://registry.yarnpkg.com/config-chain/-/config-chain-1.1.12.tgz#0fde8d091200eb5e808caf25fe618c02f48e4efa"
+ integrity sha512-a1eOIcu8+7lUInge4Rpf/n4Krkf3Dd9lqhljRzII1/Zno/kRtUWnznPO3jOKBmTEktkt3fkxisUcivoj0ebzoA==
+ dependencies:
+ ini "^1.3.4"
+ proto-list "~1.2.1"
+
connect-history-api-fallback@^1.1.0, connect-history-api-fallback@^1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/connect-history-api-fallback/-/connect-history-api-fallback-1.5.0.tgz#b06873934bc5e344fef611a196a6faae0aee015a"
@@ -2655,6 +2704,11 @@ dedent@^0.7.0:
version "0.7.0"
resolved "https://registry.yarnpkg.com/dedent/-/dedent-0.7.0.tgz#2495ddbaf6eb874abb0e1be9df22d2e5a544326c"
+deep-diff@^0.3.8:
+ version "0.3.8"
+ resolved "https://registry.yarnpkg.com/deep-diff/-/deep-diff-0.3.8.tgz#c01de63efb0eec9798801d40c7e0dae25b582c84"
+ integrity sha1-wB3mPvsO7JeYgB1Ax+Da4ltYLIQ=
+
deep-extend@^0.6.0:
version "0.6.0"
resolved "https://registry.yarnpkg.com/deep-extend/-/deep-extend-0.6.0.tgz#c4fa7c95404a17a9c3e8ca7e1537312b736330ac"
@@ -2719,6 +2773,11 @@ delegates@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/delegates/-/delegates-1.0.0.tgz#84c6e159b81904fdca59a0ef44cd870d31250f9a"
+denque@^1.4.0:
+ version "1.4.0"
+ resolved "https://registry.yarnpkg.com/denque/-/denque-1.4.0.tgz#79e2f0490195502107f24d9553f374837dabc916"
+ integrity sha512-gh513ac7aiKrAgjiIBWZG0EASyDF9p4JMWwKA8YU5s9figrL5SRNEMT6FDynsegakuhWd1wVqTvqvqAoDxw7wQ==
+
depd@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/depd/-/depd-1.1.1.tgz#5783b4e1c459f06fa5ca27f991f3d06e7a310359"
@@ -2909,6 +2968,18 @@ ecdsa-sig-formatter@1.0.10:
dependencies:
safe-buffer "^5.0.1"
+editorconfig@^0.15.2:
+ version "0.15.2"
+ resolved "https://registry.yarnpkg.com/editorconfig/-/editorconfig-0.15.2.tgz#047be983abb9ab3c2eefe5199cb2b7c5689f0702"
+ integrity sha512-GWjSI19PVJAM9IZRGOS+YKI8LN+/sjkSjNyvxL5ucqP9/IqtYNXBaQ/6c/hkPNYQHyOHra2KoXZI/JVpuqwmcQ==
+ dependencies:
+ "@types/node" "^10.11.7"
+ "@types/semver" "^5.5.0"
+ commander "^2.19.0"
+ lru-cache "^4.1.3"
+ semver "^5.6.0"
+ sigmund "^1.0.1"
+
ee-first@1.1.1:
version "1.1.1"
resolved "https://registry.yarnpkg.com/ee-first/-/ee-first-1.1.1.tgz#590c61156b0ae2f4f0255732a158b266bc56b21d"
@@ -3689,6 +3760,14 @@ find-parent-dir@^0.3.0:
version "0.3.0"
resolved "https://registry.yarnpkg.com/find-parent-dir/-/find-parent-dir-0.3.0.tgz#33c44b429ab2b2f0646299c5f9f718f376ff8d54"
+find-replace@^2.0.1:
+ version "2.0.1"
+ resolved "https://registry.yarnpkg.com/find-replace/-/find-replace-2.0.1.tgz#6d9683a7ca20f8f9aabeabad07e4e2580f528550"
+ integrity sha512-LzDo3Fpa30FLIBsh6DCDnMN1KW2g4QKkqKmejlImgWY67dDFPX/x9Kh/op/GK522DchQXEvDi/wD48HKW49XOQ==
+ dependencies:
+ array-back "^2.0.0"
+ test-value "^3.0.0"
+
find-up@^1.0.0:
version "1.1.2"
resolved "https://registry.yarnpkg.com/find-up/-/find-up-1.1.2.tgz#6b2e9822b1a2ce0a60ab64d610eccad53cb24d0f"
@@ -3852,6 +3931,13 @@ gauge@~2.7.3:
strip-ansi "^3.0.1"
wide-align "^1.1.0"
+generate-function@^2.3.1:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/generate-function/-/generate-function-2.3.1.tgz#f069617690c10c868e73b8465746764f97c3479f"
+ integrity sha512-eeB5GfMNeevm/GRYq20ShmsaGcmI81kIX2K9XQx5miC8KdHaC6Jm0qQ8ZNeGOi7wYB8OsdxKs+Y2oVuTFuVwKQ==
+ dependencies:
+ is-property "^1.0.2"
+
generic-pool@^3.4.0:
version "3.4.2"
resolved "https://registry.yarnpkg.com/generic-pool/-/generic-pool-3.4.2.tgz#92ff7196520d670839a67308092a12aadf2f6a59"
@@ -3925,6 +4011,18 @@ glob@^7.0.3, glob@^7.0.5, glob@^7.1.1, glob@^7.1.2:
once "^1.3.0"
path-is-absolute "^1.0.0"
+glob@^7.1.3:
+ version "7.1.3"
+ resolved "https://registry.yarnpkg.com/glob/-/glob-7.1.3.tgz#3960832d3f1574108342dafd3a67b332c0969df1"
+ integrity sha512-vcfuiIxogLV4DlGBHIUOwI0IbrJ8HWPc4MU7HzviGeNho/UJDfi6B5p3sHeWIQ0KGIU0Jpxi5ZHxemQfLkkAwQ==
+ dependencies:
+ fs.realpath "^1.0.0"
+ inflight "^1.0.4"
+ inherits "2"
+ minimatch "^3.0.4"
+ once "^1.3.0"
+ path-is-absolute "^1.0.0"
+
global-modules@1.0.0, global-modules@^1.0.0:
version "1.0.0"
resolved "https://registry.yarnpkg.com/global-modules/-/global-modules-1.0.0.tgz#6d770f0eb523ac78164d72b5e71a8877265cc3ea"
@@ -4263,6 +4361,13 @@ iconv-lite@0.4.23, iconv-lite@^0.4.17, iconv-lite@^0.4.4, iconv-lite@~0.4.13:
dependencies:
safer-buffer ">= 2.1.2 < 3"
+iconv-lite@^0.4.24:
+ version "0.4.24"
+ resolved "https://registry.yarnpkg.com/iconv-lite/-/iconv-lite-0.4.24.tgz#2022b4b25fbddc21d2f524974a474aafe733908b"
+ integrity sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==
+ dependencies:
+ safer-buffer ">= 2.1.2 < 3"
+
icss-replace-symbols@^1.1.0:
version "1.1.0"
resolved "https://registry.yarnpkg.com/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz#06ea6f83679a7749e386cfe1fe812ae5db223ded"
@@ -4649,6 +4754,11 @@ is-promise@^2.1.0:
version "2.1.0"
resolved "https://registry.yarnpkg.com/is-promise/-/is-promise-2.1.0.tgz#79a2a9ece7f096e80f36d2b2f3bc16c1ff4bf3fa"
+is-property@^1.0.2:
+ version "1.0.2"
+ resolved "https://registry.yarnpkg.com/is-property/-/is-property-1.0.2.tgz#57fe1c4e48474edd65b09911f26b1cd4095dda84"
+ integrity sha1-V/4cTkhHTt1lsJkR8msc1Ald2oQ=
+
is-regex@^1.0.4:
version "1.0.4"
resolved "https://registry.yarnpkg.com/is-regex/-/is-regex-1.0.4.tgz#5517489b547091b0930e095654ced25ee97e9491"
@@ -5121,6 +5231,17 @@ js-base64@^2.1.9:
version "2.4.5"
resolved "https://registry.yarnpkg.com/js-base64/-/js-base64-2.4.5.tgz#e293cd3c7c82f070d700fc7a1ca0a2e69f101f92"
+js-beautify@^1.8.9:
+ version "1.8.9"
+ resolved "https://registry.yarnpkg.com/js-beautify/-/js-beautify-1.8.9.tgz#08e3c05ead3ecfbd4f512c3895b1cda76c87d523"
+ integrity sha512-MwPmLywK9RSX0SPsUJjN7i+RQY9w/yC17Lbrq9ViEefpLRgqAR2BgrMN2AbifkUuhDV8tRauLhLda/9+bE0YQA==
+ dependencies:
+ config-chain "^1.1.12"
+ editorconfig "^0.15.2"
+ glob "^7.1.3"
+ mkdirp "~0.5.0"
+ nopt "~4.0.1"
+
js-levenshtein@^1.1.3:
version "1.1.3"
resolved "https://registry.yarnpkg.com/js-levenshtein/-/js-levenshtein-1.1.3.tgz#3ef627df48ec8cf24bacf05c0f184ff30ef413c5"
@@ -5553,6 +5674,11 @@ lodash@^4.13.1, lodash@^4.15.0, lodash@^4.17.1, lodash@^4.17.10, lodash@^4.17.2,
version "4.17.10"
resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.10.tgz#1b7793cf7259ea38fb3661d4d38b3260af8ae4e7"
+lodash@^4.17.11:
+ version "4.17.11"
+ resolved "https://registry.yarnpkg.com/lodash/-/lodash-4.17.11.tgz#b39ea6229ef607ecd89e2c8df12536891cac9b8d"
+ integrity sha512-cQKh8igo5QUhZ7lg38DYWAxMvjSAKG0A8wGSVimP07SIUEK2UO+arSRKbRZWtelMtN5V0Hkwh5ryOto/SshYIg==
+
log-symbols@^1.0.2:
version "1.0.2"
resolved "https://registry.yarnpkg.com/log-symbols/-/log-symbols-1.0.2.tgz#376ff7b58ea3086a0f09facc74617eca501e1a18"
@@ -5583,6 +5709,11 @@ long@^3.2.0:
version "3.2.0"
resolved "https://registry.yarnpkg.com/long/-/long-3.2.0.tgz#d821b7138ca1cb581c172990ef14db200b5c474b"
+long@^4.0.0:
+ version "4.0.0"
+ resolved "https://registry.yarnpkg.com/long/-/long-4.0.0.tgz#9a7b71cfb7d361a194ea555241c92f7468d5bf28"
+ integrity sha512-XsP+KhQif4bjX1kbuSiySJFNAehNxgLb6hPRGJ9QsUr8ajHkuXGdrHmFUTUUXhDwVX2R5bY4JNZEwbUiMhV+MA==
+
longest-streak@^2.0.1:
version "2.0.2"
resolved "https://registry.yarnpkg.com/longest-streak/-/longest-streak-2.0.2.tgz#2421b6ba939a443bb9ffebf596585a50b4c38e2e"
@@ -5611,6 +5742,14 @@ lru-cache@^4.0.1, lru-cache@^4.1.1:
pseudomap "^1.0.2"
yallist "^2.1.2"
+lru-cache@^4.1.3:
+ version "4.1.5"
+ resolved "https://registry.yarnpkg.com/lru-cache/-/lru-cache-4.1.5.tgz#8bbe50ea85bed59bc9e33dcab8235ee9bcf443cd"
+ integrity sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==
+ dependencies:
+ pseudomap "^1.0.2"
+ yallist "^2.1.2"
+
make-dir@^1.0.0:
version "1.3.0"
resolved "https://registry.yarnpkg.com/make-dir/-/make-dir-1.3.0.tgz#79c1033b80515bd6d24ec9933e860ca75ee27f0c"
@@ -5947,14 +6086,31 @@ mute-stream@0.0.7:
version "0.0.7"
resolved "https://registry.yarnpkg.com/mute-stream/-/mute-stream-0.0.7.tgz#3075ce93bc21b8fab43e1bc4da7e8115ed1e7bab"
+mysql2@^1.6.5:
+ version "1.6.5"
+ resolved "https://registry.yarnpkg.com/mysql2/-/mysql2-1.6.5.tgz#6695304fa2ce793dda5c98e8bbec65cbd2e6cb9d"
+ integrity sha512-zedaOOyb3msuuZcJJnxIX/EGOpmljDG7B+UevRH5lqcv+yhy9eCwkArBz8/AO+/rlY3/oCsOdG8R5oD6k0hNfg==
+ dependencies:
+ denque "^1.4.0"
+ generate-function "^2.3.1"
+ iconv-lite "^0.4.24"
+ long "^4.0.0"
+ lru-cache "^4.1.3"
+ named-placeholders "^1.1.2"
+ seq-queue "^0.0.5"
+ sqlstring "^2.3.1"
+
+named-placeholders@^1.1.2:
+ version "1.1.2"
+ resolved "https://registry.yarnpkg.com/named-placeholders/-/named-placeholders-1.1.2.tgz#ceb1fbff50b6b33492b5cf214ccf5e39cef3d0e8"
+ integrity sha512-wiFWqxoLL3PGVReSZpjLVxyJ1bRqe+KKJVbr4hGs1KWfTZTQyezHFBbuKj9hsizHyGV2ne7EMjHdxEGAybD5SA==
+ dependencies:
+ lru-cache "^4.1.3"
+
nan@^2.9.2:
version "2.10.0"
resolved "https://registry.yarnpkg.com/nan/-/nan-2.10.0.tgz#96d0cd610ebd58d4b4de9cc0c6828cda99c7548f"
-nan@~2.9.2:
- version "2.9.2"
- resolved "https://registry.yarnpkg.com/nan/-/nan-2.9.2.tgz#f564d75f5f8f36a6d9456cca7a6c4fe488ab7866"
-
nanomatch@^1.2.9:
version "1.2.9"
resolved "https://registry.yarnpkg.com/nanomatch/-/nanomatch-1.2.9.tgz#879f7150cb2dab7a471259066c104eee6e0fa7c2"
@@ -6076,21 +6232,6 @@ node-pre-gyp@^0.10.0:
semver "^5.3.0"
tar "^4"
-node-pre-gyp@~0.9.0:
- version "0.9.1"
- resolved "https://registry.yarnpkg.com/node-pre-gyp/-/node-pre-gyp-0.9.1.tgz#f11c07516dd92f87199dbc7e1838eab7cd56c9e0"
- dependencies:
- detect-libc "^1.0.2"
- mkdirp "^0.5.1"
- needle "^2.2.0"
- nopt "^4.0.1"
- npm-packlist "^1.1.6"
- npmlog "^4.0.2"
- rc "^1.1.7"
- rimraf "^2.6.1"
- semver "^5.3.0"
- tar "^4"
-
nomnom@~1.6.2:
version "1.6.2"
resolved "https://registry.yarnpkg.com/nomnom/-/nomnom-1.6.2.tgz#84a66a260174408fc5b77a18f888eccc44fb6971"
@@ -6098,7 +6239,7 @@ nomnom@~1.6.2:
colors "0.5.x"
underscore "~1.4.4"
-nopt@^4.0.1:
+nopt@^4.0.1, nopt@~4.0.1:
version "4.0.1"
resolved "https://registry.yarnpkg.com/nopt/-/nopt-4.0.1.tgz#d0d4685afd5415193c8c7505602d0d17cd64474d"
dependencies:
@@ -6235,6 +6376,11 @@ object-hash@^1.1.4:
version "1.3.0"
resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.3.0.tgz#76d9ba6ff113cf8efc0d996102851fe6723963e2"
+object-hash@^1.3.1:
+ version "1.3.1"
+ resolved "https://registry.yarnpkg.com/object-hash/-/object-hash-1.3.1.tgz#fde452098a951cb145f039bb7d455449ddc126df"
+ integrity sha512-OSuu/pU4ENM9kmREg0BdNrUDIl1heYa4mBZacJc+vVWz4GtAwu7jO8s4AIt2aGRUTqxykpWzI3Oqnsm13tTMDA==
+
object-inspect@^1.5.0:
version "1.6.0"
resolved "https://registry.yarnpkg.com/object-inspect/-/object-inspect-1.6.0.tgz#c70b6cbf72f274aab4c34c0c82f5167bf82cf15b"
@@ -7237,6 +7383,11 @@ prop-types@^15.5.10, prop-types@^15.6.0, prop-types@^15.6.1:
loose-envify "^1.3.1"
object-assign "^4.1.1"
+proto-list@~1.2.1:
+ version "1.2.4"
+ resolved "https://registry.yarnpkg.com/proto-list/-/proto-list-1.2.4.tgz#212d5bfe1318306a420f6402b8e26ff39647a849"
+ integrity sha1-IS1b/hMYMGpCD2QCuOJv85ZHqEk=
+
proxy-addr@~2.0.3:
version "2.0.3"
resolved "https://registry.yarnpkg.com/proxy-addr/-/proxy-addr-2.0.3.tgz#355f262505a621646b3130a728eb647e22055341"
@@ -8012,6 +8163,11 @@ semver-compare@^1.0.0:
version "5.5.0"
resolved "https://registry.yarnpkg.com/semver/-/semver-5.5.0.tgz#dc4bbc7a6ca9d916dee5d43516f0092b58f7b8ab"
+semver@^5.6.0:
+ version "5.6.0"
+ resolved "https://registry.yarnpkg.com/semver/-/semver-5.6.0.tgz#7e74256fbaa49c75aa7c7a205cc22799cac80004"
+ integrity sha512-RS9R6R35NYgQn++fkDWaOmqGoj4Ek9gGs+DPxNUZKuwE183xjJroKvyo1IzVFeXvUrvmALy6FWD5xrdJT25gMg==
+
send@0.16.2:
version "0.16.2"
resolved "https://registry.yarnpkg.com/send/-/send-0.16.2.tgz#6ecca1e0f8c156d141597559848df64730a6bbc1"
@@ -8030,6 +8186,24 @@ send@0.16.2:
range-parser "~1.2.0"
statuses "~1.4.0"
+seq-queue@^0.0.5:
+ version "0.0.5"
+ resolved "https://registry.yarnpkg.com/seq-queue/-/seq-queue-0.0.5.tgz#d56812e1c017a6e4e7c3e3a37a1da6d78dd3c93e"
+ integrity sha1-1WgS4cAXpuTnw+Ojeh2m143TyT4=
+
+sequelize-auto-migrations@^1.0.3:
+ version "1.0.3"
+ resolved "https://registry.yarnpkg.com/sequelize-auto-migrations/-/sequelize-auto-migrations-1.0.3.tgz#558a370265c533d8c92f5156f813c5a9b21a09ab"
+ integrity sha512-CTh8073gqrthit5xl/ls2lKPzUHzRP/GCY8z99+dlu27oOSmSiFv+NcNHJjmfZvLBSzfif8Nwp3FNtph09Gxew==
+ dependencies:
+ async "^2.5.1"
+ command-line-args "^5.0.2"
+ deep-diff "^0.3.8"
+ js-beautify "^1.8.9"
+ lodash "^4.17.11"
+ object-hash "^1.3.1"
+ sequelize "^4.42.0"
+
sequelize@^4.37.10:
version "4.37.10"
resolved "https://registry.yarnpkg.com/sequelize/-/sequelize-4.37.10.tgz#1ccca570956a5bfe1c4c00abbc927633ca8d12d8"
@@ -8052,6 +8226,29 @@ sequelize@^4.37.10:
validator "^9.4.1"
wkx "^0.4.1"
+sequelize@^4.42.0:
+ version "4.42.0"
+ resolved "https://registry.yarnpkg.com/sequelize/-/sequelize-4.42.0.tgz#439467ba7bfe7d5afcc56d62b3e091860fbf18f3"
+ integrity sha512-qxAYnX4rcv7PbNtEidb56REpxNJCdbN0qyk1jb3+e6sE7OrmS0nYMU+MFVbNTJtZfSpOEEL1TX0TkMw+wzZBxg==
+ dependencies:
+ bluebird "^3.5.0"
+ cls-bluebird "^2.1.0"
+ debug "^3.1.0"
+ depd "^1.1.0"
+ dottie "^2.0.0"
+ generic-pool "^3.4.0"
+ inflection "1.12.0"
+ lodash "^4.17.1"
+ moment "^2.20.0"
+ moment-timezone "^0.5.14"
+ retry-as-promised "^2.3.2"
+ semver "^5.5.0"
+ terraformer-wkt-parser "^1.1.2"
+ toposort-class "^1.0.1"
+ uuid "^3.2.1"
+ validator "^10.4.0"
+ wkx "^0.4.1"
+
serialize-javascript@^1.4.0, serialize-javascript@^1.5.0:
version "1.5.0"
resolved "https://registry.yarnpkg.com/serialize-javascript/-/serialize-javascript-1.5.0.tgz#1aa336162c88a890ddad5384baebc93a655161fe"
@@ -8157,6 +8354,11 @@ shimmer@^1.1.0:
version "1.2.0"
resolved "https://registry.yarnpkg.com/shimmer/-/shimmer-1.2.0.tgz#f966f7555789763e74d8841193685a5e78736665"
+sigmund@^1.0.1:
+ version "1.0.1"
+ resolved "https://registry.yarnpkg.com/sigmund/-/sigmund-1.0.1.tgz#3ff21f198cad2175f9f3b781853fd94d0d19b590"
+ integrity sha1-P/IfGYytIXX587eBhT/ZTQ0ZtZA=
+
signal-exit@^3.0.0, signal-exit@^3.0.2:
version "3.0.2"
resolved "https://registry.yarnpkg.com/signal-exit/-/signal-exit-3.0.2.tgz#b5fdc08f1287ea1178628e415e25132b73646c6d"
@@ -8341,12 +8543,10 @@ sprintf-js@~1.0.2:
version "1.0.3"
resolved "https://registry.yarnpkg.com/sprintf-js/-/sprintf-js-1.0.3.tgz#04e6926f662895354f3dd015203633b857297e2c"
-sqlite3@^4.0.0:
- version "4.0.0"
- resolved "https://registry.yarnpkg.com/sqlite3/-/sqlite3-4.0.0.tgz#cc0e093ab51873f50d9dfc4126fcbef15d486570"
- dependencies:
- nan "~2.9.2"
- node-pre-gyp "~0.9.0"
+sqlstring@^2.3.1:
+ version "2.3.1"
+ resolved "https://registry.yarnpkg.com/sqlstring/-/sqlstring-2.3.1.tgz#475393ff9e91479aea62dcaf0ca3d14983a7fb40"
+ integrity sha1-R1OT/56RR5rqYtyvDKPRSYOn+0A=
sshpk@^1.7.0:
version "1.14.2"
@@ -8735,6 +8935,14 @@ test-exclude@^4.2.1:
read-pkg-up "^1.0.1"
require-main-filename "^1.0.1"
+test-value@^3.0.0:
+ version "3.0.0"
+ resolved "https://registry.yarnpkg.com/test-value/-/test-value-3.0.0.tgz#9168c062fab11a86b8d444dd968bb4b73851ce92"
+ integrity sha512-sVACdAWcZkSU9x7AOmJo5TqE+GyNJknHaHsMrR6ZnhjVlVN9Yx6FjHrsKZ3BjIpPCT68zYesPWkakrNupwfOTQ==
+ dependencies:
+ array-back "^2.0.0"
+ typical "^2.6.1"
+
text-table@0.2.0, text-table@~0.2.0:
version "0.2.0"
resolved "https://registry.yarnpkg.com/text-table/-/text-table-0.2.0.tgz#7f5ee823ae805207c00af2df4a84ec3fcfa570b4"
@@ -8901,6 +9109,11 @@ typedarray@^0.0.6:
version "0.0.6"
resolved "https://registry.yarnpkg.com/typedarray/-/typedarray-0.0.6.tgz#867ac74e3864187b1d3d47d996a78ec5c8830777"
+typical@^2.6.1:
+ version "2.6.1"
+ resolved "https://registry.yarnpkg.com/typical/-/typical-2.6.1.tgz#5c080e5d661cbbe38259d2e70a3c7253e873881d"
+ integrity sha1-XAgOXWYcu+OCWdLnCjxyU+hziB0=
+
ua-parser-js@0.7.17:
version "0.7.17"
resolved "https://registry.yarnpkg.com/ua-parser-js/-/ua-parser-js-0.7.17.tgz#e9ec5f9498b9ec910e7ae3ac626a805c4d09ecac"
@@ -9187,6 +9400,11 @@ validate-npm-package-license@^3.0.1:
spdx-correct "^3.0.0"
spdx-expression-parse "^3.0.0"
+validator@^10.4.0:
+ version "10.11.0"
+ resolved "https://registry.yarnpkg.com/validator/-/validator-10.11.0.tgz#003108ea6e9a9874d31ccc9e5006856ccd76b228"
+ integrity sha512-X/p3UZerAIsbBfN/IwahhYaBbY68EN/UQBWHtsbXGT5bfrH/p4NQzUCG1kF/rtKaNpnJ7jAu6NGTdSNtyNIXMw==
+
validator@^9.4.1:
version "9.4.1"
resolved "https://registry.yarnpkg.com/validator/-/validator-9.4.1.tgz#abf466d398b561cd243050112c6ff1de6cc12663"