From 5daa436cbfa2121dfcfabf0f15af5995bf09e813 Mon Sep 17 00:00:00 2001 From: David Nowinsky Date: Fri, 2 Oct 2020 18:39:32 +0200 Subject: [PATCH] build: reformat all files --- .coveragerc | 2 +- .github/workflows/ci.yml | 2 +- README.md | 16 ++++++++-------- doc/connectors/ROK.md | 1 - doc/connectors/azure_mssql.md | 2 +- doc/connectors/dataiku.md | 2 +- doc/connectors/elasticsearch.md | 2 +- doc/connectors/google_cloud_mysql.md | 2 +- doc/connectors/google_my_business.md | 4 ++-- doc/connectors/google_spreadsheet.md | 6 +++--- doc/connectors/hive.md | 2 +- doc/connectors/http_api.md | 14 +++++++------- doc/connectors/mssql.md | 2 +- doc/connectors/odata.md | 6 +++--- doc/connectors/oracle_sql.md | 2 +- doc/connectors/revinate.md | 2 +- doc/connectors/sap_hana.md | 2 +- doc/connectors/snowflake.md | 2 +- doc/connectors/wootric.md | 2 +- doc/generate.py | 6 +++--- templates/cap.m4 | 2 +- templates/tests.py.m4 | 1 - tests/google_analytics/fixtures/reports.json | 2 +- tests/micro_strategy/fixtures/fixture.json | 2 +- tests/mongo/fixtures/docs.json | 2 +- tests/odata/fixtures/records.json | 2 +- tests/postgres/fixtures/world_postgres.sql | 1 - tests/trello/fixtures/fixture.json | 2 +- toucan_connectors/aircall/Aircall.svg | 2 +- toucan_connectors/install_scripts/psql.sh | 2 +- 30 files changed, 47 insertions(+), 50 deletions(-) diff --git a/.coveragerc b/.coveragerc index 54a9b6919..ce6a2e6d1 100644 --- a/.coveragerc +++ b/.coveragerc @@ -8,4 +8,4 @@ exclude_lines = pragma: no cover # Don't cover NotImplemented methods (specially useful for abstract classes) - raise NotImplementedError \ No newline at end of file + raise NotImplementedError diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index a73ee8ad2..849e2bd57 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -51,7 +51,7 @@ jobs: - name: Install psql-odbc dependencies run: sudo bash toucan_connectors/install_scripts/psql.sh - + - name: install run: make install diff --git a/README.md b/README.md index 7a65d1084..4fd99a7d4 100644 --- a/README.md +++ b/README.md @@ -33,22 +33,22 @@ or [MacOS](https://docs.microsoft.com/en-us/sql/connect/odbc/linux-mac/install-m You can then install the library with `env LDFLAGS='-L/usr/local/lib -L/usr/local/opt/openssl/lib -L/usr/local/opt/readline/lib' pip install psycopg2` ## Testing a connector -If you want to run the tests for another connector, you can install the extra dependencies -(e.g to test MySQL just type `pip install -e ".[mysql]"`) +If you want to run the tests for another connector, you can install the extra dependencies +(e.g to test MySQL just type `pip install -e ".[mysql]"`) Now `pytest tests/mysql` should run all the mysql tests properly. -If you want to run the tests for all the connectors you can add all the dependencies by typing +If you want to run the tests for all the connectors you can add all the dependencies by typing `pip install -e ".[all]"` and `make test`. ## Adding a connector -To generate the connector and test modules from boilerplate, run: +To generate the connector and test modules from boilerplate, run: ``` $ make new_connector type=mytype ``` -`mytype` should be the name of a system we would like to build a connector for, +`mytype` should be the name of a system we would like to build a connector for, such as `MySQL` or `Hive` or `Magento`. #### Step 1 : Tests @@ -81,7 +81,7 @@ from toucan_connectors.toucan_connector import ToucanConnector, ToucanDataSource class MyTypeDataSource(ToucanDataSource): """Model of my datasource""" query: str - + class MyTypeConnector(ToucanConnector): """Model of my connector""" @@ -90,13 +90,13 @@ class MyTypeConnector(ToucanConnector): host: str port: int database: str - + def _retrieve_data(self, data_source: MyTypeDataSource) -> pd.DataFrame: """how to retrieve a dataframe""" ``` Please add your connector in `toucan_connectors/__init__.py`. -The key is what we call the `type` of the connector, which +The key is what we call the `type` of the connector, which is basically like an id used to retrieve it. ```python CONNECTORS_CATALOGUE = { diff --git a/doc/connectors/ROK.md b/doc/connectors/ROK.md index c2b74c798..a420b01b9 100644 --- a/doc/connectors/ROK.md +++ b/doc/connectors/ROK.md @@ -42,4 +42,3 @@ DATA_SOURCES: [ ... ] ``` - diff --git a/doc/connectors/azure_mssql.md b/doc/connectors/azure_mssql.md index 8c8606747..cbafb95e1 100644 --- a/doc/connectors/azure_mssql.md +++ b/doc/connectors/azure_mssql.md @@ -41,4 +41,4 @@ DATA_SOURCES: [ , ... ] -``` \ No newline at end of file +``` diff --git a/doc/connectors/dataiku.md b/doc/connectors/dataiku.md index a8008ad77..9fbfe2d64 100644 --- a/doc/connectors/dataiku.md +++ b/doc/connectors/dataiku.md @@ -38,4 +38,4 @@ DATA_SOURCES: [ , ... ] -``` \ No newline at end of file +``` diff --git a/doc/connectors/elasticsearch.md b/doc/connectors/elasticsearch.md index 640a143f5..2abd041f8 100644 --- a/doc/connectors/elasticsearch.md +++ b/doc/connectors/elasticsearch.md @@ -54,4 +54,4 @@ DATA_SOURCES: [ Data will correspond to the field `_source` of the API response. See API documentation for : * _search : https://www.elastic.co/guide/en/elasticsearch/reference/current/search-search.html -* _msearch : https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html \ No newline at end of file +* _msearch : https://www.elastic.co/guide/en/elasticsearch/reference/current/search-multi-search.html diff --git a/doc/connectors/google_cloud_mysql.md b/doc/connectors/google_cloud_mysql.md index 2757b3430..c09983445 100644 --- a/doc/connectors/google_cloud_mysql.md +++ b/doc/connectors/google_cloud_mysql.md @@ -45,4 +45,4 @@ DATA_SOURCES: [ , ... ] -``` \ No newline at end of file +``` diff --git a/doc/connectors/google_my_business.md b/doc/connectors/google_my_business.md index 7c0534ba6..762ff1790 100644 --- a/doc/connectors/google_my_business.md +++ b/doc/connectors/google_my_business.md @@ -60,8 +60,8 @@ DATA_SOURCES: [ ## Get credentials -First, you will need a valid `client_secret.json` file. You can download it from your Google Cloud Platform Console -in `API & Services` > `Credentials` > `OAuth 2.0 client IDs.` +First, you will need a valid `client_secret.json` file. You can download it from your Google Cloud Platform Console +in `API & Services` > `Credentials` > `OAuth 2.0 client IDs.` Then, in a virtualenv with `google_auth_oauthlib` and `google-api-python-client` package, you can use this python code to get your credentials: diff --git a/doc/connectors/google_spreadsheet.md b/doc/connectors/google_spreadsheet.md index ad08e5f90..9a730e64d 100644 --- a/doc/connectors/google_spreadsheet.md +++ b/doc/connectors/google_spreadsheet.md @@ -5,8 +5,8 @@ Unless the spreadsheet is public, you will have to manually share it. Open the google spreadsheet inside your web browser. Inside the File menu, there a - Share option. Click on it and enter the email address of your service account. - + Share option. Click on it and enter the email address of your service account. + If you are on Toucan Toco's cloud, it is: ``` toucanserviceaccount@testproj-204816.iam.gserviceaccount.com @@ -68,7 +68,7 @@ DATA_PROVIDERS: [ ## Data source configuration * `domain`: str, required -* `name`: str, required. Should match the data provider name +* `name`: str, required. Should match the data provider name * `spreadsheet_id`: str, required. Id of the spreadsheet which can be found inside the url: https://docs.google.com/spreadsheets/d//edit?pref=2&pli=1#gid=0, * `sheetname`: str. By default, the extractor return the first sheet. diff --git a/doc/connectors/hive.md b/doc/connectors/hive.md index dcf5461d8..450daa052 100644 --- a/doc/connectors/hive.md +++ b/doc/connectors/hive.md @@ -45,4 +45,4 @@ DATA_SOURCES: [ , ... ] -``` \ No newline at end of file +``` diff --git a/doc/connectors/http_api.md b/doc/connectors/http_api.md index 9492c530e..43f0509ca 100644 --- a/doc/connectors/http_api.md +++ b/doc/connectors/http_api.md @@ -2,11 +2,11 @@ This is a generic connector to get data from any HTTP APIs (REST style APIs). -This type of data source combines the features of Python’s [requests](http://docs.python-requests.org/) +This type of data source combines the features of Python’s [requests](http://docs.python-requests.org/) library to get data from any API with the filtering langage [jq](https://stedolan.github.io/jq/) for flexbile transformations of the responses. -Please see our [complete tutorial](https://docs.toucantoco.com/concepteur/tutorials/18-jq.html) for +Please see our [complete tutorial](https://docs.toucantoco.com/concepteur/tutorials/18-jq.html) for an example of advanced use of this connector. ## Data provider configuration @@ -14,9 +14,9 @@ an example of advanced use of this connector. * `type`: `"HttpAPI"` * `name`: str, required * `baseroute`: str, required -* `auth`: `{type: "basic|digest|oauth1|oauth2_backend|custom_token_server", args: [...], kwargs: {...}}` - cf. [requests auth](http://docs.python-requests.org/en/master/) and - [requests oauthlib](https://requests-oauthlib.readthedocs.io/en/latest/oauth2_workflow) doc. +* `auth`: `{type: "basic|digest|oauth1|oauth2_backend|custom_token_server", args: [...], kwargs: {...}}` + cf. [requests auth](http://docs.python-requests.org/en/master/) and + [requests oauthlib](https://requests-oauthlib.readthedocs.io/en/latest/oauth2_workflow) doc. * `template`: dict. See below. ```coffee @@ -35,8 +35,8 @@ DATA_PROVIDERS: [ ### Template -You can use this object to avoid repetition in data sources. -The values of the three attributes will be used or overridden by +You can use this object to avoid repetition in data sources. +The values of the three attributes will be used or overridden by all data sources using this provider. * `json`: dict diff --git a/doc/connectors/mssql.md b/doc/connectors/mssql.md index 2367067f5..796c92659 100644 --- a/doc/connectors/mssql.md +++ b/doc/connectors/mssql.md @@ -43,4 +43,4 @@ DATA_SOURCES: [ , ... ] -``` \ No newline at end of file +``` diff --git a/doc/connectors/odata.md b/doc/connectors/odata.md index d7487463f..ee5555cf1 100644 --- a/doc/connectors/odata.md +++ b/doc/connectors/odata.md @@ -5,9 +5,9 @@ * `type`: `"OData"` * `name`: str, required * `baseroute`: str, required -* `auth`: `{type: "basic|digest|oauth1|oauth2_backend|custom_token_server", args: [...], kwargs: {...}}` - cf. [requests auth](http://docs.python-requests.org/en/master/) and - [requests oauthlib](https://requests-oauthlib.readthedocs.io/en/latest/oauth2_workflow) doc. +* `auth`: `{type: "basic|digest|oauth1|oauth2_backend|custom_token_server", args: [...], kwargs: {...}}` + cf. [requests auth](http://docs.python-requests.org/en/master/) and + [requests oauthlib](https://requests-oauthlib.readthedocs.io/en/latest/oauth2_workflow) doc. ```coffee DATA_PROVIDERS: [ diff --git a/doc/connectors/oracle_sql.md b/doc/connectors/oracle_sql.md index fcfe5e1a9..42cc319ce 100644 --- a/doc/connectors/oracle_sql.md +++ b/doc/connectors/oracle_sql.md @@ -7,7 +7,7 @@ Alternatively, you can refer to the Oracle website [installation instructions](h * `type`: `"OracleSQL"` * `name`: str, required -* `dsn`: str following the [DSN pattern](https://en.wikipedia.org/wiki/Data_source_name), required. The `host`, `port` and `service name` part of the dsn are required. For example: `localhost:80/service` +* `dsn`: str following the [DSN pattern](https://en.wikipedia.org/wiki/Data_source_name), required. The `host`, `port` and `service name` part of the dsn are required. For example: `localhost:80/service` * `user`: str * `password`: str * `encoding`: str diff --git a/doc/connectors/revinate.md b/doc/connectors/revinate.md index 057e4fb41..71b7b5c7c 100644 --- a/doc/connectors/revinate.md +++ b/doc/connectors/revinate.md @@ -51,4 +51,4 @@ DATA_SOURCES: [ params: '', filter: '' ] -``` \ No newline at end of file +``` diff --git a/doc/connectors/sap_hana.md b/doc/connectors/sap_hana.md index 9f821edbb..e7a58f683 100644 --- a/doc/connectors/sap_hana.md +++ b/doc/connectors/sap_hana.md @@ -39,4 +39,4 @@ DATA_SOURCES: [ , ... ] -``` \ No newline at end of file +``` diff --git a/doc/connectors/snowflake.md b/doc/connectors/snowflake.md index 43a437d04..fe8d79a5b 100644 --- a/doc/connectors/snowflake.md +++ b/doc/connectors/snowflake.md @@ -43,4 +43,4 @@ DATA_SOURCES: [ , ... ] -``` \ No newline at end of file +``` diff --git a/doc/connectors/wootric.md b/doc/connectors/wootric.md index e39fd492a..3c53d9b19 100644 --- a/doc/connectors/wootric.md +++ b/doc/connectors/wootric.md @@ -45,4 +45,4 @@ DATA_SOURCES: [ ] ``` -For more information, check [the api documentation](https://docs.wootric.com/api) \ No newline at end of file +For more information, check [the api documentation](https://docs.wootric.com/api) diff --git a/doc/generate.py b/doc/generate.py index 75f77eebd..45adce11c 100644 --- a/doc/generate.py +++ b/doc/generate.py @@ -1,7 +1,7 @@ # Script to generate a connector documentation. import collections -import sys import os +import sys from contextlib import suppress import toucan_connectors @@ -89,7 +89,7 @@ def generate(klass): li.append(',\n ...\n]\n```') doc.append('\n'.join(li)) - return '\n\n'.join([l for l in doc if l is not None]) + return '\n\n'.join([line for line in doc if line is not None]) def get_connectors(): @@ -115,7 +115,7 @@ def generate_summmary(connectors): connectors = collections.OrderedDict(sorted(connectors.items())) for key, value in connectors.items(): doc.append(f'* [{key}](connectors/{value}.md)') - doc = '\n\n'.join([l for l in doc if l is not None]) + doc = '\n\n'.join([line for line in doc if line is not None]) file_name = 'doc/connectors.md' with open(file_name, 'w') as file: file.write(doc) diff --git a/templates/cap.m4 b/templates/cap.m4 index 740ccfeac..cc4c8d67d 100644 --- a/templates/cap.m4 +++ b/templates/cap.m4 @@ -1,3 +1,3 @@ define(`upcase', `translit(`$*', `a-z', `A-Z')')dnl define(`downcase', `translit(`$*', `A-Z', `a-z')')dnl -define(`cap', `regexp(`$1', `^\(\w\)\(\w*\)', `upcase(`\1')`'downcase(`\2')')')dnl \ No newline at end of file +define(`cap', `regexp(`$1', `^\(\w\)\(\w*\)', `upcase(`\1')`'downcase(`\2')')')dnl diff --git a/templates/tests.py.m4 b/templates/tests.py.m4 index d260cb562..91b462ce5 100644 --- a/templates/tests.py.m4 +++ b/templates/tests.py.m4 @@ -6,4 +6,3 @@ from toucan_connectors.downcase(TYPE).downcase(TYPE)_connector import cap(TYPE)C def test_get_df(): pass - diff --git a/tests/google_analytics/fixtures/reports.json b/tests/google_analytics/fixtures/reports.json index 257c33498..113de0e95 100644 --- a/tests/google_analytics/fixtures/reports.json +++ b/tests/google_analytics/fixtures/reports.json @@ -76,4 +76,4 @@ } } ] -} \ No newline at end of file +} diff --git a/tests/micro_strategy/fixtures/fixture.json b/tests/micro_strategy/fixtures/fixture.json index 1af501d7c..15b7faa68 100644 --- a/tests/micro_strategy/fixtures/fixture.json +++ b/tests/micro_strategy/fixtures/fixture.json @@ -1 +1 @@ -{"id": "6137E0964C68D84F107816AA694C2209", "name": "Intelligent Cube - Time, Products, Geography - Sales Metrics", "instanceId": "25E2E77811E83F2861D40080EF15DC52", "result": {"definition": {"attributes": [{"name": "Call Center", "id": "8D679D3511D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Category", "id": "8D679D3711D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Country", "id": "8D679D3811D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Distribution Center", "id": "8D679D5211D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Employee", "id": "8D679D3F11D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "8D67A52E11D3E4981000E787EC6DE8A4", "name": "Last Name", "dataType": "Char"}, {"id": "8D67A53211D3E4981000E787EC6DE8A4", "name": "First Name", "dataType": "Char"}]}, {"name": "Item", "id": "8D679D4211D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Manager", "id": "8D679D4311D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "8D67A6AB11D3E4981000E787EC6DE8A4", "name": "Last Name", "dataType": "Char"}, {"id": "8D67A6AF11D3E4981000E787EC6DE8A4", "name": "First Name", "dataType": "Char"}]}, {"name": "Month", "id": "8D679D4411D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Quarter", "id": "8D679D4A11D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Region", "id": "8D679D4B11D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Subcategory", "id": "8D679D4F11D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Supplier", "id": "8D679D5011D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Year", "id": "8D679D5111D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "45C11FA478E745FEA08D781CEA190FE5", "name": "ID", "dataType": "Real"}]}], "metrics": [{"name": "% Change to Profit", "id": "965C42404FD62829356000B0B955F267", "type": "Metric", "min": -547.1955230699, "max": 2145.7721179632, "numberFormatting": {"category": 4, "formatString": "0.00%;[RED](0.00%)"}}, {"name": "% Change to Revenue", "id": "1FB34B414FE712C0E58A2FACBD0CA6CE", "type": "Metric", "min": -0.9203539823, "max": 21.6470588235, "numberFormatting": {"category": 4, "formatString": "0.00%;[RED](0.00%)"}}, {"name": "Cost", "id": "7FD5B69611D5AC76C000D98A4CC5F24F", "type": "Metric", "min": 3.081, "max": 9366.888, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Month's Cost", "id": "E83645594DDA6A608B84B1BEDBE48482", "type": "Metric", "min": 3.081, "max": 9366.888, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Month's Profit", "id": "87E376B849F57D7CBAA0B38B20100F0C", "type": "Metric", "min": -113.9192, "max": 1963.84, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 0}}, {"name": "Last Month's Profit Margin", "id": "AD247F1F4336E4DEC714DE9BEF5A8F06", "type": "Metric", "min": -0.3812, "max": 0.3153333333, "numberFormatting": {"category": 4, "decimalPlaces": 2, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "0.00%;(0.00%)", "negativeType": 3}}, {"name": "Last Month's Revenue", "id": "4C05198411D3E877C000B3B2D86C964F", "type": "Metric", "min": 2.4, "max": 11280.0, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Month's Units Sold", "id": "A52B85D740AD7B1E137B25A390FAB8A1", "type": "Metric", "min": 1, "max": 49, "numberFormatting": {"category": 0, "decimalPlaces": 0, "formatString": "#,##0", "negativeType": 1}}, {"name": "Last Quarter's Cost", "id": "57FC70DE44B2AADA748FF4A30610B379", "type": "Metric", "min": 3.081, "max": 9366.888, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Quarter's Profit", "id": "07DED03E4B9E165A6E273FABEFF78E89", "type": "Metric", "min": -128.5276, "max": 1963.84, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 0}}, {"name": "Last Quarter's Profit Margin", "id": "2EB83FAB41D98A679CE415913E82D0DD", "type": "Metric", "min": -0.3812, "max": 0.3153333333, "numberFormatting": {"category": 4, "decimalPlaces": 2, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "0.00%;(0.00%)", "negativeType": 3}}, {"name": "Last Quarter's Revenue", "id": "A0458DCF46FC7BECE12290A486E30E85", "type": "Metric", "min": 2.4, "max": 11280.0, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Quarter's Units Sold", "id": "88CAEA2D4A9D814D9F6BA3B4E8CA5DD1", "type": "Metric", "min": 1, "max": 39, "numberFormatting": {"category": 0, "decimalPlaces": 0, "formatString": "#,##0", "negativeType": 1}}, {"name": "Last Year's Cost", "id": "CC10F9A14CA79466D5BE2AB86FF45865", "type": "Metric", "min": 3.081, "max": 6490.8576, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Year's Profit", "id": "838367154BDAFF3F783D0EB5CD82386A", "type": "Metric", "min": -187.3698, "max": 1609.1424, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 0}}, {"name": "Last Year's Profit Margin", "id": "21CDA2E14EE75036DA6326AD40E4E218", "type": "Metric", "min": -0.3812, "max": 0.3153333333, "numberFormatting": {"category": 4, "decimalPlaces": 2, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "0.00%;(0.00%)", "negativeType": 3}}, {"name": "Last Year's Revenue", "id": "4C05199311D3E877C000B3B2D86C964F", "type": "Metric", "min": 2.4, "max": 8100.0, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Year's Units Sold", "id": "C01F5E784776DB723FBBC48E6A41F2BD", "type": "Metric", "min": 1, "max": 30, "numberFormatting": {"category": 0, "decimalPlaces": 0, "formatString": "#,##0", "negativeType": 1}}, {"name": "Profit", "id": "4C051DB611D3E877C000B3B2D86C964F", "type": "Metric", "min": -128.5276, "max": 1913.112, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0;(\"$\"#,##0)", "negativeType": 3}}, {"name": "Profit Forecast", "id": "1FAF96994873E7CEFC71BDB269522636", "type": "Metric", "min": -103.4292443824, "max": 2068.30364544, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0;[RED]\"$\"#,##0", "negativeType": 1}}, {"name": "Profit Margin", "id": "2680DF9E11D5C3FEC0000B881FDA1A4F", "type": "Metric", "min": -0.3812, "max": 0.3153333333, "numberFormatting": {"category": 4, "decimalPlaces": 2, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "0.00%;(0.00%)", "negativeType": 3}}, {"name": "Revenue", "id": "4C05177011D3E877C000B3B2D86C964F", "type": "Metric", "min": 2.4, "max": 11280.0, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Revenue Forecast", "id": "8D7D59C144AB891C57FEFA873ABE1C92", "type": "Metric", "min": 2.2224, "max": 10100.0, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 2, "formatString": "\"$\" #,##0;[RED](\"$\" #,##0)", "negativeType": 4}}, {"name": "Unit Cost", "id": "0782483A11D40C95C000C8906B98494F", "type": "Metric", "min": 3.081, "max": 936.6888, "numberFormatting": {"category": 1, "decimalPlaces": 0, "formatString": "\"$ \" #,##0", "negativeType": 1}}, {"name": "Unit Price", "id": "078248EE11D40C95C000C8906B98494F", "type": "Metric", "min": 3, "max": 1200, "numberFormatting": {"category": 1, "decimalPlaces": 0, "formatString": "\"$ \" #,##0", "negativeType": 1}}, {"name": "Unit Profit", "id": "7FD5B6D111D5AC76C000D98A4CC5F24F", "type": "Metric", "min": -0.5026, "max": 263.3112, "numberFormatting": {"category": 1, "decimalPlaces": 0, "formatString": "\"$ \" #,##0", "negativeType": 1}}, {"name": "Units Sold", "id": "4C05190A11D3E877C000B3B2D86C964F", "type": "Metric", "min": 1, "max": 54, "numberFormatting": {"category": 0, "decimalPlaces": 0, "formatString": "#,##0", "negativeType": 1}}], "thresholds": [], "sorting": []}, "data": {"paging": {"total": 111910, "current": 100, "offset": 0, "limit": 100, "prev": null, "next": null}, "root": {"isPartial": true, "children": [{"depth": 0, "element": {"attributeIndex": 0, "formValues": {"DESC": "Atlanta"}, "name": "Atlanta", "id": "h1;8D679D3511D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 1, "element": {"attributeIndex": 1, "formValues": {"DESC": "Books"}, "name": "Books", "id": "h1;8D679D3711D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 2, "element": {"attributeIndex": 2, "formValues": {"DESC": "USA"}, "name": "USA", "id": "h1;8D679D3811D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 3, "element": {"attributeIndex": 3, "formValues": {"DESC": "Atlanta"}, "name": "Atlanta", "id": "h1:10;8D679D5211D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 4, "element": {"attributeIndex": 4, "formValues": {"Last Name": "Benner", "First Name": "Ian"}, "name": "Benner Ian", "id": "h4;8D679D3F11D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "100 Places to Go While Still Young at Heart"}, "name": "100 Places to Go While Still Young at Heart", "id": "h1;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 65.728, "fv": "$66", "mi": 2}, "Last Month's Cost": {"rv": 32.864, "fv": "$33", "mi": 3}, "Last Month's Profit": {"rv": 13.136, "fv": "$13", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2855652174, "fv": "28.56%", "mi": 5}, "Last Month's Revenue": {"rv": 46.0, "fv": "$46", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 32.864, "fv": "$33", "mi": 8}, "Last Quarter's Profit": {"rv": 13.136, "fv": "$13", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2855652174, "fv": "28.56%", "mi": 10}, "Last Quarter's Revenue": {"rv": 46.0, "fv": "$46", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 32.864, "fv": "$33", "mi": 13}, "Last Year's Profit": {"rv": 13.136, "fv": "$13", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2855652174, "fv": "28.56%", "mi": 15}, "Last Year's Revenue": {"rv": 46.0, "fv": "$46", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 26.272, "fv": "$26", "mi": 18}, "Profit Forecast": {"rv": 26.86889984, "fv": "$27", "mi": 19}, "Profit Margin": {"rv": 0.2855652174, "fv": "28.56%", "mi": 20}, "Revenue": {"rv": 92.0, "fv": "$92", "mi": 21}, "Revenue Forecast": {"rv": 102.12, "fv": "$ 102", "mi": 22}, "Unit Cost": {"rv": 32.864, "fv": "$ 33", "mi": 23}, "Unit Price": {"rv": 46, "fv": "$ 46", "mi": 24}, "Unit Profit": {"rv": 13.136, "fv": "$ 13", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Art As Experience"}, "name": "Art As Experience", "id": "h2;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 32.864, "fv": "$33", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 16.432, "fv": "$16", "mi": 13}, "Last Year's Profit": {"rv": 5.568, "fv": "$6", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 22.0, "fv": "$22", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 11.136, "fv": "$11", "mi": 18}, "Profit Forecast": {"rv": 11.81930496, "fv": "$12", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 44.0, "fv": "$44", "mi": 21}, "Revenue Forecast": {"rv": 39.16, "fv": "$ 39", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 16.432, "fv": "$16", "mi": 8}, "Last Quarter's Profit": {"rv": 5.568, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 22.0, "fv": "$22", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.56729344, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.66, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The Painted Word"}, "name": "The Painted Word", "id": "h3;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2015"}, "name": "Sep 2015", "id": "h201509;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 5.135, "fv": "$5", "mi": 3}, "Last Month's Profit": {"rv": 0.865, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 6.0, "fv": "$6", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 15.405, "fv": "$15", "mi": 8}, "Last Quarter's Profit": {"rv": 2.595, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 18.0, "fv": "$18", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 5.135, "fv": "$5", "mi": 13}, "Last Year's Profit": {"rv": 0.865, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 6.0, "fv": "$6", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.73, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.613571, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 12.0, "fv": "$12", "mi": 21}, "Revenue Forecast": {"rv": 9.96, "fv": "$ 10", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2016"}, "name": "Jan 2016", "id": "h201601;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 5.135, "fv": "$5", "mi": 2}, "Last Month's Cost": {"rv": 15.405, "fv": "$15", "mi": 3}, "Last Month's Profit": {"rv": 1.695, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.099122807, "fv": "9.91%", "mi": 5}, "Last Month's Revenue": {"rv": 17.1, "fv": "$17", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 15.405, "fv": "$15", "mi": 8}, "Last Quarter's Profit": {"rv": 2.595, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 18.0, "fv": "$18", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 5.135, "fv": "$5", "mi": 13}, "Last Year's Profit": {"rv": 0.865, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 6.0, "fv": "$6", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 0.865, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.82923225, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 6.0, "fv": "$6", "mi": 21}, "Revenue Forecast": {"rv": 6.06, "fv": "$ 6", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2016"}, "name": "Apr 2016", "id": "h201604;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.2345132743, "fv": "23.45%", "mi": 0}, "% Change to Revenue": {"rv": 0.4736842105, "fv": "47.37%", "mi": 1}, "Cost": {"rv": 15.405, "fv": "$15", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 1.73, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 12.0, "fv": "$12", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 5.135, "fv": "$5", "mi": 8}, "Last Quarter's Profit": {"rv": 0.865, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 6.0, "fv": "$6", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 1.13, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.099122807, "fv": "9.91%", "mi": 15}, "Last Year's Revenue": {"rv": 11.4, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.395, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 1.30578975, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.0830357143, "fv": "8.30%", "mi": 20}, "Revenue": {"rv": 16.8, "fv": "$17", "mi": 21}, "Revenue Forecast": {"rv": 18.7824, "fv": "$ 19", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.6666666667, "fv": "66.67%", "mi": 0}, "% Change to Revenue": {"rv": 0.6666666667, "fv": "66.67%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 15.405, "fv": "$15", "mi": 3}, "Last Month's Profit": {"rv": 1.395, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0830357143, "fv": "8.30%", "mi": 5}, "Last Month's Revenue": {"rv": 16.8, "fv": "$17", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 10.27, "fv": "$10", "mi": 8}, "Last Quarter's Profit": {"rv": 1.73, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 12.0, "fv": "$12", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 15.405, "fv": "$15", "mi": 13}, "Last Year's Profit": {"rv": 2.595, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 4.325, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.92169375, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 30.0, "fv": "$30", "mi": 21}, "Revenue Forecast": {"rv": 25.2, "fv": "$ 25", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 5, "fv": "5", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 5.135, "fv": "$5", "mi": 2}, "Last Month's Cost": {"rv": 5.135, "fv": "$5", "mi": 3}, "Last Month's Profit": {"rv": 0.865, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 6.0, "fv": "$6", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 15.405, "fv": "$15", "mi": 8}, "Last Quarter's Profit": {"rv": 1.395, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.0830357143, "fv": "8.30%", "mi": 10}, "Last Quarter's Revenue": {"rv": 16.8, "fv": "$17", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 5.135, "fv": "$5", "mi": 13}, "Last Year's Profit": {"rv": 0.865, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 6.0, "fv": "$6", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 0.865, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.81426775, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 6.0, "fv": "$6", "mi": 21}, "Revenue Forecast": {"rv": 6.06, "fv": "$ 6", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 5.135, "fv": "$5", "mi": 3}, "Last Month's Profit": {"rv": 0.865, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 6.0, "fv": "$6", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 4.325, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 30.0, "fv": "$30", "mi": 11}, "Last Quarter's Units Sold": {"rv": 5, "fv": "5", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 1.73, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 3.46, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 3.167284, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 24.0, "fv": "$24", "mi": 21}, "Revenue Forecast": {"rv": 24.0, "fv": "$ 24", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.6666666667, "fv": "66.67%", "mi": 0}, "% Change to Revenue": {"rv": 0.6666666667, "fv": "66.67%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 3.46, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 24.0, "fv": "$24", "mi": 6}, "Last Month's Units Sold": {"rv": 4, "fv": "4", "mi": 7}, "Last Quarter's Cost": {"rv": 5.135, "fv": "$5", "mi": 8}, "Last Quarter's Profit": {"rv": 0.865, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 6.0, "fv": "$6", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 15.405, "fv": "$15", "mi": 13}, "Last Year's Profit": {"rv": 2.595, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 4.325, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.92169375, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 30.0, "fv": "$30", "mi": 21}, "Revenue Forecast": {"rv": 31.8, "fv": "$ 32", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 5, "fv": "5", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -1.0206489676, "fv": "(102.06%)", "mi": 0}, "% Change to Revenue": {"rv": -0.701754386, "fv": "(70.18%)", "mi": 1}, "Cost": {"rv": 5.135, "fv": "$5", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 2.525, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0895390071, "fv": "8.95%", "mi": 5}, "Last Month's Revenue": {"rv": 28.2, "fv": "$28", "mi": 6}, "Last Month's Units Sold": {"rv": 5, "fv": "5", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 3.46, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 24.0, "fv": "$24", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 15.405, "fv": "$15", "mi": 13}, "Last Year's Profit": {"rv": 1.695, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.099122807, "fv": "9.91%", "mi": 15}, "Last Year's Revenue": {"rv": 17.1, "fv": "$17", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": -0.035, "fv": "($0)", "mi": 18}, "Profit Forecast": {"rv": -0.03323775, "fv": "$0", "mi": 19}, "Profit Margin": {"rv": -0.0068627451, "fv": "(0.69%)", "mi": 20}, "Revenue": {"rv": 5.1, "fv": "$5", "mi": 21}, "Revenue Forecast": {"rv": 4.5849, "fv": "$ 5", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Hirschfeld on Line"}, "name": "Hirschfeld on Line", "id": "h4;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2015"}, "name": "Sep 2015", "id": "h201509;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 77.025, "fv": "$77", "mi": 3}, "Last Month's Profit": {"rv": 27.975, "fv": "$28", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 105.0, "fv": "$105", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 9.325, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 35.0, "fv": "$35", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 9.325, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 35.0, "fv": "$35", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 9.325, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 7.98919375, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 35.0, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.65, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2015"}, "name": "Nov 2015", "id": "h201511;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 9.325, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 35.0, "fv": "$35", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 77.025, "fv": "$77", "mi": 8}, "Last Quarter's Profit": {"rv": 27.975, "fv": "$28", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 105.0, "fv": "$105", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 9.325, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 35.0, "fv": "$35", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 9.325, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 7.98919375, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 35.0, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.65, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 0}, "% Change to Revenue": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 9.325, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 35.0, "fv": "$35", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 9.325, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 35.0, "fv": "$35", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 77.025, "fv": "$77", "mi": 13}, "Last Year's Profit": {"rv": 27.975, "fv": "$28", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 105.0, "fv": "$105", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 9.325, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 9.72830625, "fv": "$10", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 35.0, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 38.85, "fv": "$ 39", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 51.35, "fv": "$51", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 9.325, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 35.0, "fv": "$35", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 9.325, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 35.0, "fv": "$35", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 9.325, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 35.0, "fv": "$35", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 18.65, "fv": "$19", "mi": 18}, "Profit Forecast": {"rv": 21.195725, "fv": "$21", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 70.0, "fv": "$70", "mi": 21}, "Revenue Forecast": {"rv": 75.6, "fv": "$ 76", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 51.35, "fv": "$51", "mi": 3}, "Last Month's Profit": {"rv": 18.65, "fv": "$19", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 70.0, "fv": "$70", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 9.325, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 35.0, "fv": "$35", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 9.325, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 35.0, "fv": "$35", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 9.325, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 9.72830625, "fv": "$10", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 35.0, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.65, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2016"}, "name": "Nov 2016", "id": "h201611;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.563002681, "fv": "(56.30%)", "mi": 0}, "% Change to Revenue": {"rv": -0.15, "fv": "(15.00%)", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 9.325, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 35.0, "fv": "$35", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 9.325, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 35.0, "fv": "$35", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 9.325, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 35.0, "fv": "$35", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 4.075, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 4.03730625, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1369747899, "fv": "13.70%", "mi": 20}, "Revenue": {"rv": 29.75, "fv": "$30", "mi": 21}, "Revenue Forecast": {"rv": 25.064375, "fv": "$ 25", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.2883435583, "fv": "128.83%", "mi": 0}, "% Change to Revenue": {"rv": 0.1764705882, "fv": "17.65%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 4.075, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1369747899, "fv": "13.70%", "mi": 5}, "Last Month's Revenue": {"rv": 29.75, "fv": "$30", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 51.35, "fv": "$51", "mi": 8}, "Last Quarter's Profit": {"rv": 18.65, "fv": "$19", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 70.0, "fv": "$70", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 4.075, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1369747899, "fv": "13.70%", "mi": 15}, "Last Year's Revenue": {"rv": 29.75, "fv": "$30", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 9.325, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 7.98919375, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 35.0, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.65, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Architecture : Form, Space, & Order"}, "name": "Architecture : Form, Space, & Order", "id": "h6;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 7.46, "fv": "$7", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 28.0, "fv": "$28", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 7.46, "fv": "$7", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 28.0, "fv": "$28", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 41.08, "fv": "$41", "mi": 13}, "Last Year's Profit": {"rv": 14.92, "fv": "$15", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 56.0, "fv": "$56", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 7.46, "fv": "$7", "mi": 18}, "Profit Forecast": {"rv": 7.643516, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 28.0, "fv": "$28", "mi": 21}, "Revenue Forecast": {"rv": 29.12, "fv": "$ 29", "mi": 22}, "Unit Cost": {"rv": 20.54, "fv": "$ 21", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 7.46, "fv": "$ 7", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "50 Favorite Rooms"}, "name": "50 Favorite Rooms", "id": "h7;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2015"}, "name": "Nov 2015", "id": "h201511;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 13.351, "fv": "$13", "mi": 2}, "Last Month's Cost": {"rv": 26.702, "fv": "$27", "mi": 3}, "Last Month's Profit": {"rv": 9.298, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 5}, "Last Month's Revenue": {"rv": 36.0, "fv": "$36", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 13.351, "fv": "$13", "mi": 8}, "Last Quarter's Profit": {"rv": 4.649, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 10}, "Last Quarter's Revenue": {"rv": 18.0, "fv": "$18", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 13.351, "fv": "$13", "mi": 13}, "Last Year's Profit": {"rv": 4.649, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 4.649, "fv": "$5", "mi": 18}, "Profit Forecast": {"rv": 4.63268201, "fv": "$5", "mi": 19}, "Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 20}, "Revenue": {"rv": 18.0, "fv": "$18", "mi": 21}, "Revenue Forecast": {"rv": 13.86, "fv": "$ 14", "mi": 22}, "Unit Cost": {"rv": 13.351, "fv": "$ 13", "mi": 23}, "Unit Price": {"rv": 18, "fv": "$ 18", "mi": 24}, "Unit Profit": {"rv": 4.649, "fv": "$ 5", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 26.702, "fv": "$27", "mi": 2}, "Last Month's Cost": {"rv": 13.351, "fv": "$13", "mi": 3}, "Last Month's Profit": {"rv": 4.649, "fv": "$5", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 5}, "Last Month's Revenue": {"rv": 18.0, "fv": "$18", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 26.702, "fv": "$27", "mi": 8}, "Last Quarter's Profit": {"rv": 9.298, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 10}, "Last Quarter's Revenue": {"rv": 36.0, "fv": "$36", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 13.351, "fv": "$13", "mi": 13}, "Last Year's Profit": {"rv": 4.649, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 9.298, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 9.69762804, "fv": "$10", "mi": 19}, "Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 20}, "Revenue": {"rv": 36.0, "fv": "$36", "mi": 21}, "Revenue Forecast": {"rv": 28.08, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 13.351, "fv": "$ 13", "mi": 23}, "Unit Price": {"rv": 18, "fv": "$ 18", "mi": 24}, "Unit Profit": {"rv": 4.649, "fv": "$ 5", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2016"}, "name": "Nov 2016", "id": "h201611;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.4192299419, "fv": "41.92%", "mi": 0}, "% Change to Revenue": {"rv": 0.85, "fv": "85.00%", "mi": 1}, "Cost": {"rv": 26.702, "fv": "$27", "mi": 2}, "Last Month's Cost": {"rv": 26.702, "fv": "$27", "mi": 3}, "Last Month's Profit": {"rv": 9.298, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 5}, "Last Month's Revenue": {"rv": 36.0, "fv": "$36", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 13.351, "fv": "$13", "mi": 8}, "Last Quarter's Profit": {"rv": 4.649, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 10}, "Last Quarter's Revenue": {"rv": 18.0, "fv": "$18", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 13.351, "fv": "$13", "mi": 13}, "Last Year's Profit": {"rv": 4.649, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 6.598, "fv": "$7", "mi": 18}, "Profit Forecast": {"rv": 5.83276396, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.1981381381, "fv": "19.81%", "mi": 20}, "Revenue": {"rv": 33.3, "fv": "$33", "mi": 21}, "Revenue Forecast": {"rv": 36.3969, "fv": "$ 36", "mi": 22}, "Unit Cost": {"rv": 13.351, "fv": "$ 13", "mi": 23}, "Unit Price": {"rv": 18, "fv": "$ 18", "mi": 24}, "Unit Profit": {"rv": 4.649, "fv": "$ 5", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "500 Best Vacation Home Plans"}, "name": "500 Best Vacation Home Plans", "id": "h8;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2015"}, "name": "May 2015", "id": "h201505;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.7707129094, "fv": "77.07%", "mi": 0}, "% Change to Revenue": {"rv": 0.1111111111, "fv": "11.11%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.038, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 7.2, "fv": "$7", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.038, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 7.2, "fv": "$7", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.71231756, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2015"}, "name": "Jul 2015", "id": "h201507;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 18.486, "fv": "$18", "mi": 3}, "Last Month's Profit": {"rv": 5.514, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 24.0, "fv": "$24", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.038, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 7.2, "fv": "$7", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2015"}, "name": "Aug 2015", "id": "h201508;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 3.676, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.62732976, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 16.0, "fv": "$16", "mi": 21}, "Revenue Forecast": {"rv": 17.76, "fv": "$ 18", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.2176278564, "fv": "(21.76%)", "mi": 0}, "% Change to Revenue": {"rv": -0.05, "fv": "(5.00%)", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 3.676, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 16.0, "fv": "$16", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.038, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 7.2, "fv": "$7", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 3.676, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 16.0, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.876, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.64948624, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 20}, "Revenue": {"rv": 15.2, "fv": "$15", "mi": 21}, "Revenue Forecast": {"rv": 12.1296, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Blue & White Living"}, "name": "Blue & White Living", "id": "h9;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2015"}, "name": "Aug 2015", "id": "h201508;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 3.368, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 5}, "Last Month's Revenue": {"rv": 19.8, "fv": "$20", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 1.684, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 10}, "Last Quarter's Revenue": {"rv": 9.9, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.56729344, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.66, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2016"}, "name": "May 2016", "id": "h201605;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 3.6532066508, "fv": "365.32%", "mi": 0}, "% Change to Revenue": {"rv": 3.1111111111, "fv": "311.11%", "mi": 1}, "Cost": {"rv": 32.864, "fv": "$33", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 4.468, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2137799043, "fv": "21.38%", "mi": 5}, "Last Month's Revenue": {"rv": 20.9, "fv": "$21", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 1.684, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 15}, "Last Year's Revenue": {"rv": 9.9, "fv": "$10", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 7.836, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 8.05822896, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.1925307125, "fv": "19.25%", "mi": 20}, "Revenue": {"rv": 40.7, "fv": "$41", "mi": 21}, "Revenue Forecast": {"rv": 37.5661, "fv": "$ 38", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Ways of Seeing"}, "name": "Ways of Seeing", "id": "h10;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2015"}, "name": "Feb 2015", "id": "h201502;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.72230656, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.66, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2015"}, "name": "Apr 2015", "id": "h201504;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.3951149425, "fv": "(39.51%)", "mi": 0}, "% Change to Revenue": {"rv": -0.1, "fv": "(10.00%)", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.684, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.57144144, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 20}, "Revenue": {"rv": 9.9, "fv": "$10", "mi": 21}, "Revenue Forecast": {"rv": 8.4249, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2015"}, "name": "Jul 2015", "id": "h201507;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 5.568, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 22.0, "fv": "$22", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 1.684, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 10}, "Last Quarter's Revenue": {"rv": 9.9, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 0.584, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.0663636364, "fv": "6.64%", "mi": 15}, "Last Year's Revenue": {"rv": 8.8, "fv": "$9", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 0.584, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.55821056, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.0663636364, "fv": "6.64%", "mi": 20}, "Revenue": {"rv": 8.8, "fv": "$9", "mi": 21}, "Revenue Forecast": {"rv": 7.5856, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2015"}, "name": "Nov 2015", "id": "h201511;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.8146551724, "fv": "181.47%", "mi": 0}, "% Change to Revenue": {"rv": 2.7, "fv": "270.00%", "mi": 1}, "Cost": {"rv": 32.864, "fv": "$33", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 7.836, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 8.05822896, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.1925307125, "fv": "19.25%", "mi": 20}, "Revenue": {"rv": 40.7, "fv": "$41", "mi": 21}, "Revenue Forecast": {"rv": 37.5661, "fv": "$ 38", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2016"}, "name": "Feb 2016", "id": "h201602;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 5.568, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 22.0, "fv": "$22", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 32.864, "fv": "$33", "mi": 8}, "Last Quarter's Profit": {"rv": 7.836, "fv": "$8", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1925307125, "fv": "19.25%", "mi": 10}, "Last Quarter's Revenue": {"rv": 40.7, "fv": "$41", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.72230656, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.66, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2016"}, "name": "Jul 2016", "id": "h201607;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 4.7671232877, "fv": "476.71%", "mi": 0}, "% Change to Revenue": {"rv": 1.25, "fv": "125.00%", "mi": 1}, "Cost": {"rv": 16.432, "fv": "$16", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 1.684, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 10}, "Last Quarter's Revenue": {"rv": 9.9, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 0.584, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.0663636364, "fv": "6.64%", "mi": 15}, "Last Year's Revenue": {"rv": 8.8, "fv": "$9", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 3.368, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 3.08616576, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 20}, "Revenue": {"rv": 19.8, "fv": "$20", "mi": 21}, "Revenue Forecast": {"rv": 18.9684, "fv": "$ 19", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 16.432, "fv": "$16", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 3.368, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 5}, "Last Month's Revenue": {"rv": 19.8, "fv": "$20", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 16.432, "fv": "$16", "mi": 8}, "Last Quarter's Profit": {"rv": 4.468, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2137799043, "fv": "21.38%", "mi": 10}, "Last Quarter's Revenue": {"rv": 20.9, "fv": "$21", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 5.568, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 5.59962624, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 22.0, "fv": "$22", "mi": 21}, "Revenue Forecast": {"rv": 20.24, "fv": "$ 20", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2016"}, "name": "Nov 2016", "id": "h201611;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.4211332312, "fv": "42.11%", "mi": 0}, "% Change to Revenue": {"rv": 0.0810810811, "fv": "8.11%", "mi": 1}, "Cost": {"rv": 32.864, "fv": "$33", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 16.432, "fv": "$16", "mi": 8}, "Last Quarter's Profit": {"rv": 5.568, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 22.0, "fv": "$22", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 32.864, "fv": "$33", "mi": 13}, "Last Year's Profit": {"rv": 7.836, "fv": "$8", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1925307125, "fv": "19.25%", "mi": 15}, "Last Year's Revenue": {"rv": 40.7, "fv": "$41", "mi": 16}, "Last Year's Units Sold": {"rv": 4, "fv": "4", "mi": 17}, "Profit": {"rv": 11.136, "fv": "$11", "mi": 18}, "Profit Forecast": {"rv": 9.33909504, "fv": "$9", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 44.0, "fv": "$44", "mi": 21}, "Revenue Forecast": {"rv": 39.16, "fv": "$ 39", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Gonzo, the Art"}, "name": "Gonzo, the Art", "id": "h11;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 21.567, "fv": "$22", "mi": 2}, "Last Month's Cost": {"rv": 21.567, "fv": "$22", "mi": 3}, "Last Month's Profit": {"rv": 2.233, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0938235294, "fv": "9.38%", "mi": 5}, "Last Month's Revenue": {"rv": 23.8, "fv": "$24", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 21.567, "fv": "$22", "mi": 8}, "Last Quarter's Profit": {"rv": 6.433, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 28.0, "fv": "$28", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 43.134, "fv": "$43", "mi": 13}, "Last Year's Profit": {"rv": 12.866, "fv": "$13", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 56.0, "fv": "$56", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 6.433, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 5.69751511, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 28.0, "fv": "$28", "mi": 21}, "Revenue Forecast": {"rv": 24.08, "fv": "$ 24", "mi": 22}, "Unit Cost": {"rv": 21.567, "fv": "$ 22", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 6.433, "fv": "$ 6", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Cabin Fever : Rustic Style Comes Home"}, "name": "Cabin Fever : Rustic Style Comes Home", "id": "h12;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2015"}, "name": "Jul 2015", "id": "h201507;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.9352557127, "fv": "(93.53%)", "mi": 0}, "% Change to Revenue": {"rv": -0.6, "fv": "(60.00%)", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.038, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 7.2, "fv": "$7", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 3.676, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 16.0, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 0.238, "fv": "$0", "mi": 18}, "Profit Forecast": {"rv": 0.22666644, "fv": "$0", "mi": 19}, "Profit Margin": {"rv": 0.0371875, "fv": "3.72%", "mi": 20}, "Revenue": {"rv": 6.4, "fv": "$6", "mi": 21}, "Revenue Forecast": {"rv": 6.4896, "fv": "$ 6", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2016"}, "name": "Apr 2016", "id": "h201604;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.038, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 7.2, "fv": "$7", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.038, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.97532556, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 7.2, "fv": "$7", "mi": 21}, "Revenue Forecast": {"rv": 7.3584, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 2.876, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 5}, "Last Month's Revenue": {"rv": 15.2, "fv": "$15", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 6.96, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2016"}, "name": "Jul 2016", "id": "h201607;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 7.7226890756, "fv": "772.27%", "mi": 0}, "% Change to Revenue": {"rv": 1.25, "fv": "125.00%", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.038, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 7.2, "fv": "$7", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 0.238, "fv": "$0", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.0371875, "fv": "3.72%", "mi": 15}, "Last Year's Revenue": {"rv": 6.4, "fv": "$6", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.076, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.92910224, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 14.4, "fv": "$14", "mi": 21}, "Revenue Forecast": {"rv": 11.6064, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 2.076, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 14.4, "fv": "$14", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 2.876, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 10}, "Last Quarter's Revenue": {"rv": 15.2, "fv": "$15", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 2.076, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 14.4, "fv": "$14", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 3.676, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 16.0, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.71231756, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "American Bungalow Style"}, "name": "American Bungalow Style", "id": "h13;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2016"}, "name": "Jan 2016", "id": "h201601;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 41.08, "fv": "$41", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 7.46, "fv": "$7", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 28.0, "fv": "$28", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 7.46, "fv": "$7", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 28.0, "fv": "$28", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 7.46, "fv": "$7", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 28.0, "fv": "$28", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 14.92, "fv": "$15", "mi": 18}, "Profit Forecast": {"rv": 11.947936, "fv": "$12", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 56.0, "fv": "$56", "mi": 21}, "Revenue Forecast": {"rv": 43.12, "fv": "$ 43", "mi": 22}, "Unit Cost": {"rv": 20.54, "fv": "$ 21", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 7.46, "fv": "$ 7", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2016"}, "name": "Feb 2016", "id": "h201602;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 41.08, "fv": "$41", "mi": 2}, "Last Month's Cost": {"rv": 41.08, "fv": "$41", "mi": 3}, "Last Month's Profit": {"rv": 14.92, "fv": "$15", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 56.0, "fv": "$56", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 3.26, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1369747899, "fv": "13.70%", "mi": 10}, "Last Quarter's Revenue": {"rv": 23.8, "fv": "$24", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 41.08, "fv": "$41", "mi": 13}, "Last Year's Profit": {"rv": 14.92, "fv": "$15", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 56.0, "fv": "$56", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 14.92, "fv": "$15", "mi": 18}, "Profit Forecast": {"rv": 11.947936, "fv": "$12", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 56.0, "fv": "$56", "mi": 21}, "Revenue Forecast": {"rv": 63.28, "fv": "$ 63", "mi": 22}, "Unit Cost": {"rv": 20.54, "fv": "$ 21", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 7.46, "fv": "$ 7", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2016"}, "name": "Jul 2016", "id": "h201607;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.1995708155, "fv": "(19.96%)", "mi": 0}, "% Change to Revenue": {"rv": -0.4444444444, "fv": "(44.44%)", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 41.08, "fv": "$41", "mi": 3}, "Last Month's Profit": {"rv": 14.92, "fv": "$15", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 56.0, "fv": "$56", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 4.66, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1849206349, "fv": "18.49%", "mi": 10}, "Last Quarter's Revenue": {"rv": 25.2, "fv": "$25", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 41.08, "fv": "$41", "mi": 13}, "Last Year's Profit": {"rv": 9.32, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1849206349, "fv": "18.49%", "mi": 15}, "Last Year's Revenue": {"rv": 50.4, "fv": "$50", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 7.46, "fv": "$7", "mi": 18}, "Profit Forecast": {"rv": 7.643516, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 28.0, "fv": "$28", "mi": 21}, "Revenue Forecast": {"rv": 29.12, "fv": "$ 29", "mi": 22}, "Unit Cost": {"rv": 20.54, "fv": "$ 21", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 7.46, "fv": "$ 7", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 41.08, "fv": "$41", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 7.46, "fv": "$7", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 28.0, "fv": "$28", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 7.46, "fv": "$7", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 28.0, "fv": "$28", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 7.46, "fv": "$7", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 28.0, "fv": "$28", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 14.92, "fv": "$15", "mi": 18}, "Profit Forecast": {"rv": 11.947936, "fv": "$12", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 56.0, "fv": "$56", "mi": 21}, "Revenue Forecast": {"rv": 43.12, "fv": "$ 43", "mi": 22}, "Unit Cost": {"rv": 20.54, "fv": "$ 21", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 7.46, "fv": "$ 7", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Voyaging Under Power"}, "name": "Voyaging Under Power", "id": "h15;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 7.189, "fv": "$7", "mi": 2}, "Last Month's Cost": {"rv": 7.189, "fv": "$7", "mi": 3}, "Last Month's Profit": {"rv": 1.811, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2012222222, "fv": "20.12%", "mi": 5}, "Last Month's Revenue": {"rv": 9.0, "fv": "$9", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 7.189, "fv": "$7", "mi": 8}, "Last Quarter's Profit": {"rv": 1.811, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2012222222, "fv": "20.12%", "mi": 10}, "Last Quarter's Revenue": {"rv": 9.0, "fv": "$9", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 14.378, "fv": "$14", "mi": 13}, "Last Year's Profit": {"rv": 3.622, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2012222222, "fv": "20.12%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.811, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.68765279, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.2012222222, "fv": "20.12%", "mi": 20}, "Revenue": {"rv": 9.0, "fv": "$9", "mi": 21}, "Revenue Forecast": {"rv": 9.36, "fv": "$ 9", "mi": 22}, "Unit Cost": {"rv": 7.189, "fv": "$ 7", "mi": 23}, "Unit Price": {"rv": 9, "fv": "$ 9", "mi": 24}, "Unit Profit": {"rv": 1.811, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Working With Emotional Intelligence"}, "name": "Working With Emotional Intelligence", "id": "h16;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 2.6083521445, "fv": "260.84%", "mi": 0}, "% Change to Revenue": {"rv": 1.1764705882, "fv": "117.65%", "mi": 1}, "Cost": {"rv": 28.756, "fv": "$29", "mi": 2}, "Last Month's Cost": {"rv": 14.378, "fv": "$14", "mi": 3}, "Last Month's Profit": {"rv": 4.622, "fv": "$5", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2432631579, "fv": "24.33%", "mi": 5}, "Last Month's Revenue": {"rv": 19.0, "fv": "$19", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 14.378, "fv": "$14", "mi": 8}, "Last Quarter's Profit": {"rv": 2.722, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1591812865, "fv": "15.92%", "mi": 10}, "Last Quarter's Revenue": {"rv": 17.1, "fv": "$17", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 14.378, "fv": "$14", "mi": 13}, "Last Year's Profit": {"rv": 1.772, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1097213622, "fv": "10.97%", "mi": 15}, "Last Year's Revenue": {"rv": 16.15, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 6.394, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 6.48313236, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.1819061166, "fv": "18.19%", "mi": 20}, "Revenue": {"rv": 35.15, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.715775, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 14.378, "fv": "$ 14", "mi": 23}, "Unit Price": {"rv": 19, "fv": "$ 19", "mi": 24}, "Unit Profit": {"rv": 4.622, "fv": "$ 5", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Attention to Detail"}, "name": "Attention to Detail", "id": "h17;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2015"}, "name": "Apr 2015", "id": "h201504;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.3769024172, "fv": "(37.69%)", "mi": 0}, "% Change to Revenue": {"rv": -0.4736842105, "fv": "(47.37%)", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 16.432, "fv": "$16", "mi": 8}, "Last Quarter's Profit": {"rv": 5.568, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 22.0, "fv": "$22", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 16.432, "fv": "$16", "mi": 13}, "Last Year's Profit": {"rv": 4.468, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2137799043, "fv": "21.38%", "mi": 15}, "Last Year's Revenue": {"rv": 20.9, "fv": "$21", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.56729344, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 9.24, "fv": "$ 9", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 24.648, "fv": "$25", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 5.568, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 22.0, "fv": "$22", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 24.648, "fv": "$25", "mi": 13}, "Last Year's Profit": {"rv": 8.352, "fv": "$8", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 33.0, "fv": "$33", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 8.352, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 8.63195904, "fv": "$9", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 33.0, "fv": "$33", "mi": 21}, "Revenue Forecast": {"rv": 35.97, "fv": "$ 36", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Mar 2016"}, "name": "Mar 2016", "id": "h201603;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.56729344, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.66, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2016"}, "name": "May 2016", "id": "h201605;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.3951149425, "fv": "(39.51%)", "mi": 0}, "% Change to Revenue": {"rv": -0.1, "fv": "(10.00%)", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 1.684, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 5}, "Last Month's Revenue": {"rv": 9.9, "fv": "$10", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.684, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.57144144, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 20}, "Revenue": {"rv": 9.9, "fv": "$10", "mi": 21}, "Revenue Forecast": {"rv": 10.3851, "fv": "$ 10", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The 48 Laws of Power"}, "name": "The 48 Laws of Power", "id": "h18;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 26.702, "fv": "$27", "mi": 2}, "Last Month's Cost": {"rv": 13.351, "fv": "$13", "mi": 3}, "Last Month's Profit": {"rv": 1.949, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1273856209, "fv": "12.74%", "mi": 5}, "Last Month's Revenue": {"rv": 15.3, "fv": "$15", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 13.351, "fv": "$13", "mi": 8}, "Last Quarter's Profit": {"rv": 2.849, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1758641975, "fv": "17.59%", "mi": 10}, "Last Quarter's Revenue": {"rv": 16.2, "fv": "$16", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 26.702, "fv": "$27", "mi": 13}, "Last Year's Profit": {"rv": 3.898, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1273856209, "fv": "12.74%", "mi": 15}, "Last Year's Revenue": {"rv": 30.6, "fv": "$31", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 3.898, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.85504404, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1273856209, "fv": "12.74%", "mi": 20}, "Revenue": {"rv": 30.6, "fv": "$31", "mi": 21}, "Revenue Forecast": {"rv": 32.6196, "fv": "$ 33", "mi": 22}, "Unit Cost": {"rv": 13.351, "fv": "$ 13", "mi": 23}, "Unit Price": {"rv": 18, "fv": "$ 18", "mi": 24}, "Unit Profit": {"rv": 4.649, "fv": "$ 5", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Don't Step in the Leadership"}, "name": "Don't Step in the Leadership", "id": "h19;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2016"}, "name": "Jan 2016", "id": "h201601;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 3.676, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 16.0, "fv": "$16", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2016"}, "name": "Apr 2016", "id": "h201604;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Topgrading"}, "name": "Topgrading", "id": "h20;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2015"}, "name": "Aug 2015", "id": "h201508;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Prentice Hall"}, "name": "Prentice Hall", "id": "h105;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 13.351, "fv": "$13", "mi": 2}, "Last Month's Cost": {"rv": 13.351, "fv": "$13", "mi": 3}, "Last Month's Profit": {"rv": 1.849, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1216447368, "fv": "12.16%", "mi": 5}, "Last Month's Revenue": {"rv": 15.2, "fv": "$15", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 26.702, "fv": "$27", "mi": 8}, "Last Quarter's Profit": {"rv": 9.398, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.26033241, "fv": "26.03%", "mi": 10}, "Last Quarter's Revenue": {"rv": 36.1, "fv": "$36", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 26.702, "fv": "$27", "mi": 13}, "Last Year's Profit": {"rv": 11.298, "fv": "$11", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2973157895, "fv": "29.73%", "mi": 15}, "Last Year's Revenue": {"rv": 38.0, "fv": "$38", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 5.649, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 5.04743799, "fv": "$5", "mi": 19}, "Profit Margin": {"rv": 0.2973157895, "fv": "29.73%", "mi": 20}, "Revenue": {"rv": 19.0, "fv": "$19", "mi": 21}, "Revenue Forecast": {"rv": 18.05, "fv": "$ 18", "mi": 22}, "Unit Cost": {"rv": 13.351, "fv": "$ 13", "mi": 23}, "Unit Price": {"rv": 19, "fv": "$ 19", "mi": 24}, "Unit Profit": {"rv": 5.649, "fv": "$ 6", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Career Intelligence"}, "name": "Career Intelligence", "id": "h21;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2015"}, "name": "Jul 2015", "id": "h201507;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.4761904762, "fv": "(47.62%)", "mi": 0}, "% Change to Revenue": {"rv": -0.1, "fv": "(10.00%)", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 2.73, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 13.0, "fv": "$13", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 30.81, "fv": "$31", "mi": 8}, "Last Quarter's Profit": {"rv": 8.19, "fv": "$8", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 39.0, "fv": "$39", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 5.46, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 26.0, "fv": "$26", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.86, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.635204, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 20}, "Revenue": {"rv": 23.4, "fv": "$23", "mi": 21}, "Revenue Forecast": {"rv": 21.2004, "fv": "$ 21", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 5.46, "fv": "$5", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 26.0, "fv": "$26", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 2.86, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 10}, "Last Quarter's Revenue": {"rv": 23.4, "fv": "$23", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 5.46, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 26.0, "fv": "$26", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.73, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.518971, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 13.0, "fv": "$13", "mi": 21}, "Revenue Forecast": {"rv": 10.66, "fv": "$ 11", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.5, "fv": "50.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.5, "fv": "50.00%", "mi": 1}, "Cost": {"rv": 30.81, "fv": "$31", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 2.73, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 13.0, "fv": "$13", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 5.46, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 26.0, "fv": "$26", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 5.46, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 26.0, "fv": "$26", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 8.19, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 8.451261, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 39.0, "fv": "$39", "mi": 21}, "Revenue Forecast": {"rv": 36.66, "fv": "$ 37", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Cubicle Warfare"}, "name": "Cubicle Warfare", "id": "h22;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2015"}, "name": "Jan 2015", "id": "h201501;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 2.73, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 13.0, "fv": "$13", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 5.46, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 26.0, "fv": "$26", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 5.46, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 26.0, "fv": "$26", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.73, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.518971, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 13.0, "fv": "$13", "mi": 21}, "Revenue Forecast": {"rv": 10.66, "fv": "$ 11", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2015"}, "name": "May 2015", "id": "h201505;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.9090909091, "fv": "190.91%", "mi": 0}, "% Change to Revenue": {"rv": 1.1111111111, "fv": "111.11%", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 2.86, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 5}, "Last Month's Revenue": {"rv": 23.4, "fv": "$23", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 30.81, "fv": "$31", "mi": 8}, "Last Quarter's Profit": {"rv": 8.19, "fv": "$8", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 39.0, "fv": "$39", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 1.43, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 15}, "Last Year's Revenue": {"rv": 11.7, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 4.16, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 4.125056, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 20}, "Revenue": {"rv": 24.7, "fv": "$25", "mi": 21}, "Revenue Forecast": {"rv": 24.8729, "fv": "$ 25", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2015"}, "name": "Aug 2015", "id": "h201508;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 2.73, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 13.0, "fv": "$13", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 4.16, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 10}, "Last Quarter's Revenue": {"rv": 24.7, "fv": "$25", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 4.16, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 15}, "Last Year's Revenue": {"rv": 24.7, "fv": "$25", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 4.16, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.778944, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 20}, "Revenue": {"rv": 24.7, "fv": "$25", "mi": 21}, "Revenue Forecast": {"rv": 22.0571, "fv": "$ 22", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2015"}, "name": "Sep 2015", "id": "h201509;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.9545454545, "fv": "95.45%", "mi": 0}, "% Change to Revenue": {"rv": 0.5555555556, "fv": "55.56%", "mi": 1}, "Cost": {"rv": 30.81, "fv": "$31", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 4.16, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 5}, "Last Month's Revenue": {"rv": 24.7, "fv": "$25", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 5.46, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 26.0, "fv": "$26", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 2.86, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 15}, "Last Year's Revenue": {"rv": 23.4, "fv": "$23", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 5.59, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 4.998019, "fv": "$5", "mi": 19}, "Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 20}, "Revenue": {"rv": 36.4, "fv": "$36", "mi": 21}, "Revenue Forecast": {"rv": 28.2464, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 30.81, "fv": "$31", "mi": 3}, "Last Month's Profit": {"rv": 5.59, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 5}, "Last Month's Revenue": {"rv": 36.4, "fv": "$36", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 10.27, "fv": "$10", "mi": 8}, "Last Quarter's Profit": {"rv": 2.73, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 13.0, "fv": "$13", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 5.46, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 26.0, "fv": "$26", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.73, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.668029, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 13.0, "fv": "$13", "mi": 21}, "Revenue Forecast": {"rv": 10.66, "fv": "$ 11", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2015"}, "name": "Dec 2015", "id": "h201512;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 3.51, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1459459459, "fv": "14.59%", "mi": 5}, "Last Month's Revenue": {"rv": 24.05, "fv": "$24", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 30.81, "fv": "$31", "mi": 8}, "Last Quarter's Profit": {"rv": 5.59, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 10}, "Last Quarter's Revenue": {"rv": 36.4, "fv": "$36", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 2.73, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 13.0, "fv": "$13", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.73, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.668029, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 13.0, "fv": "$13", "mi": 21}, "Revenue Forecast": {"rv": 14.04, "fv": "$ 14", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.34375, "fv": "(34.38%)", "mi": 0}, "% Change to Revenue": {"rv": -0.4736842105, "fv": "(47.37%)", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 0.13, "fv": "$0", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0125, "fv": "1.25%", "mi": 5}, "Last Month's Revenue": {"rv": 10.4, "fv": "$10", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 10.27, "fv": "$10", "mi": 8}, "Last Quarter's Profit": {"rv": 1.43, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.7, "fv": "$12", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 4.16, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 15}, "Last Year's Revenue": {"rv": 24.7, "fv": "$25", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.73, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.668029, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 13.0, "fv": "$13", "mi": 21}, "Revenue Forecast": {"rv": 10.66, "fv": "$ 11", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.4651162791, "fv": "46.51%", "mi": 0}, "% Change to Revenue": {"rv": 0.0714285714, "fv": "7.14%", "mi": 1}, "Cost": {"rv": 30.81, "fv": "$31", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 2.73, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 13.0, "fv": "$13", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 41.08, "fv": "$41", "mi": 8}, "Last Quarter's Profit": {"rv": 10.92, "fv": "$11", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 52.0, "fv": "$52", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 30.81, "fv": "$31", "mi": 13}, "Last Year's Profit": {"rv": 5.59, "fv": "$6", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 15}, "Last Year's Revenue": {"rv": 36.4, "fv": "$36", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 8.19, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 7.109739, "fv": "$7", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 39.0, "fv": "$39", "mi": 21}, "Revenue Forecast": {"rv": 36.66, "fv": "$ 37", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 2.0, "fv": "200.00%", "mi": 0}, "% Change to Revenue": {"rv": 2.0, "fv": "200.00%", "mi": 1}, "Cost": {"rv": 30.81, "fv": "$31", "mi": 2}, "Last Month's Cost": {"rv": 30.81, "fv": "$31", "mi": 3}, "Last Month's Profit": {"rv": 8.19, "fv": "$8", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 39.0, "fv": "$39", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 10.27, "fv": "$10", "mi": 8}, "Last Quarter's Profit": {"rv": 0.13, "fv": "$0", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.0125, "fv": "1.25%", "mi": 10}, "Last Quarter's Revenue": {"rv": 10.4, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 2.73, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 13.0, "fv": "$13", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 8.19, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 8.451261, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 39.0, "fv": "$39", "mi": 21}, "Revenue Forecast": {"rv": 36.66, "fv": "$ 37", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2016"}, "name": "Nov 2016", "id": "h201611;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5555555556, "fv": "(55.56%)", "mi": 0}, "% Change to Revenue": {"rv": -0.0810810811, "fv": "(8.11%)", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 30.81, "fv": "$31", "mi": 3}, "Last Month's Profit": {"rv": 8.19, "fv": "$8", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 39.0, "fv": "$39", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 10.27, "fv": "$10", "mi": 8}, "Last Quarter's Profit": {"rv": 2.73, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 13.0, "fv": "$13", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 3.51, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1459459459, "fv": "14.59%", "mi": 15}, "Last Year's Revenue": {"rv": 24.05, "fv": "$24", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.56, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.506336, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.0705882353, "fv": "7.06%", "mi": 20}, "Revenue": {"rv": 22.1, "fv": "$22", "mi": 21}, "Revenue Forecast": {"rv": 21.6801, "fv": "$ 22", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.5714285714, "fv": "57.14%", "mi": 0}, "% Change to Revenue": {"rv": 1.7, "fv": "170.00%", "mi": 1}, "Cost": {"rv": 30.81, "fv": "$31", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 1.56, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0705882353, "fv": "7.06%", "mi": 5}, "Last Month's Revenue": {"rv": 22.1, "fv": "$22", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 30.81, "fv": "$31", "mi": 8}, "Last Quarter's Profit": {"rv": 8.19, "fv": "$8", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 39.0, "fv": "$39", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 2.73, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 13.0, "fv": "$13", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 4.29, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 4.259541, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 20}, "Revenue": {"rv": 35.1, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.6939, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The Power to Get in"}, "name": "The Power to Get in", "id": "h24;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2015"}, "name": "Jan 2015", "id": "h201501;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 3.0, "fv": "300.00%", "mi": 0}, "% Change to Revenue": {"rv": 3.0, "fv": "300.00%", "mi": 1}, "Cost": {"rv": 36.972, "fv": "$37", "mi": 2}, "Last Month's Cost": {"rv": 27.729, "fv": "$28", "mi": 3}, "Last Month's Profit": {"rv": 4.671, "fv": "$5", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 32.4, "fv": "$32", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 9.243, "fv": "$9", "mi": 8}, "Last Quarter's Profit": {"rv": 2.757, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 12.0, "fv": "$12", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 9.243, "fv": "$9", "mi": 13}, "Last Year's Profit": {"rv": 2.757, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 11.028, "fv": "$11", "mi": 18}, "Profit Forecast": {"rv": 9.26043216, "fv": "$9", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 48.0, "fv": "$48", "mi": 21}, "Revenue Forecast": {"rv": 50.4, "fv": "$ 50", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2015"}, "name": "Feb 2015", "id": "h201502;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 18.486, "fv": "$18", "mi": 2}, "Last Month's Cost": {"rv": 36.972, "fv": "$37", "mi": 3}, "Last Month's Profit": {"rv": 11.028, "fv": "$11", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 48.0, "fv": "$48", "mi": 6}, "Last Month's Units Sold": {"rv": 4, "fv": "4", "mi": 7}, "Last Quarter's Cost": {"rv": 18.486, "fv": "$18", "mi": 8}, "Last Quarter's Profit": {"rv": 5.514, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 24.0, "fv": "$24", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 9.243, "fv": "$9", "mi": 13}, "Last Year's Profit": {"rv": 2.757, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 5.514, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 5.54234196, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 24.0, "fv": "$24", "mi": 21}, "Revenue Forecast": {"rv": 21.6, "fv": "$ 22", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2015"}, "name": "Apr 2015", "id": "h201504;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 9.243, "fv": "$9", "mi": 2}, "Last Month's Cost": {"rv": 18.486, "fv": "$18", "mi": 3}, "Last Month's Profit": {"rv": 5.514, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 24.0, "fv": "$24", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 36.972, "fv": "$37", "mi": 8}, "Last Quarter's Profit": {"rv": 11.028, "fv": "$11", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 48.0, "fv": "$48", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 9.243, "fv": "$9", "mi": 13}, "Last Year's Profit": {"rv": 2.757, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.757, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.69516049, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 12.0, "fv": "$12", "mi": 21}, "Revenue Forecast": {"rv": 12.84, "fv": "$ 13", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Don't Sweat the Small Stuff"}, "name": "Don't Sweat the Small Stuff", "id": "h25;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 7.189, "fv": "$7", "mi": 2}, "Last Month's Cost": {"rv": 7.189, "fv": "$7", "mi": 3}, "Last Month's Profit": {"rv": 2.811, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 5}, "Last Month's Revenue": {"rv": 10.0, "fv": "$10", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 7.189, "fv": "$7", "mi": 8}, "Last Quarter's Profit": {"rv": 2.811, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 10}, "Last Quarter's Revenue": {"rv": 10.0, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 7.189, "fv": "$7", "mi": 13}, "Last Year's Profit": {"rv": 2.811, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 15}, "Last Year's Revenue": {"rv": 10.0, "fv": "$10", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.811, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.74946721, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 20}, "Revenue": {"rv": 10.0, "fv": "$10", "mi": 21}, "Revenue Forecast": {"rv": 8.5, "fv": "$ 9", "mi": 22}, "Unit Cost": {"rv": 7.189, "fv": "$ 7", "mi": 23}, "Unit Price": {"rv": 10, "fv": "$ 10", "mi": 24}, "Unit Profit": {"rv": 2.811, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2015"}, "name": "Nov 2015", "id": "h201511;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.3991462113, "fv": "139.91%", "mi": 0}, "% Change to Revenue": {"rv": 2.55, "fv": "255.00%", "mi": 1}, "Cost": {"rv": 28.756, "fv": "$29", "mi": 2}, "Last Month's Cost": {"rv": 7.189, "fv": "$7", "mi": 3}, "Last Month's Profit": {"rv": 2.811, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 5}, "Last Month's Revenue": {"rv": 10.0, "fv": "$10", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 7.189, "fv": "$7", "mi": 8}, "Last Quarter's Profit": {"rv": 2.811, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 10}, "Last Quarter's Revenue": {"rv": 10.0, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 7.189, "fv": "$7", "mi": 13}, "Last Year's Profit": {"rv": 2.811, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 15}, "Last Year's Revenue": {"rv": 10.0, "fv": "$10", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 6.744, "fv": "$7", "mi": 18}, "Profit Forecast": {"rv": 6.86161536, "fv": "$7", "mi": 19}, "Profit Margin": {"rv": 0.189971831, "fv": "19.00%", "mi": 20}, "Revenue": {"rv": 35.5, "fv": "$36", "mi": 21}, "Revenue Forecast": {"rv": 39.5825, "fv": "$ 40", "mi": 22}, "Unit Cost": {"rv": 7.189, "fv": "$ 7", "mi": 23}, "Unit Price": {"rv": 10, "fv": "$ 10", "mi": 24}, "Unit Profit": {"rv": 2.811, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2016"}, "name": "May 2016", "id": "h201605;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 7.189, "fv": "$7", "mi": 2}, "Last Month's Cost": {"rv": 14.378, "fv": "$14", "mi": 3}, "Last Month's Profit": {"rv": 3.622, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2012222222, "fv": "20.12%", "mi": 5}, "Last Month's Revenue": {"rv": 18.0, "fv": "$18", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 7.189, "fv": "$7", "mi": 8}, "Last Quarter's Profit": {"rv": 2.811, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 10}, "Last Quarter's Revenue": {"rv": 10.0, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 7.189, "fv": "$7", "mi": 13}, "Last Year's Profit": {"rv": 2.811, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 15}, "Last Year's Revenue": {"rv": 10.0, "fv": "$10", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.811, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.59143279, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 20}, "Revenue": {"rv": 10.0, "fv": "$10", "mi": 21}, "Revenue Forecast": {"rv": 10.5, "fv": "$ 11", "mi": 22}, "Unit Cost": {"rv": 7.189, "fv": "$ 7", "mi": 23}, "Unit Price": {"rv": 10, "fv": "$ 10", "mi": 24}, "Unit Profit": {"rv": 2.811, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Jump Start Your Brain"}, "name": "Jump Start Your Brain", "id": "h26;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 3.784, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.3153333333, "fv": "31.53%", "mi": 5}, "Last Month's Revenue": {"rv": 12.0, "fv": "$12", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 3.784, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.3153333333, "fv": "31.53%", "mi": 10}, "Last Quarter's Revenue": {"rv": 12.0, "fv": "$12", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 3.784, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.3153333333, "fv": "31.53%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 3.784, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.73798656, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.3153333333, "fv": "31.53%", "mi": 20}, "Revenue": {"rv": 12.0, "fv": "$12", "mi": 21}, "Revenue Forecast": {"rv": 12.84, "fv": "$ 13", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 3.784, "fv": "$ 4", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Smart Choices"}, "name": "Smart Choices", "id": "h27;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2016"}, "name": "Jan 2016", "id": "h201601;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 3.676, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 16.0, "fv": "$16", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 24.648, "fv": "$25", "mi": 8}, "Last Quarter's Profit": {"rv": 7.352, "fv": "$7", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 32.0, "fv": "$32", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 3.676, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 16.0, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 3.676, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.62732976, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 16.0, "fv": "$16", "mi": 21}, "Revenue Forecast": {"rv": 12.64, "fv": "$ 13", "mi": 22}, "Unit Cost": {"rv": 12.324, "fv": "$ 12", "mi": 23}, "Unit Price": {"rv": 16, "fv": "$ 16", "mi": 24}, "Unit Profit": {"rv": 3.676, "fv": "$ 4", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2016"}, "name": "Feb 2016", "id": "h201602;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 0}, "% Change to Revenue": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 3.676, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 16.0, "fv": "$16", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 3.676, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 16.0, "fv": "$16", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 36.972, "fv": "$37", "mi": 13}, "Last Year's Profit": {"rv": 11.028, "fv": "$11", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 48.0, "fv": "$48", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 3.676, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.35707024, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 16.0, "fv": "$16", "mi": 21}, "Revenue Forecast": {"rv": 12.64, "fv": "$ 13", "mi": 22}, "Unit Cost": {"rv": 12.324, "fv": "$ 12", "mi": 23}, "Unit Price": {"rv": 16, "fv": "$ 16", "mi": 24}, "Unit Profit": {"rv": 3.676, "fv": "$ 4", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The Joy of Work"}, "name": "The Joy of Work", "id": "h29;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 1.276, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0938235294, "fv": "9.38%", "mi": 5}, "Last Month's Revenue": {"rv": 13.6, "fv": "$14", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 3.676, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 16.0, "fv": "$16", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 24.648, "fv": "$25", "mi": 13}, "Last Year's Profit": {"rv": 2.552, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.0938235294, "fv": "9.38%", "mi": 15}, "Last Year's Revenue": {"rv": 27.2, "fv": "$27", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.276, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 1.22848176, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.0938235294, "fv": "9.38%", "mi": 20}, "Revenue": {"rv": 13.6, "fv": "$14", "mi": 21}, "Revenue Forecast": {"rv": 14.7696, "fv": "$ 15", "mi": 22}, "Unit Cost": {"rv": 12.324, "fv": "$ 12", "mi": 23}, "Unit Price": {"rv": 16, "fv": "$ 16", "mi": 24}, "Unit Profit": {"rv": 3.676, "fv": "$ 4", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Jobshift"}, "name": "Jobshift", "id": "h30;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 18.486, "fv": "$18", "mi": 2}, "Last Month's Cost": {"rv": 9.243, "fv": "$9", "mi": 3}, "Last Month's Profit": {"rv": 2.757, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 12.0, "fv": "$12", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 18.486, "fv": "$18", "mi": 8}, "Last Quarter's Profit": {"rv": 5.514, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 24.0, "fv": "$24", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 18.486, "fv": "$18", "mi": 13}, "Last Year's Profit": {"rv": 5.514, "fv": "$6", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 24.0, "fv": "$24", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 5.514, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 5.54234196, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 24.0, "fv": "$24", "mi": 21}, "Revenue Forecast": {"rv": 21.6, "fv": "$ 22", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.5647442873, "fv": "56.47%", "mi": 0}, "% Change to Revenue": {"rv": 0.9, "fv": "90.00%", "mi": 1}, "Cost": {"rv": 18.486, "fv": "$18", "mi": 2}, "Last Month's Cost": {"rv": 9.243, "fv": "$9", "mi": 3}, "Last Month's Profit": {"rv": 2.757, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 12.0, "fv": "$12", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 18.486, "fv": "$18", "mi": 8}, "Last Quarter's Profit": {"rv": 5.514, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 24.0, "fv": "$24", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 9.243, "fv": "$9", "mi": 13}, "Last Year's Profit": {"rv": 2.757, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 4.314, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 4.28440596, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 20}, "Revenue": {"rv": 22.8, "fv": "$23", "mi": 21}, "Revenue Forecast": {"rv": 22.5264, "fv": "$ 23", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 18.486, "fv": "$18", "mi": 2}, "Last Month's Cost": {"rv": 18.486, "fv": "$18", "mi": 3}, "Last Month's Profit": {"rv": 4.314, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 5}, "Last Month's Revenue": {"rv": 22.8, "fv": "$23", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 18.486, "fv": "$18", "mi": 8}, "Last Quarter's Profit": {"rv": 3.114, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 21.6, "fv": "$22", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 9.243, "fv": "$9", "mi": 13}, "Last Year's Profit": {"rv": 2.757, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 5.514, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 4.93425804, "fv": "$5", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 24.0, "fv": "$24", "mi": 21}, "Revenue Forecast": {"rv": 21.6, "fv": "$ 22", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 0}, "% Change to Revenue": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 1}, "Cost": {"rv": 9.243, "fv": "$9", "mi": 2}, "Last Month's Cost": {"rv": 55.458, "fv": "$55", "mi": 3}, "Last Month's Profit": {"rv": 14.742, "fv": "$15", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 70.2, "fv": "$70", "mi": 6}, "Last Month's Units Sold": {"rv": 6, "fv": "6", "mi": 7}, "Last Quarter's Cost": {"rv": 18.486, "fv": "$18", "mi": 8}, "Last Quarter's Profit": {"rv": 4.314, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 10}, "Last Quarter's Revenue": {"rv": 22.8, "fv": "$23", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 27.729, "fv": "$28", "mi": 13}, "Last Year's Profit": {"rv": 8.271, "fv": "$8", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 36.0, "fv": "$36", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 2.757, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.69516049, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 12.0, "fv": "$12", "mi": 21}, "Revenue Forecast": {"rv": 9.96, "fv": "$ 10", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The Prince"}, "name": "The Prince", "id": "h31;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2015"}, "name": "May 2015", "id": "h201505;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 2.476, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1672972973, "fv": "16.73%", "mi": 5}, "Last Month's Revenue": {"rv": 14.8, "fv": "$15", "mi": 6}, "Last Month's Units Sold": {"rv": 4, "fv": "4", "mi": 7}, "Last Quarter's Cost": {"rv": 3.081, "fv": "$3", "mi": 8}, "Last Quarter's Profit": {"rv": 0.919, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 4.0, "fv": "$4", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.038, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 7.2, "fv": "$7", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.038, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.99687444, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 7.2, "fv": "$7", "mi": 21}, "Revenue Forecast": {"rv": 7.3584, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2015"}, "name": "Jun 2015", "id": "h201506;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.038, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 7.2, "fv": "$7", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 3.081, "fv": "$3", "mi": 13}, "Last Year's Profit": {"rv": 0.919, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 4.0, "fv": "$4", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.71231756, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2015"}, "name": "Jul 2015", "id": "h201507;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.7707129094, "fv": "177.07%", "mi": 0}, "% Change to Revenue": {"rv": 1.1111111111, "fv": "111.11%", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 2.476, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1672972973, "fv": "16.73%", "mi": 10}, "Last Quarter's Revenue": {"rv": 14.8, "fv": "$15", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.038, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 7.2, "fv": "$7", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.876, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.64948624, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 20}, "Revenue": {"rv": 15.2, "fv": "$15", "mi": 21}, "Revenue Forecast": {"rv": 12.1296, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 3.081, "fv": "$3", "mi": 3}, "Last Month's Profit": {"rv": 0.519, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 3.6, "fv": "$4", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 2.876, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 10}, "Last Quarter's Revenue": {"rv": 15.2, "fv": "$15", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 3.081, "fv": "$3", "mi": 13}, "Last Year's Profit": {"rv": 0.919, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 4.0, "fv": "$4", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.71231756, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2015"}, "name": "Dec 2015", "id": "h201512;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 3.081, "fv": "$3", "mi": 3}, "Last Month's Profit": {"rv": 0.919, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 4.0, "fv": "$4", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 3.081, "fv": "$3", "mi": 8}, "Last Quarter's Profit": {"rv": 0.519, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 3.6, "fv": "$4", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2016"}, "name": "Feb 2016", "id": "h201602;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 3.081, "fv": "$3", "mi": 3}, "Last Month's Profit": {"rv": 0.919, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 4.0, "fv": "$4", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 3.081, "fv": "$3", "mi": 8}, "Last Quarter's Profit": {"rv": 0.919, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 4.0, "fv": "$4", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 3.081, "fv": "$3", "mi": 13}, "Last Year's Profit": {"rv": 0.919, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 4.0, "fv": "$4", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 6.96, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Mar 2016"}, "name": "Mar 2016", "id": "h201603;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 3.081, "fv": "$3", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 0.919, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.88149561, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 4.0, "fv": "$4", "mi": 21}, "Revenue Forecast": {"rv": 3.64, "fv": "$ 4", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2016"}, "name": "Apr 2016", "id": "h201604;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.2096122779, "fv": "(20.96%)", "mi": 0}, "% Change to Revenue": {"rv": -0.2432432432, "fv": "(24.32%)", "mi": 1}, "Cost": {"rv": 9.243, "fv": "$9", "mi": 2}, "Last Month's Cost": {"rv": 3.081, "fv": "$3", "mi": 3}, "Last Month's Profit": {"rv": 0.919, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 4.0, "fv": "$4", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 3.081, "fv": "$3", "mi": 8}, "Last Quarter's Profit": {"rv": 0.919, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 4.0, "fv": "$4", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 2.476, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1672972973, "fv": "16.73%", "mi": 15}, "Last Year's Revenue": {"rv": 14.8, "fv": "$15", "mi": 16}, "Last Year's Units Sold": {"rv": 4, "fv": "4", "mi": 17}, "Profit": {"rv": 1.957, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.89744849, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.1747321429, "fv": "17.47%", "mi": 20}, "Revenue": {"rv": 11.2, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.8944, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2016"}, "name": "May 2016", "id": "h201605;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.1146435453, "fv": "(11.46%)", "mi": 0}, "% Change to Revenue": {"rv": -0.4444444444, "fv": "(44.44%)", "mi": 1}, "Cost": {"rv": 3.081, "fv": "$3", "mi": 2}, "Last Month's Cost": {"rv": 9.243, "fv": "$9", "mi": 3}, "Last Month's Profit": {"rv": 1.957, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1747321429, "fv": "17.47%", "mi": 5}, "Last Month's Revenue": {"rv": 11.2, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.038, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 7.2, "fv": "$7", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 0.919, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.88149561, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 4.0, "fv": "$4", "mi": 21}, "Revenue Forecast": {"rv": 3.96, "fv": "$ 4", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 3.081, "fv": "$3", "mi": 3}, "Last Month's Profit": {"rv": 0.919, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 4.0, "fv": "$4", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 3.081, "fv": "$3", "mi": 8}, "Last Quarter's Profit": {"rv": 0.919, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 4.0, "fv": "$4", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.71231756, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 6.96, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 2.5414258189, "fv": "254.14%", "mi": 0}, "% Change to Revenue": {"rv": 1.2222222222, "fv": "122.22%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 9.243, "fv": "$9", "mi": 3}, "Last Month's Profit": {"rv": 2.757, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 12.0, "fv": "$12", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 3.081, "fv": "$3", "mi": 13}, "Last Year's Profit": {"rv": 0.519, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 3.6, "fv": "$4", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 6.96, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2016"}, "name": "Nov 2016", "id": "h201611;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 2.0413492927, "fv": "204.13%", "mi": 0}, "% Change to Revenue": {"rv": 3.55, "fv": "355.00%", "mi": 1}, "Cost": {"rv": 15.405, "fv": "$15", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 3.676, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 16.0, "fv": "$16", "mi": 6}, "Last Month's Units Sold": {"rv": 4, "fv": "4", "mi": 7}, "Last Quarter's Cost": {"rv": 9.243, "fv": "$9", "mi": 8}, "Last Quarter's Profit": {"rv": 2.757, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 12.0, "fv": "$12", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 3.081, "fv": "$3", "mi": 13}, "Last Year's Profit": {"rv": 0.919, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 4.0, "fv": "$4", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.795, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.57712975, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 20}, "Revenue": {"rv": 18.2, "fv": "$18", "mi": 21}, "Revenue Forecast": {"rv": 13.9776, "fv": "$ 14", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 5, "fv": "5", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.8264417845, "fv": "(82.64%)", "mi": 0}, "% Change to Revenue": {"rv": -0.575, "fv": "(57.50%)", "mi": 1}, "Cost": {"rv": 3.081, "fv": "$3", "mi": 2}, "Last Month's Cost": {"rv": 15.405, "fv": "$15", "mi": 3}, "Last Month's Profit": {"rv": 2.795, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 5}, "Last Month's Revenue": {"rv": 18.2, "fv": "$18", "mi": 6}, "Last Month's Units Sold": {"rv": 5, "fv": "5", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 0.319, "fv": "$0", "mi": 18}, "Profit Forecast": {"rv": 0.30406761, "fv": "$0", "mi": 19}, "Profit Margin": {"rv": 0.0938235294, "fv": "9.38%", "mi": 20}, "Revenue": {"rv": 3.4, "fv": "$3", "mi": 21}, "Revenue Forecast": {"rv": 3.3456, "fv": "$ 3", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The Fountainhead"}, "name": "The Fountainhead", "id": "h32;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2015"}, "name": "Jan 2015", "id": "h201501;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Perigee"}, "name": "Perigee", "id": "h104;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 6.96, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2015"}, "name": "Feb 2015", "id": "h201502;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Perigee"}, "name": "Perigee", "id": "h104;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 3.676, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 16.0, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 3.676, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.62732976, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 16.0, "fv": "$16", "mi": 21}, "Revenue Forecast": {"rv": 12.64, "fv": "$ 13", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}]}]}]}]}]}]}}}} \ No newline at end of file +{"id": "6137E0964C68D84F107816AA694C2209", "name": "Intelligent Cube - Time, Products, Geography - Sales Metrics", "instanceId": "25E2E77811E83F2861D40080EF15DC52", "result": {"definition": {"attributes": [{"name": "Call Center", "id": "8D679D3511D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Category", "id": "8D679D3711D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Country", "id": "8D679D3811D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Distribution Center", "id": "8D679D5211D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Employee", "id": "8D679D3F11D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "8D67A52E11D3E4981000E787EC6DE8A4", "name": "Last Name", "dataType": "Char"}, {"id": "8D67A53211D3E4981000E787EC6DE8A4", "name": "First Name", "dataType": "Char"}]}, {"name": "Item", "id": "8D679D4211D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Manager", "id": "8D679D4311D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "8D67A6AB11D3E4981000E787EC6DE8A4", "name": "Last Name", "dataType": "Char"}, {"id": "8D67A6AF11D3E4981000E787EC6DE8A4", "name": "First Name", "dataType": "Char"}]}, {"name": "Month", "id": "8D679D4411D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Quarter", "id": "8D679D4A11D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Region", "id": "8D679D4B11D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Subcategory", "id": "8D679D4F11D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Supplier", "id": "8D679D5011D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "CCFBE2A5EADB4F50941FB879CCF1721C", "name": "DESC", "dataType": "Char"}]}, {"name": "Year", "id": "8D679D5111D3E4981000E787EC6DE8A4", "type": "Attribute", "forms": [{"id": "45C11FA478E745FEA08D781CEA190FE5", "name": "ID", "dataType": "Real"}]}], "metrics": [{"name": "% Change to Profit", "id": "965C42404FD62829356000B0B955F267", "type": "Metric", "min": -547.1955230699, "max": 2145.7721179632, "numberFormatting": {"category": 4, "formatString": "0.00%;[RED](0.00%)"}}, {"name": "% Change to Revenue", "id": "1FB34B414FE712C0E58A2FACBD0CA6CE", "type": "Metric", "min": -0.9203539823, "max": 21.6470588235, "numberFormatting": {"category": 4, "formatString": "0.00%;[RED](0.00%)"}}, {"name": "Cost", "id": "7FD5B69611D5AC76C000D98A4CC5F24F", "type": "Metric", "min": 3.081, "max": 9366.888, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Month's Cost", "id": "E83645594DDA6A608B84B1BEDBE48482", "type": "Metric", "min": 3.081, "max": 9366.888, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Month's Profit", "id": "87E376B849F57D7CBAA0B38B20100F0C", "type": "Metric", "min": -113.9192, "max": 1963.84, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 0}}, {"name": "Last Month's Profit Margin", "id": "AD247F1F4336E4DEC714DE9BEF5A8F06", "type": "Metric", "min": -0.3812, "max": 0.3153333333, "numberFormatting": {"category": 4, "decimalPlaces": 2, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "0.00%;(0.00%)", "negativeType": 3}}, {"name": "Last Month's Revenue", "id": "4C05198411D3E877C000B3B2D86C964F", "type": "Metric", "min": 2.4, "max": 11280.0, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Month's Units Sold", "id": "A52B85D740AD7B1E137B25A390FAB8A1", "type": "Metric", "min": 1, "max": 49, "numberFormatting": {"category": 0, "decimalPlaces": 0, "formatString": "#,##0", "negativeType": 1}}, {"name": "Last Quarter's Cost", "id": "57FC70DE44B2AADA748FF4A30610B379", "type": "Metric", "min": 3.081, "max": 9366.888, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Quarter's Profit", "id": "07DED03E4B9E165A6E273FABEFF78E89", "type": "Metric", "min": -128.5276, "max": 1963.84, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 0}}, {"name": "Last Quarter's Profit Margin", "id": "2EB83FAB41D98A679CE415913E82D0DD", "type": "Metric", "min": -0.3812, "max": 0.3153333333, "numberFormatting": {"category": 4, "decimalPlaces": 2, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "0.00%;(0.00%)", "negativeType": 3}}, {"name": "Last Quarter's Revenue", "id": "A0458DCF46FC7BECE12290A486E30E85", "type": "Metric", "min": 2.4, "max": 11280.0, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Quarter's Units Sold", "id": "88CAEA2D4A9D814D9F6BA3B4E8CA5DD1", "type": "Metric", "min": 1, "max": 39, "numberFormatting": {"category": 0, "decimalPlaces": 0, "formatString": "#,##0", "negativeType": 1}}, {"name": "Last Year's Cost", "id": "CC10F9A14CA79466D5BE2AB86FF45865", "type": "Metric", "min": 3.081, "max": 6490.8576, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Year's Profit", "id": "838367154BDAFF3F783D0EB5CD82386A", "type": "Metric", "min": -187.3698, "max": 1609.1424, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 0}}, {"name": "Last Year's Profit Margin", "id": "21CDA2E14EE75036DA6326AD40E4E218", "type": "Metric", "min": -0.3812, "max": 0.3153333333, "numberFormatting": {"category": 4, "decimalPlaces": 2, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "0.00%;(0.00%)", "negativeType": 3}}, {"name": "Last Year's Revenue", "id": "4C05199311D3E877C000B3B2D86C964F", "type": "Metric", "min": 2.4, "max": 8100.0, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Last Year's Units Sold", "id": "C01F5E784776DB723FBBC48E6A41F2BD", "type": "Metric", "min": 1, "max": 30, "numberFormatting": {"category": 0, "decimalPlaces": 0, "formatString": "#,##0", "negativeType": 1}}, {"name": "Profit", "id": "4C051DB611D3E877C000B3B2D86C964F", "type": "Metric", "min": -128.5276, "max": 1913.112, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0;(\"$\"#,##0)", "negativeType": 3}}, {"name": "Profit Forecast", "id": "1FAF96994873E7CEFC71BDB269522636", "type": "Metric", "min": -103.4292443824, "max": 2068.30364544, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0;[RED]\"$\"#,##0", "negativeType": 1}}, {"name": "Profit Margin", "id": "2680DF9E11D5C3FEC0000B881FDA1A4F", "type": "Metric", "min": -0.3812, "max": 0.3153333333, "numberFormatting": {"category": 4, "decimalPlaces": 2, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "0.00%;(0.00%)", "negativeType": 3}}, {"name": "Revenue", "id": "4C05177011D3E877C000B3B2D86C964F", "type": "Metric", "min": 2.4, "max": 11280.0, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 0, "formatString": "\"$\"#,##0", "negativeType": 1}}, {"name": "Revenue Forecast", "id": "8D7D59C144AB891C57FEFA873ABE1C92", "type": "Metric", "min": 2.2224, "max": 10100.0, "numberFormatting": {"category": 1, "decimalPlaces": 0, "thousandSeparator": true, "currencySymbol": "$", "currencyPosition": 2, "formatString": "\"$\" #,##0;[RED](\"$\" #,##0)", "negativeType": 4}}, {"name": "Unit Cost", "id": "0782483A11D40C95C000C8906B98494F", "type": "Metric", "min": 3.081, "max": 936.6888, "numberFormatting": {"category": 1, "decimalPlaces": 0, "formatString": "\"$ \" #,##0", "negativeType": 1}}, {"name": "Unit Price", "id": "078248EE11D40C95C000C8906B98494F", "type": "Metric", "min": 3, "max": 1200, "numberFormatting": {"category": 1, "decimalPlaces": 0, "formatString": "\"$ \" #,##0", "negativeType": 1}}, {"name": "Unit Profit", "id": "7FD5B6D111D5AC76C000D98A4CC5F24F", "type": "Metric", "min": -0.5026, "max": 263.3112, "numberFormatting": {"category": 1, "decimalPlaces": 0, "formatString": "\"$ \" #,##0", "negativeType": 1}}, {"name": "Units Sold", "id": "4C05190A11D3E877C000B3B2D86C964F", "type": "Metric", "min": 1, "max": 54, "numberFormatting": {"category": 0, "decimalPlaces": 0, "formatString": "#,##0", "negativeType": 1}}], "thresholds": [], "sorting": []}, "data": {"paging": {"total": 111910, "current": 100, "offset": 0, "limit": 100, "prev": null, "next": null}, "root": {"isPartial": true, "children": [{"depth": 0, "element": {"attributeIndex": 0, "formValues": {"DESC": "Atlanta"}, "name": "Atlanta", "id": "h1;8D679D3511D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 1, "element": {"attributeIndex": 1, "formValues": {"DESC": "Books"}, "name": "Books", "id": "h1;8D679D3711D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 2, "element": {"attributeIndex": 2, "formValues": {"DESC": "USA"}, "name": "USA", "id": "h1;8D679D3811D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 3, "element": {"attributeIndex": 3, "formValues": {"DESC": "Atlanta"}, "name": "Atlanta", "id": "h1:10;8D679D5211D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 4, "element": {"attributeIndex": 4, "formValues": {"Last Name": "Benner", "First Name": "Ian"}, "name": "Benner Ian", "id": "h4;8D679D3F11D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "100 Places to Go While Still Young at Heart"}, "name": "100 Places to Go While Still Young at Heart", "id": "h1;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 65.728, "fv": "$66", "mi": 2}, "Last Month's Cost": {"rv": 32.864, "fv": "$33", "mi": 3}, "Last Month's Profit": {"rv": 13.136, "fv": "$13", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2855652174, "fv": "28.56%", "mi": 5}, "Last Month's Revenue": {"rv": 46.0, "fv": "$46", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 32.864, "fv": "$33", "mi": 8}, "Last Quarter's Profit": {"rv": 13.136, "fv": "$13", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2855652174, "fv": "28.56%", "mi": 10}, "Last Quarter's Revenue": {"rv": 46.0, "fv": "$46", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 32.864, "fv": "$33", "mi": 13}, "Last Year's Profit": {"rv": 13.136, "fv": "$13", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2855652174, "fv": "28.56%", "mi": 15}, "Last Year's Revenue": {"rv": 46.0, "fv": "$46", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 26.272, "fv": "$26", "mi": 18}, "Profit Forecast": {"rv": 26.86889984, "fv": "$27", "mi": 19}, "Profit Margin": {"rv": 0.2855652174, "fv": "28.56%", "mi": 20}, "Revenue": {"rv": 92.0, "fv": "$92", "mi": 21}, "Revenue Forecast": {"rv": 102.12, "fv": "$ 102", "mi": 22}, "Unit Cost": {"rv": 32.864, "fv": "$ 33", "mi": 23}, "Unit Price": {"rv": 46, "fv": "$ 46", "mi": 24}, "Unit Profit": {"rv": 13.136, "fv": "$ 13", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Art As Experience"}, "name": "Art As Experience", "id": "h2;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 32.864, "fv": "$33", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 16.432, "fv": "$16", "mi": 13}, "Last Year's Profit": {"rv": 5.568, "fv": "$6", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 22.0, "fv": "$22", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 11.136, "fv": "$11", "mi": 18}, "Profit Forecast": {"rv": 11.81930496, "fv": "$12", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 44.0, "fv": "$44", "mi": 21}, "Revenue Forecast": {"rv": 39.16, "fv": "$ 39", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 16.432, "fv": "$16", "mi": 8}, "Last Quarter's Profit": {"rv": 5.568, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 22.0, "fv": "$22", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.56729344, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.66, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The Painted Word"}, "name": "The Painted Word", "id": "h3;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2015"}, "name": "Sep 2015", "id": "h201509;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 5.135, "fv": "$5", "mi": 3}, "Last Month's Profit": {"rv": 0.865, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 6.0, "fv": "$6", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 15.405, "fv": "$15", "mi": 8}, "Last Quarter's Profit": {"rv": 2.595, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 18.0, "fv": "$18", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 5.135, "fv": "$5", "mi": 13}, "Last Year's Profit": {"rv": 0.865, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 6.0, "fv": "$6", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.73, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.613571, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 12.0, "fv": "$12", "mi": 21}, "Revenue Forecast": {"rv": 9.96, "fv": "$ 10", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2016"}, "name": "Jan 2016", "id": "h201601;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 5.135, "fv": "$5", "mi": 2}, "Last Month's Cost": {"rv": 15.405, "fv": "$15", "mi": 3}, "Last Month's Profit": {"rv": 1.695, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.099122807, "fv": "9.91%", "mi": 5}, "Last Month's Revenue": {"rv": 17.1, "fv": "$17", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 15.405, "fv": "$15", "mi": 8}, "Last Quarter's Profit": {"rv": 2.595, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 18.0, "fv": "$18", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 5.135, "fv": "$5", "mi": 13}, "Last Year's Profit": {"rv": 0.865, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 6.0, "fv": "$6", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 0.865, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.82923225, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 6.0, "fv": "$6", "mi": 21}, "Revenue Forecast": {"rv": 6.06, "fv": "$ 6", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2016"}, "name": "Apr 2016", "id": "h201604;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.2345132743, "fv": "23.45%", "mi": 0}, "% Change to Revenue": {"rv": 0.4736842105, "fv": "47.37%", "mi": 1}, "Cost": {"rv": 15.405, "fv": "$15", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 1.73, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 12.0, "fv": "$12", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 5.135, "fv": "$5", "mi": 8}, "Last Quarter's Profit": {"rv": 0.865, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 6.0, "fv": "$6", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 1.13, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.099122807, "fv": "9.91%", "mi": 15}, "Last Year's Revenue": {"rv": 11.4, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.395, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 1.30578975, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.0830357143, "fv": "8.30%", "mi": 20}, "Revenue": {"rv": 16.8, "fv": "$17", "mi": 21}, "Revenue Forecast": {"rv": 18.7824, "fv": "$ 19", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.6666666667, "fv": "66.67%", "mi": 0}, "% Change to Revenue": {"rv": 0.6666666667, "fv": "66.67%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 15.405, "fv": "$15", "mi": 3}, "Last Month's Profit": {"rv": 1.395, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0830357143, "fv": "8.30%", "mi": 5}, "Last Month's Revenue": {"rv": 16.8, "fv": "$17", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 10.27, "fv": "$10", "mi": 8}, "Last Quarter's Profit": {"rv": 1.73, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 12.0, "fv": "$12", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 15.405, "fv": "$15", "mi": 13}, "Last Year's Profit": {"rv": 2.595, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 4.325, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.92169375, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 30.0, "fv": "$30", "mi": 21}, "Revenue Forecast": {"rv": 25.2, "fv": "$ 25", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 5, "fv": "5", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 5.135, "fv": "$5", "mi": 2}, "Last Month's Cost": {"rv": 5.135, "fv": "$5", "mi": 3}, "Last Month's Profit": {"rv": 0.865, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 6.0, "fv": "$6", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 15.405, "fv": "$15", "mi": 8}, "Last Quarter's Profit": {"rv": 1.395, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.0830357143, "fv": "8.30%", "mi": 10}, "Last Quarter's Revenue": {"rv": 16.8, "fv": "$17", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 5.135, "fv": "$5", "mi": 13}, "Last Year's Profit": {"rv": 0.865, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 6.0, "fv": "$6", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 0.865, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.81426775, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 6.0, "fv": "$6", "mi": 21}, "Revenue Forecast": {"rv": 6.06, "fv": "$ 6", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 5.135, "fv": "$5", "mi": 3}, "Last Month's Profit": {"rv": 0.865, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 6.0, "fv": "$6", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 4.325, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 30.0, "fv": "$30", "mi": 11}, "Last Quarter's Units Sold": {"rv": 5, "fv": "5", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 1.73, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 3.46, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 3.167284, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 24.0, "fv": "$24", "mi": 21}, "Revenue Forecast": {"rv": 24.0, "fv": "$ 24", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.6666666667, "fv": "66.67%", "mi": 0}, "% Change to Revenue": {"rv": 0.6666666667, "fv": "66.67%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 3.46, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 24.0, "fv": "$24", "mi": 6}, "Last Month's Units Sold": {"rv": 4, "fv": "4", "mi": 7}, "Last Quarter's Cost": {"rv": 5.135, "fv": "$5", "mi": 8}, "Last Quarter's Profit": {"rv": 0.865, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 6.0, "fv": "$6", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 15.405, "fv": "$15", "mi": 13}, "Last Year's Profit": {"rv": 2.595, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 4.325, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.92169375, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 30.0, "fv": "$30", "mi": 21}, "Revenue Forecast": {"rv": 31.8, "fv": "$ 32", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 5, "fv": "5", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -1.0206489676, "fv": "(102.06%)", "mi": 0}, "% Change to Revenue": {"rv": -0.701754386, "fv": "(70.18%)", "mi": 1}, "Cost": {"rv": 5.135, "fv": "$5", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 2.525, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0895390071, "fv": "8.95%", "mi": 5}, "Last Month's Revenue": {"rv": 28.2, "fv": "$28", "mi": 6}, "Last Month's Units Sold": {"rv": 5, "fv": "5", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 3.46, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 24.0, "fv": "$24", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 15.405, "fv": "$15", "mi": 13}, "Last Year's Profit": {"rv": 1.695, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.099122807, "fv": "9.91%", "mi": 15}, "Last Year's Revenue": {"rv": 17.1, "fv": "$17", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": -0.035, "fv": "($0)", "mi": 18}, "Profit Forecast": {"rv": -0.03323775, "fv": "$0", "mi": 19}, "Profit Margin": {"rv": -0.0068627451, "fv": "(0.69%)", "mi": 20}, "Revenue": {"rv": 5.1, "fv": "$5", "mi": 21}, "Revenue Forecast": {"rv": 4.5849, "fv": "$ 5", "mi": 22}, "Unit Cost": {"rv": 5.135, "fv": "$ 5", "mi": 23}, "Unit Price": {"rv": 6, "fv": "$ 6", "mi": 24}, "Unit Profit": {"rv": 0.865, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Hirschfeld on Line"}, "name": "Hirschfeld on Line", "id": "h4;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2015"}, "name": "Sep 2015", "id": "h201509;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 77.025, "fv": "$77", "mi": 3}, "Last Month's Profit": {"rv": 27.975, "fv": "$28", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 105.0, "fv": "$105", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 9.325, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 35.0, "fv": "$35", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 9.325, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 35.0, "fv": "$35", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 9.325, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 7.98919375, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 35.0, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.65, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2015"}, "name": "Nov 2015", "id": "h201511;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 9.325, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 35.0, "fv": "$35", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 77.025, "fv": "$77", "mi": 8}, "Last Quarter's Profit": {"rv": 27.975, "fv": "$28", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 105.0, "fv": "$105", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 9.325, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 35.0, "fv": "$35", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 9.325, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 7.98919375, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 35.0, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.65, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 0}, "% Change to Revenue": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 9.325, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 35.0, "fv": "$35", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 9.325, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 35.0, "fv": "$35", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 77.025, "fv": "$77", "mi": 13}, "Last Year's Profit": {"rv": 27.975, "fv": "$28", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 105.0, "fv": "$105", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 9.325, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 9.72830625, "fv": "$10", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 35.0, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 38.85, "fv": "$ 39", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 51.35, "fv": "$51", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 9.325, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 35.0, "fv": "$35", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 9.325, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 35.0, "fv": "$35", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 9.325, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 35.0, "fv": "$35", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 18.65, "fv": "$19", "mi": 18}, "Profit Forecast": {"rv": 21.195725, "fv": "$21", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 70.0, "fv": "$70", "mi": 21}, "Revenue Forecast": {"rv": 75.6, "fv": "$ 76", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 51.35, "fv": "$51", "mi": 3}, "Last Month's Profit": {"rv": 18.65, "fv": "$19", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 70.0, "fv": "$70", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 9.325, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 35.0, "fv": "$35", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 9.325, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 35.0, "fv": "$35", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 9.325, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 9.72830625, "fv": "$10", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 35.0, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.65, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2016"}, "name": "Nov 2016", "id": "h201611;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.563002681, "fv": "(56.30%)", "mi": 0}, "% Change to Revenue": {"rv": -0.15, "fv": "(15.00%)", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 9.325, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 35.0, "fv": "$35", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 25.675, "fv": "$26", "mi": 8}, "Last Quarter's Profit": {"rv": 9.325, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 35.0, "fv": "$35", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 9.325, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 35.0, "fv": "$35", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 4.075, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 4.03730625, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1369747899, "fv": "13.70%", "mi": 20}, "Revenue": {"rv": 29.75, "fv": "$30", "mi": 21}, "Revenue Forecast": {"rv": 25.064375, "fv": "$ 25", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.2883435583, "fv": "128.83%", "mi": 0}, "% Change to Revenue": {"rv": 0.1764705882, "fv": "17.65%", "mi": 1}, "Cost": {"rv": 25.675, "fv": "$26", "mi": 2}, "Last Month's Cost": {"rv": 25.675, "fv": "$26", "mi": 3}, "Last Month's Profit": {"rv": 4.075, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1369747899, "fv": "13.70%", "mi": 5}, "Last Month's Revenue": {"rv": 29.75, "fv": "$30", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 51.35, "fv": "$51", "mi": 8}, "Last Quarter's Profit": {"rv": 18.65, "fv": "$19", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 70.0, "fv": "$70", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 25.675, "fv": "$26", "mi": 13}, "Last Year's Profit": {"rv": 4.075, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1369747899, "fv": "13.70%", "mi": 15}, "Last Year's Revenue": {"rv": 29.75, "fv": "$30", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 9.325, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 7.98919375, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 35.0, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.65, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 25.675, "fv": "$ 26", "mi": 23}, "Unit Price": {"rv": 35, "fv": "$ 35", "mi": 24}, "Unit Profit": {"rv": 9.325, "fv": "$ 9", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Architecture : Form, Space, & Order"}, "name": "Architecture : Form, Space, & Order", "id": "h6;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 7.46, "fv": "$7", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 28.0, "fv": "$28", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 7.46, "fv": "$7", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 28.0, "fv": "$28", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 41.08, "fv": "$41", "mi": 13}, "Last Year's Profit": {"rv": 14.92, "fv": "$15", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 56.0, "fv": "$56", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 7.46, "fv": "$7", "mi": 18}, "Profit Forecast": {"rv": 7.643516, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 28.0, "fv": "$28", "mi": 21}, "Revenue Forecast": {"rv": 29.12, "fv": "$ 29", "mi": 22}, "Unit Cost": {"rv": 20.54, "fv": "$ 21", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 7.46, "fv": "$ 7", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "50 Favorite Rooms"}, "name": "50 Favorite Rooms", "id": "h7;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2015"}, "name": "Nov 2015", "id": "h201511;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 13.351, "fv": "$13", "mi": 2}, "Last Month's Cost": {"rv": 26.702, "fv": "$27", "mi": 3}, "Last Month's Profit": {"rv": 9.298, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 5}, "Last Month's Revenue": {"rv": 36.0, "fv": "$36", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 13.351, "fv": "$13", "mi": 8}, "Last Quarter's Profit": {"rv": 4.649, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 10}, "Last Quarter's Revenue": {"rv": 18.0, "fv": "$18", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 13.351, "fv": "$13", "mi": 13}, "Last Year's Profit": {"rv": 4.649, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 4.649, "fv": "$5", "mi": 18}, "Profit Forecast": {"rv": 4.63268201, "fv": "$5", "mi": 19}, "Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 20}, "Revenue": {"rv": 18.0, "fv": "$18", "mi": 21}, "Revenue Forecast": {"rv": 13.86, "fv": "$ 14", "mi": 22}, "Unit Cost": {"rv": 13.351, "fv": "$ 13", "mi": 23}, "Unit Price": {"rv": 18, "fv": "$ 18", "mi": 24}, "Unit Profit": {"rv": 4.649, "fv": "$ 5", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 26.702, "fv": "$27", "mi": 2}, "Last Month's Cost": {"rv": 13.351, "fv": "$13", "mi": 3}, "Last Month's Profit": {"rv": 4.649, "fv": "$5", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 5}, "Last Month's Revenue": {"rv": 18.0, "fv": "$18", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 26.702, "fv": "$27", "mi": 8}, "Last Quarter's Profit": {"rv": 9.298, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 10}, "Last Quarter's Revenue": {"rv": 36.0, "fv": "$36", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 13.351, "fv": "$13", "mi": 13}, "Last Year's Profit": {"rv": 4.649, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 9.298, "fv": "$9", "mi": 18}, "Profit Forecast": {"rv": 9.69762804, "fv": "$10", "mi": 19}, "Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 20}, "Revenue": {"rv": 36.0, "fv": "$36", "mi": 21}, "Revenue Forecast": {"rv": 28.08, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 13.351, "fv": "$ 13", "mi": 23}, "Unit Price": {"rv": 18, "fv": "$ 18", "mi": 24}, "Unit Profit": {"rv": 4.649, "fv": "$ 5", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2016"}, "name": "Nov 2016", "id": "h201611;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.4192299419, "fv": "41.92%", "mi": 0}, "% Change to Revenue": {"rv": 0.85, "fv": "85.00%", "mi": 1}, "Cost": {"rv": 26.702, "fv": "$27", "mi": 2}, "Last Month's Cost": {"rv": 26.702, "fv": "$27", "mi": 3}, "Last Month's Profit": {"rv": 9.298, "fv": "$9", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 5}, "Last Month's Revenue": {"rv": 36.0, "fv": "$36", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 13.351, "fv": "$13", "mi": 8}, "Last Quarter's Profit": {"rv": 4.649, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 10}, "Last Quarter's Revenue": {"rv": 18.0, "fv": "$18", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 13.351, "fv": "$13", "mi": 13}, "Last Year's Profit": {"rv": 4.649, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2582777778, "fv": "25.83%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 6.598, "fv": "$7", "mi": 18}, "Profit Forecast": {"rv": 5.83276396, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.1981381381, "fv": "19.81%", "mi": 20}, "Revenue": {"rv": 33.3, "fv": "$33", "mi": 21}, "Revenue Forecast": {"rv": 36.3969, "fv": "$ 36", "mi": 22}, "Unit Cost": {"rv": 13.351, "fv": "$ 13", "mi": 23}, "Unit Price": {"rv": 18, "fv": "$ 18", "mi": 24}, "Unit Profit": {"rv": 4.649, "fv": "$ 5", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "500 Best Vacation Home Plans"}, "name": "500 Best Vacation Home Plans", "id": "h8;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2015"}, "name": "May 2015", "id": "h201505;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.7707129094, "fv": "77.07%", "mi": 0}, "% Change to Revenue": {"rv": 0.1111111111, "fv": "11.11%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.038, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 7.2, "fv": "$7", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.038, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 7.2, "fv": "$7", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.71231756, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2015"}, "name": "Jul 2015", "id": "h201507;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 18.486, "fv": "$18", "mi": 3}, "Last Month's Profit": {"rv": 5.514, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 24.0, "fv": "$24", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.038, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 7.2, "fv": "$7", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2015"}, "name": "Aug 2015", "id": "h201508;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 3.676, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.62732976, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 16.0, "fv": "$16", "mi": 21}, "Revenue Forecast": {"rv": 17.76, "fv": "$ 18", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.2176278564, "fv": "(21.76%)", "mi": 0}, "% Change to Revenue": {"rv": -0.05, "fv": "(5.00%)", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 3.676, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 16.0, "fv": "$16", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.038, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 7.2, "fv": "$7", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 3.676, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 16.0, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.876, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.64948624, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 20}, "Revenue": {"rv": 15.2, "fv": "$15", "mi": 21}, "Revenue Forecast": {"rv": 12.1296, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Blue & White Living"}, "name": "Blue & White Living", "id": "h9;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2015"}, "name": "Aug 2015", "id": "h201508;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 3.368, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 5}, "Last Month's Revenue": {"rv": 19.8, "fv": "$20", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 1.684, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 10}, "Last Quarter's Revenue": {"rv": 9.9, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.56729344, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.66, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2016"}, "name": "May 2016", "id": "h201605;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 3.6532066508, "fv": "365.32%", "mi": 0}, "% Change to Revenue": {"rv": 3.1111111111, "fv": "311.11%", "mi": 1}, "Cost": {"rv": 32.864, "fv": "$33", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 4.468, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2137799043, "fv": "21.38%", "mi": 5}, "Last Month's Revenue": {"rv": 20.9, "fv": "$21", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 1.684, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 15}, "Last Year's Revenue": {"rv": 9.9, "fv": "$10", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 7.836, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 8.05822896, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.1925307125, "fv": "19.25%", "mi": 20}, "Revenue": {"rv": 40.7, "fv": "$41", "mi": 21}, "Revenue Forecast": {"rv": 37.5661, "fv": "$ 38", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Ways of Seeing"}, "name": "Ways of Seeing", "id": "h10;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2015"}, "name": "Feb 2015", "id": "h201502;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.72230656, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.66, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2015"}, "name": "Apr 2015", "id": "h201504;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.3951149425, "fv": "(39.51%)", "mi": 0}, "% Change to Revenue": {"rv": -0.1, "fv": "(10.00%)", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.684, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.57144144, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 20}, "Revenue": {"rv": 9.9, "fv": "$10", "mi": 21}, "Revenue Forecast": {"rv": 8.4249, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2015"}, "name": "Jul 2015", "id": "h201507;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 5.568, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 22.0, "fv": "$22", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 1.684, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 10}, "Last Quarter's Revenue": {"rv": 9.9, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 0.584, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.0663636364, "fv": "6.64%", "mi": 15}, "Last Year's Revenue": {"rv": 8.8, "fv": "$9", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 0.584, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.55821056, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.0663636364, "fv": "6.64%", "mi": 20}, "Revenue": {"rv": 8.8, "fv": "$9", "mi": 21}, "Revenue Forecast": {"rv": 7.5856, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2015"}, "name": "Nov 2015", "id": "h201511;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.8146551724, "fv": "181.47%", "mi": 0}, "% Change to Revenue": {"rv": 2.7, "fv": "270.00%", "mi": 1}, "Cost": {"rv": 32.864, "fv": "$33", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 7.836, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 8.05822896, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.1925307125, "fv": "19.25%", "mi": 20}, "Revenue": {"rv": 40.7, "fv": "$41", "mi": 21}, "Revenue Forecast": {"rv": 37.5661, "fv": "$ 38", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2016"}, "name": "Feb 2016", "id": "h201602;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 5.568, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 22.0, "fv": "$22", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 32.864, "fv": "$33", "mi": 8}, "Last Quarter's Profit": {"rv": 7.836, "fv": "$8", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1925307125, "fv": "19.25%", "mi": 10}, "Last Quarter's Revenue": {"rv": 40.7, "fv": "$41", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.72230656, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.66, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2016"}, "name": "Jul 2016", "id": "h201607;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 4.7671232877, "fv": "476.71%", "mi": 0}, "% Change to Revenue": {"rv": 1.25, "fv": "125.00%", "mi": 1}, "Cost": {"rv": 16.432, "fv": "$16", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 1.684, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 10}, "Last Quarter's Revenue": {"rv": 9.9, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 0.584, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.0663636364, "fv": "6.64%", "mi": 15}, "Last Year's Revenue": {"rv": 8.8, "fv": "$9", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 3.368, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 3.08616576, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 20}, "Revenue": {"rv": 19.8, "fv": "$20", "mi": 21}, "Revenue Forecast": {"rv": 18.9684, "fv": "$ 19", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 16.432, "fv": "$16", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 3.368, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 5}, "Last Month's Revenue": {"rv": 19.8, "fv": "$20", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 16.432, "fv": "$16", "mi": 8}, "Last Quarter's Profit": {"rv": 4.468, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2137799043, "fv": "21.38%", "mi": 10}, "Last Quarter's Revenue": {"rv": 20.9, "fv": "$21", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 5.568, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 5.59962624, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 22.0, "fv": "$22", "mi": 21}, "Revenue Forecast": {"rv": 20.24, "fv": "$ 20", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2016"}, "name": "Nov 2016", "id": "h201611;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.4211332312, "fv": "42.11%", "mi": 0}, "% Change to Revenue": {"rv": 0.0810810811, "fv": "8.11%", "mi": 1}, "Cost": {"rv": 32.864, "fv": "$33", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 16.432, "fv": "$16", "mi": 8}, "Last Quarter's Profit": {"rv": 5.568, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 22.0, "fv": "$22", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 32.864, "fv": "$33", "mi": 13}, "Last Year's Profit": {"rv": 7.836, "fv": "$8", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1925307125, "fv": "19.25%", "mi": 15}, "Last Year's Revenue": {"rv": 40.7, "fv": "$41", "mi": 16}, "Last Year's Units Sold": {"rv": 4, "fv": "4", "mi": 17}, "Profit": {"rv": 11.136, "fv": "$11", "mi": 18}, "Profit Forecast": {"rv": 9.33909504, "fv": "$9", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 44.0, "fv": "$44", "mi": 21}, "Revenue Forecast": {"rv": 39.16, "fv": "$ 39", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Gonzo, the Art"}, "name": "Gonzo, the Art", "id": "h11;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Scribner"}, "name": "Scribner", "id": "h106;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 21.567, "fv": "$22", "mi": 2}, "Last Month's Cost": {"rv": 21.567, "fv": "$22", "mi": 3}, "Last Month's Profit": {"rv": 2.233, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0938235294, "fv": "9.38%", "mi": 5}, "Last Month's Revenue": {"rv": 23.8, "fv": "$24", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 21.567, "fv": "$22", "mi": 8}, "Last Quarter's Profit": {"rv": 6.433, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 28.0, "fv": "$28", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 43.134, "fv": "$43", "mi": 13}, "Last Year's Profit": {"rv": 12.866, "fv": "$13", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 56.0, "fv": "$56", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 6.433, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 5.69751511, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 28.0, "fv": "$28", "mi": 21}, "Revenue Forecast": {"rv": 24.08, "fv": "$ 24", "mi": 22}, "Unit Cost": {"rv": 21.567, "fv": "$ 22", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 6.433, "fv": "$ 6", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Cabin Fever : Rustic Style Comes Home"}, "name": "Cabin Fever : Rustic Style Comes Home", "id": "h12;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2015"}, "name": "Jul 2015", "id": "h201507;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.9352557127, "fv": "(93.53%)", "mi": 0}, "% Change to Revenue": {"rv": -0.6, "fv": "(60.00%)", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.038, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 7.2, "fv": "$7", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 3.676, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 16.0, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 0.238, "fv": "$0", "mi": 18}, "Profit Forecast": {"rv": 0.22666644, "fv": "$0", "mi": 19}, "Profit Margin": {"rv": 0.0371875, "fv": "3.72%", "mi": 20}, "Revenue": {"rv": 6.4, "fv": "$6", "mi": 21}, "Revenue Forecast": {"rv": 6.4896, "fv": "$ 6", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2016"}, "name": "Apr 2016", "id": "h201604;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.038, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 7.2, "fv": "$7", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.038, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.97532556, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 7.2, "fv": "$7", "mi": 21}, "Revenue Forecast": {"rv": 7.3584, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 2.876, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 5}, "Last Month's Revenue": {"rv": 15.2, "fv": "$15", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 6.96, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2016"}, "name": "Jul 2016", "id": "h201607;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 7.7226890756, "fv": "772.27%", "mi": 0}, "% Change to Revenue": {"rv": 1.25, "fv": "125.00%", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.038, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 7.2, "fv": "$7", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 0.238, "fv": "$0", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.0371875, "fv": "3.72%", "mi": 15}, "Last Year's Revenue": {"rv": 6.4, "fv": "$6", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.076, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.92910224, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 14.4, "fv": "$14", "mi": 21}, "Revenue Forecast": {"rv": 11.6064, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 2.076, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 14.4, "fv": "$14", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 2.876, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 10}, "Last Quarter's Revenue": {"rv": 15.2, "fv": "$15", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 2.076, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 14.4, "fv": "$14", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 3.676, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 16.0, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.71231756, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "American Bungalow Style"}, "name": "American Bungalow Style", "id": "h13;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2016"}, "name": "Jan 2016", "id": "h201601;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 41.08, "fv": "$41", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 7.46, "fv": "$7", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 28.0, "fv": "$28", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 7.46, "fv": "$7", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 28.0, "fv": "$28", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 7.46, "fv": "$7", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 28.0, "fv": "$28", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 14.92, "fv": "$15", "mi": 18}, "Profit Forecast": {"rv": 11.947936, "fv": "$12", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 56.0, "fv": "$56", "mi": 21}, "Revenue Forecast": {"rv": 43.12, "fv": "$ 43", "mi": 22}, "Unit Cost": {"rv": 20.54, "fv": "$ 21", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 7.46, "fv": "$ 7", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2016"}, "name": "Feb 2016", "id": "h201602;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 41.08, "fv": "$41", "mi": 2}, "Last Month's Cost": {"rv": 41.08, "fv": "$41", "mi": 3}, "Last Month's Profit": {"rv": 14.92, "fv": "$15", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 56.0, "fv": "$56", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 3.26, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1369747899, "fv": "13.70%", "mi": 10}, "Last Quarter's Revenue": {"rv": 23.8, "fv": "$24", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 41.08, "fv": "$41", "mi": 13}, "Last Year's Profit": {"rv": 14.92, "fv": "$15", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 56.0, "fv": "$56", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 14.92, "fv": "$15", "mi": 18}, "Profit Forecast": {"rv": 11.947936, "fv": "$12", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 56.0, "fv": "$56", "mi": 21}, "Revenue Forecast": {"rv": 63.28, "fv": "$ 63", "mi": 22}, "Unit Cost": {"rv": 20.54, "fv": "$ 21", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 7.46, "fv": "$ 7", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2016"}, "name": "Jul 2016", "id": "h201607;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.1995708155, "fv": "(19.96%)", "mi": 0}, "% Change to Revenue": {"rv": -0.4444444444, "fv": "(44.44%)", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 41.08, "fv": "$41", "mi": 3}, "Last Month's Profit": {"rv": 14.92, "fv": "$15", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 56.0, "fv": "$56", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 4.66, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1849206349, "fv": "18.49%", "mi": 10}, "Last Quarter's Revenue": {"rv": 25.2, "fv": "$25", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 41.08, "fv": "$41", "mi": 13}, "Last Year's Profit": {"rv": 9.32, "fv": "$9", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1849206349, "fv": "18.49%", "mi": 15}, "Last Year's Revenue": {"rv": 50.4, "fv": "$50", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 7.46, "fv": "$7", "mi": 18}, "Profit Forecast": {"rv": 7.643516, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 28.0, "fv": "$28", "mi": 21}, "Revenue Forecast": {"rv": 29.12, "fv": "$ 29", "mi": 22}, "Unit Cost": {"rv": 20.54, "fv": "$ 21", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 7.46, "fv": "$ 7", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 41.08, "fv": "$41", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 7.46, "fv": "$7", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 5}, "Last Month's Revenue": {"rv": 28.0, "fv": "$28", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 7.46, "fv": "$7", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 10}, "Last Quarter's Revenue": {"rv": 28.0, "fv": "$28", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 7.46, "fv": "$7", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 15}, "Last Year's Revenue": {"rv": 28.0, "fv": "$28", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 14.92, "fv": "$15", "mi": 18}, "Profit Forecast": {"rv": 11.947936, "fv": "$12", "mi": 19}, "Profit Margin": {"rv": 0.2664285714, "fv": "26.64%", "mi": 20}, "Revenue": {"rv": 56.0, "fv": "$56", "mi": 21}, "Revenue Forecast": {"rv": 43.12, "fv": "$ 43", "mi": 22}, "Unit Cost": {"rv": 20.54, "fv": "$ 21", "mi": 23}, "Unit Price": {"rv": 28, "fv": "$ 28", "mi": 24}, "Unit Profit": {"rv": 7.46, "fv": "$ 7", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Voyaging Under Power"}, "name": "Voyaging Under Power", "id": "h15;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Art & Architecture"}, "name": "Art & Architecture", "id": "h11;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 7.189, "fv": "$7", "mi": 2}, "Last Month's Cost": {"rv": 7.189, "fv": "$7", "mi": 3}, "Last Month's Profit": {"rv": 1.811, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2012222222, "fv": "20.12%", "mi": 5}, "Last Month's Revenue": {"rv": 9.0, "fv": "$9", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 7.189, "fv": "$7", "mi": 8}, "Last Quarter's Profit": {"rv": 1.811, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2012222222, "fv": "20.12%", "mi": 10}, "Last Quarter's Revenue": {"rv": 9.0, "fv": "$9", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 14.378, "fv": "$14", "mi": 13}, "Last Year's Profit": {"rv": 3.622, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2012222222, "fv": "20.12%", "mi": 15}, "Last Year's Revenue": {"rv": 18.0, "fv": "$18", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.811, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.68765279, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.2012222222, "fv": "20.12%", "mi": 20}, "Revenue": {"rv": 9.0, "fv": "$9", "mi": 21}, "Revenue Forecast": {"rv": 9.36, "fv": "$ 9", "mi": 22}, "Unit Cost": {"rv": 7.189, "fv": "$ 7", "mi": 23}, "Unit Price": {"rv": 9, "fv": "$ 9", "mi": 24}, "Unit Profit": {"rv": 1.811, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Working With Emotional Intelligence"}, "name": "Working With Emotional Intelligence", "id": "h16;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 2.6083521445, "fv": "260.84%", "mi": 0}, "% Change to Revenue": {"rv": 1.1764705882, "fv": "117.65%", "mi": 1}, "Cost": {"rv": 28.756, "fv": "$29", "mi": 2}, "Last Month's Cost": {"rv": 14.378, "fv": "$14", "mi": 3}, "Last Month's Profit": {"rv": 4.622, "fv": "$5", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2432631579, "fv": "24.33%", "mi": 5}, "Last Month's Revenue": {"rv": 19.0, "fv": "$19", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 14.378, "fv": "$14", "mi": 8}, "Last Quarter's Profit": {"rv": 2.722, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1591812865, "fv": "15.92%", "mi": 10}, "Last Quarter's Revenue": {"rv": 17.1, "fv": "$17", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 14.378, "fv": "$14", "mi": 13}, "Last Year's Profit": {"rv": 1.772, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1097213622, "fv": "10.97%", "mi": 15}, "Last Year's Revenue": {"rv": 16.15, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 6.394, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 6.48313236, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.1819061166, "fv": "18.19%", "mi": 20}, "Revenue": {"rv": 35.15, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.715775, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 14.378, "fv": "$ 14", "mi": 23}, "Unit Price": {"rv": 19, "fv": "$ 19", "mi": 24}, "Unit Profit": {"rv": 4.622, "fv": "$ 5", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Attention to Detail"}, "name": "Attention to Detail", "id": "h17;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2015"}, "name": "Apr 2015", "id": "h201504;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.3769024172, "fv": "(37.69%)", "mi": 0}, "% Change to Revenue": {"rv": -0.4736842105, "fv": "(47.37%)", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 16.432, "fv": "$16", "mi": 8}, "Last Quarter's Profit": {"rv": 5.568, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 22.0, "fv": "$22", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 16.432, "fv": "$16", "mi": 13}, "Last Year's Profit": {"rv": 4.468, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2137799043, "fv": "21.38%", "mi": 15}, "Last Year's Revenue": {"rv": 20.9, "fv": "$21", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.56729344, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 9.24, "fv": "$ 9", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 24.648, "fv": "$25", "mi": 2}, "Last Month's Cost": {"rv": 16.432, "fv": "$16", "mi": 3}, "Last Month's Profit": {"rv": 5.568, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 22.0, "fv": "$22", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 24.648, "fv": "$25", "mi": 13}, "Last Year's Profit": {"rv": 8.352, "fv": "$8", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 33.0, "fv": "$33", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 8.352, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 8.63195904, "fv": "$9", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 33.0, "fv": "$33", "mi": 21}, "Revenue Forecast": {"rv": 35.97, "fv": "$ 36", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Mar 2016"}, "name": "Mar 2016", "id": "h201603;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 2.784, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 5}, "Last Month's Revenue": {"rv": 11.0, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.784, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.56729344, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 20}, "Revenue": {"rv": 11.0, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.66, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2016"}, "name": "May 2016", "id": "h201605;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.3951149425, "fv": "(39.51%)", "mi": 0}, "% Change to Revenue": {"rv": -0.1, "fv": "(10.00%)", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 1.684, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 5}, "Last Month's Revenue": {"rv": 9.9, "fv": "$10", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 2.784, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.0, "fv": "$11", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 2.784, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2530909091, "fv": "25.31%", "mi": 15}, "Last Year's Revenue": {"rv": 11.0, "fv": "$11", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.684, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.57144144, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.1701010101, "fv": "17.01%", "mi": 20}, "Revenue": {"rv": 9.9, "fv": "$10", "mi": 21}, "Revenue Forecast": {"rv": 10.3851, "fv": "$ 10", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 11, "fv": "$ 11", "mi": 24}, "Unit Profit": {"rv": 2.784, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The 48 Laws of Power"}, "name": "The 48 Laws of Power", "id": "h18;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 26.702, "fv": "$27", "mi": 2}, "Last Month's Cost": {"rv": 13.351, "fv": "$13", "mi": 3}, "Last Month's Profit": {"rv": 1.949, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1273856209, "fv": "12.74%", "mi": 5}, "Last Month's Revenue": {"rv": 15.3, "fv": "$15", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 13.351, "fv": "$13", "mi": 8}, "Last Quarter's Profit": {"rv": 2.849, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1758641975, "fv": "17.59%", "mi": 10}, "Last Quarter's Revenue": {"rv": 16.2, "fv": "$16", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 26.702, "fv": "$27", "mi": 13}, "Last Year's Profit": {"rv": 3.898, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1273856209, "fv": "12.74%", "mi": 15}, "Last Year's Revenue": {"rv": 30.6, "fv": "$31", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 3.898, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.85504404, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1273856209, "fv": "12.74%", "mi": 20}, "Revenue": {"rv": 30.6, "fv": "$31", "mi": 21}, "Revenue Forecast": {"rv": 32.6196, "fv": "$ 33", "mi": 22}, "Unit Cost": {"rv": 13.351, "fv": "$ 13", "mi": 23}, "Unit Price": {"rv": 18, "fv": "$ 18", "mi": 24}, "Unit Profit": {"rv": 4.649, "fv": "$ 5", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Don't Step in the Leadership"}, "name": "Don't Step in the Leadership", "id": "h19;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2016"}, "name": "Jan 2016", "id": "h201601;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 3.676, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 16.0, "fv": "$16", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2016"}, "name": "Apr 2016", "id": "h201604;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "John Wiley & Sons"}, "name": "John Wiley & Sons", "id": "h102;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Topgrading"}, "name": "Topgrading", "id": "h20;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2015"}, "name": "Aug 2015", "id": "h201508;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Prentice Hall"}, "name": "Prentice Hall", "id": "h105;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 13.351, "fv": "$13", "mi": 2}, "Last Month's Cost": {"rv": 13.351, "fv": "$13", "mi": 3}, "Last Month's Profit": {"rv": 1.849, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1216447368, "fv": "12.16%", "mi": 5}, "Last Month's Revenue": {"rv": 15.2, "fv": "$15", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 26.702, "fv": "$27", "mi": 8}, "Last Quarter's Profit": {"rv": 9.398, "fv": "$9", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.26033241, "fv": "26.03%", "mi": 10}, "Last Quarter's Revenue": {"rv": 36.1, "fv": "$36", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 26.702, "fv": "$27", "mi": 13}, "Last Year's Profit": {"rv": 11.298, "fv": "$11", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2973157895, "fv": "29.73%", "mi": 15}, "Last Year's Revenue": {"rv": 38.0, "fv": "$38", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 5.649, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 5.04743799, "fv": "$5", "mi": 19}, "Profit Margin": {"rv": 0.2973157895, "fv": "29.73%", "mi": 20}, "Revenue": {"rv": 19.0, "fv": "$19", "mi": 21}, "Revenue Forecast": {"rv": 18.05, "fv": "$ 18", "mi": 22}, "Unit Cost": {"rv": 13.351, "fv": "$ 13", "mi": 23}, "Unit Price": {"rv": 19, "fv": "$ 19", "mi": 24}, "Unit Profit": {"rv": 5.649, "fv": "$ 6", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Career Intelligence"}, "name": "Career Intelligence", "id": "h21;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2015"}, "name": "Jul 2015", "id": "h201507;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.4761904762, "fv": "(47.62%)", "mi": 0}, "% Change to Revenue": {"rv": -0.1, "fv": "(10.00%)", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 2.73, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 13.0, "fv": "$13", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 30.81, "fv": "$31", "mi": 8}, "Last Quarter's Profit": {"rv": 8.19, "fv": "$8", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 39.0, "fv": "$39", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 5.46, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 26.0, "fv": "$26", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.86, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.635204, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 20}, "Revenue": {"rv": 23.4, "fv": "$23", "mi": 21}, "Revenue Forecast": {"rv": 21.2004, "fv": "$ 21", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 5.46, "fv": "$5", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 26.0, "fv": "$26", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 2.86, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 10}, "Last Quarter's Revenue": {"rv": 23.4, "fv": "$23", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 5.46, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 26.0, "fv": "$26", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.73, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.518971, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 13.0, "fv": "$13", "mi": 21}, "Revenue Forecast": {"rv": 10.66, "fv": "$ 11", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.5, "fv": "50.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.5, "fv": "50.00%", "mi": 1}, "Cost": {"rv": 30.81, "fv": "$31", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 2.73, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 13.0, "fv": "$13", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 5.46, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 26.0, "fv": "$26", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 5.46, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 26.0, "fv": "$26", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 8.19, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 8.451261, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 39.0, "fv": "$39", "mi": 21}, "Revenue Forecast": {"rv": 36.66, "fv": "$ 37", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Cubicle Warfare"}, "name": "Cubicle Warfare", "id": "h22;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2015"}, "name": "Jan 2015", "id": "h201501;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 2.73, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 13.0, "fv": "$13", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 5.46, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 26.0, "fv": "$26", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 5.46, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 26.0, "fv": "$26", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.73, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.518971, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 13.0, "fv": "$13", "mi": 21}, "Revenue Forecast": {"rv": 10.66, "fv": "$ 11", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2015"}, "name": "May 2015", "id": "h201505;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.9090909091, "fv": "190.91%", "mi": 0}, "% Change to Revenue": {"rv": 1.1111111111, "fv": "111.11%", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 2.86, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 5}, "Last Month's Revenue": {"rv": 23.4, "fv": "$23", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 30.81, "fv": "$31", "mi": 8}, "Last Quarter's Profit": {"rv": 8.19, "fv": "$8", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 39.0, "fv": "$39", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 1.43, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 15}, "Last Year's Revenue": {"rv": 11.7, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 4.16, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 4.125056, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 20}, "Revenue": {"rv": 24.7, "fv": "$25", "mi": 21}, "Revenue Forecast": {"rv": 24.8729, "fv": "$ 25", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2015"}, "name": "Aug 2015", "id": "h201508;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 2.73, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 13.0, "fv": "$13", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 4.16, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 10}, "Last Quarter's Revenue": {"rv": 24.7, "fv": "$25", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 4.16, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 15}, "Last Year's Revenue": {"rv": 24.7, "fv": "$25", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 4.16, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.778944, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 20}, "Revenue": {"rv": 24.7, "fv": "$25", "mi": 21}, "Revenue Forecast": {"rv": 22.0571, "fv": "$ 22", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2015"}, "name": "Sep 2015", "id": "h201509;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.9545454545, "fv": "95.45%", "mi": 0}, "% Change to Revenue": {"rv": 0.5555555556, "fv": "55.56%", "mi": 1}, "Cost": {"rv": 30.81, "fv": "$31", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 4.16, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 5}, "Last Month's Revenue": {"rv": 24.7, "fv": "$25", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 20.54, "fv": "$21", "mi": 8}, "Last Quarter's Profit": {"rv": 5.46, "fv": "$5", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 26.0, "fv": "$26", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 2.86, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 15}, "Last Year's Revenue": {"rv": 23.4, "fv": "$23", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 5.59, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 4.998019, "fv": "$5", "mi": 19}, "Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 20}, "Revenue": {"rv": 36.4, "fv": "$36", "mi": 21}, "Revenue Forecast": {"rv": 28.2464, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 30.81, "fv": "$31", "mi": 3}, "Last Month's Profit": {"rv": 5.59, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 5}, "Last Month's Revenue": {"rv": 36.4, "fv": "$36", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 10.27, "fv": "$10", "mi": 8}, "Last Quarter's Profit": {"rv": 2.73, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 13.0, "fv": "$13", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 5.46, "fv": "$5", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 26.0, "fv": "$26", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.73, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.668029, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 13.0, "fv": "$13", "mi": 21}, "Revenue Forecast": {"rv": 10.66, "fv": "$ 11", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2015"}, "name": "Dec 2015", "id": "h201512;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 3.51, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1459459459, "fv": "14.59%", "mi": 5}, "Last Month's Revenue": {"rv": 24.05, "fv": "$24", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 30.81, "fv": "$31", "mi": 8}, "Last Quarter's Profit": {"rv": 5.59, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 10}, "Last Quarter's Revenue": {"rv": 36.4, "fv": "$36", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 2.73, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 13.0, "fv": "$13", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.73, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.668029, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 13.0, "fv": "$13", "mi": 21}, "Revenue Forecast": {"rv": 14.04, "fv": "$ 14", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.34375, "fv": "(34.38%)", "mi": 0}, "% Change to Revenue": {"rv": -0.4736842105, "fv": "(47.37%)", "mi": 1}, "Cost": {"rv": 10.27, "fv": "$10", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 0.13, "fv": "$0", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0125, "fv": "1.25%", "mi": 5}, "Last Month's Revenue": {"rv": 10.4, "fv": "$10", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 10.27, "fv": "$10", "mi": 8}, "Last Quarter's Profit": {"rv": 1.43, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 10}, "Last Quarter's Revenue": {"rv": 11.7, "fv": "$12", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 4.16, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1684210526, "fv": "16.84%", "mi": 15}, "Last Year's Revenue": {"rv": 24.7, "fv": "$25", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.73, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.668029, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 13.0, "fv": "$13", "mi": 21}, "Revenue Forecast": {"rv": 10.66, "fv": "$ 11", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.4651162791, "fv": "46.51%", "mi": 0}, "% Change to Revenue": {"rv": 0.0714285714, "fv": "7.14%", "mi": 1}, "Cost": {"rv": 30.81, "fv": "$31", "mi": 2}, "Last Month's Cost": {"rv": 10.27, "fv": "$10", "mi": 3}, "Last Month's Profit": {"rv": 2.73, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 13.0, "fv": "$13", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 41.08, "fv": "$41", "mi": 8}, "Last Quarter's Profit": {"rv": 10.92, "fv": "$11", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 52.0, "fv": "$52", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 30.81, "fv": "$31", "mi": 13}, "Last Year's Profit": {"rv": 5.59, "fv": "$6", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 15}, "Last Year's Revenue": {"rv": 36.4, "fv": "$36", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 8.19, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 7.109739, "fv": "$7", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 39.0, "fv": "$39", "mi": 21}, "Revenue Forecast": {"rv": 36.66, "fv": "$ 37", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 2.0, "fv": "200.00%", "mi": 0}, "% Change to Revenue": {"rv": 2.0, "fv": "200.00%", "mi": 1}, "Cost": {"rv": 30.81, "fv": "$31", "mi": 2}, "Last Month's Cost": {"rv": 30.81, "fv": "$31", "mi": 3}, "Last Month's Profit": {"rv": 8.19, "fv": "$8", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 39.0, "fv": "$39", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 10.27, "fv": "$10", "mi": 8}, "Last Quarter's Profit": {"rv": 0.13, "fv": "$0", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.0125, "fv": "1.25%", "mi": 10}, "Last Quarter's Revenue": {"rv": 10.4, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 2.73, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 13.0, "fv": "$13", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 8.19, "fv": "$8", "mi": 18}, "Profit Forecast": {"rv": 8.451261, "fv": "$8", "mi": 19}, "Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 20}, "Revenue": {"rv": 39.0, "fv": "$39", "mi": 21}, "Revenue Forecast": {"rv": 36.66, "fv": "$ 37", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2016"}, "name": "Nov 2016", "id": "h201611;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5555555556, "fv": "(55.56%)", "mi": 0}, "% Change to Revenue": {"rv": -0.0810810811, "fv": "(8.11%)", "mi": 1}, "Cost": {"rv": 20.54, "fv": "$21", "mi": 2}, "Last Month's Cost": {"rv": 30.81, "fv": "$31", "mi": 3}, "Last Month's Profit": {"rv": 8.19, "fv": "$8", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 39.0, "fv": "$39", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 10.27, "fv": "$10", "mi": 8}, "Last Quarter's Profit": {"rv": 2.73, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 13.0, "fv": "$13", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 20.54, "fv": "$21", "mi": 13}, "Last Year's Profit": {"rv": 3.51, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1459459459, "fv": "14.59%", "mi": 15}, "Last Year's Revenue": {"rv": 24.05, "fv": "$24", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.56, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.506336, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.0705882353, "fv": "7.06%", "mi": 20}, "Revenue": {"rv": 22.1, "fv": "$22", "mi": 21}, "Revenue Forecast": {"rv": 21.6801, "fv": "$ 22", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.5714285714, "fv": "57.14%", "mi": 0}, "% Change to Revenue": {"rv": 1.7, "fv": "170.00%", "mi": 1}, "Cost": {"rv": 30.81, "fv": "$31", "mi": 2}, "Last Month's Cost": {"rv": 20.54, "fv": "$21", "mi": 3}, "Last Month's Profit": {"rv": 1.56, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0705882353, "fv": "7.06%", "mi": 5}, "Last Month's Revenue": {"rv": 22.1, "fv": "$22", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 30.81, "fv": "$31", "mi": 8}, "Last Quarter's Profit": {"rv": 8.19, "fv": "$8", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 10}, "Last Quarter's Revenue": {"rv": 39.0, "fv": "$39", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 10.27, "fv": "$10", "mi": 13}, "Last Year's Profit": {"rv": 2.73, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 15}, "Last Year's Revenue": {"rv": 13.0, "fv": "$13", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 4.29, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 4.259541, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1222222222, "fv": "12.22%", "mi": 20}, "Revenue": {"rv": 35.1, "fv": "$35", "mi": 21}, "Revenue Forecast": {"rv": 27.6939, "fv": "$ 28", "mi": 22}, "Unit Cost": {"rv": 10.27, "fv": "$ 10", "mi": 23}, "Unit Price": {"rv": 13, "fv": "$ 13", "mi": 24}, "Unit Profit": {"rv": 2.73, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The Power to Get in"}, "name": "The Power to Get in", "id": "h24;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2015"}, "name": "Jan 2015", "id": "h201501;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 3.0, "fv": "300.00%", "mi": 0}, "% Change to Revenue": {"rv": 3.0, "fv": "300.00%", "mi": 1}, "Cost": {"rv": 36.972, "fv": "$37", "mi": 2}, "Last Month's Cost": {"rv": 27.729, "fv": "$28", "mi": 3}, "Last Month's Profit": {"rv": 4.671, "fv": "$5", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 32.4, "fv": "$32", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 9.243, "fv": "$9", "mi": 8}, "Last Quarter's Profit": {"rv": 2.757, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 12.0, "fv": "$12", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 9.243, "fv": "$9", "mi": 13}, "Last Year's Profit": {"rv": 2.757, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 11.028, "fv": "$11", "mi": 18}, "Profit Forecast": {"rv": 9.26043216, "fv": "$9", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 48.0, "fv": "$48", "mi": 21}, "Revenue Forecast": {"rv": 50.4, "fv": "$ 50", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2015"}, "name": "Feb 2015", "id": "h201502;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 18.486, "fv": "$18", "mi": 2}, "Last Month's Cost": {"rv": 36.972, "fv": "$37", "mi": 3}, "Last Month's Profit": {"rv": 11.028, "fv": "$11", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 48.0, "fv": "$48", "mi": 6}, "Last Month's Units Sold": {"rv": 4, "fv": "4", "mi": 7}, "Last Quarter's Cost": {"rv": 18.486, "fv": "$18", "mi": 8}, "Last Quarter's Profit": {"rv": 5.514, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 24.0, "fv": "$24", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 9.243, "fv": "$9", "mi": 13}, "Last Year's Profit": {"rv": 2.757, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 5.514, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 5.54234196, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 24.0, "fv": "$24", "mi": 21}, "Revenue Forecast": {"rv": 21.6, "fv": "$ 22", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2015"}, "name": "Apr 2015", "id": "h201504;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 9.243, "fv": "$9", "mi": 2}, "Last Month's Cost": {"rv": 18.486, "fv": "$18", "mi": 3}, "Last Month's Profit": {"rv": 5.514, "fv": "$6", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 24.0, "fv": "$24", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 36.972, "fv": "$37", "mi": 8}, "Last Quarter's Profit": {"rv": 11.028, "fv": "$11", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 48.0, "fv": "$48", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 9.243, "fv": "$9", "mi": 13}, "Last Year's Profit": {"rv": 2.757, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.757, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.69516049, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 12.0, "fv": "$12", "mi": 21}, "Revenue Forecast": {"rv": 12.84, "fv": "$ 13", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Don't Sweat the Small Stuff"}, "name": "Don't Sweat the Small Stuff", "id": "h25;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 7.189, "fv": "$7", "mi": 2}, "Last Month's Cost": {"rv": 7.189, "fv": "$7", "mi": 3}, "Last Month's Profit": {"rv": 2.811, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 5}, "Last Month's Revenue": {"rv": 10.0, "fv": "$10", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 7.189, "fv": "$7", "mi": 8}, "Last Quarter's Profit": {"rv": 2.811, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 10}, "Last Quarter's Revenue": {"rv": 10.0, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 7.189, "fv": "$7", "mi": 13}, "Last Year's Profit": {"rv": 2.811, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 15}, "Last Year's Revenue": {"rv": 10.0, "fv": "$10", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.811, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.74946721, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 20}, "Revenue": {"rv": 10.0, "fv": "$10", "mi": 21}, "Revenue Forecast": {"rv": 8.5, "fv": "$ 9", "mi": 22}, "Unit Cost": {"rv": 7.189, "fv": "$ 7", "mi": 23}, "Unit Price": {"rv": 10, "fv": "$ 10", "mi": 24}, "Unit Profit": {"rv": 2.811, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2015"}, "name": "Nov 2015", "id": "h201511;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.3991462113, "fv": "139.91%", "mi": 0}, "% Change to Revenue": {"rv": 2.55, "fv": "255.00%", "mi": 1}, "Cost": {"rv": 28.756, "fv": "$29", "mi": 2}, "Last Month's Cost": {"rv": 7.189, "fv": "$7", "mi": 3}, "Last Month's Profit": {"rv": 2.811, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 5}, "Last Month's Revenue": {"rv": 10.0, "fv": "$10", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 7.189, "fv": "$7", "mi": 8}, "Last Quarter's Profit": {"rv": 2.811, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 10}, "Last Quarter's Revenue": {"rv": 10.0, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 7.189, "fv": "$7", "mi": 13}, "Last Year's Profit": {"rv": 2.811, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 15}, "Last Year's Revenue": {"rv": 10.0, "fv": "$10", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 6.744, "fv": "$7", "mi": 18}, "Profit Forecast": {"rv": 6.86161536, "fv": "$7", "mi": 19}, "Profit Margin": {"rv": 0.189971831, "fv": "19.00%", "mi": 20}, "Revenue": {"rv": 35.5, "fv": "$36", "mi": 21}, "Revenue Forecast": {"rv": 39.5825, "fv": "$ 40", "mi": 22}, "Unit Cost": {"rv": 7.189, "fv": "$ 7", "mi": 23}, "Unit Price": {"rv": 10, "fv": "$ 10", "mi": 24}, "Unit Profit": {"rv": 2.811, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2016"}, "name": "May 2016", "id": "h201605;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Simon & Schuster"}, "name": "Simon & Schuster", "id": "h107;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 7.189, "fv": "$7", "mi": 2}, "Last Month's Cost": {"rv": 14.378, "fv": "$14", "mi": 3}, "Last Month's Profit": {"rv": 3.622, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.2012222222, "fv": "20.12%", "mi": 5}, "Last Month's Revenue": {"rv": 18.0, "fv": "$18", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 7.189, "fv": "$7", "mi": 8}, "Last Quarter's Profit": {"rv": 2.811, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 10}, "Last Quarter's Revenue": {"rv": 10.0, "fv": "$10", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 7.189, "fv": "$7", "mi": 13}, "Last Year's Profit": {"rv": 2.811, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 15}, "Last Year's Revenue": {"rv": 10.0, "fv": "$10", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.811, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.59143279, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.2811, "fv": "28.11%", "mi": 20}, "Revenue": {"rv": 10.0, "fv": "$10", "mi": 21}, "Revenue Forecast": {"rv": 10.5, "fv": "$ 11", "mi": 22}, "Unit Cost": {"rv": 7.189, "fv": "$ 7", "mi": 23}, "Unit Price": {"rv": 10, "fv": "$ 10", "mi": 24}, "Unit Profit": {"rv": 2.811, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Jump Start Your Brain"}, "name": "Jump Start Your Brain", "id": "h26;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Aug 2016"}, "name": "Aug 2016", "id": "h201608;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 8.216, "fv": "$8", "mi": 2}, "Last Month's Cost": {"rv": 8.216, "fv": "$8", "mi": 3}, "Last Month's Profit": {"rv": 3.784, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.3153333333, "fv": "31.53%", "mi": 5}, "Last Month's Revenue": {"rv": 12.0, "fv": "$12", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 8.216, "fv": "$8", "mi": 8}, "Last Quarter's Profit": {"rv": 3.784, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.3153333333, "fv": "31.53%", "mi": 10}, "Last Quarter's Revenue": {"rv": 12.0, "fv": "$12", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 8.216, "fv": "$8", "mi": 13}, "Last Year's Profit": {"rv": 3.784, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.3153333333, "fv": "31.53%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 3.784, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.73798656, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.3153333333, "fv": "31.53%", "mi": 20}, "Revenue": {"rv": 12.0, "fv": "$12", "mi": 21}, "Revenue Forecast": {"rv": 12.84, "fv": "$ 13", "mi": 22}, "Unit Cost": {"rv": 8.216, "fv": "$ 8", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 3.784, "fv": "$ 4", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Smart Choices"}, "name": "Smart Choices", "id": "h27;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2016"}, "name": "Jan 2016", "id": "h201601;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 3.676, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 16.0, "fv": "$16", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 24.648, "fv": "$25", "mi": 8}, "Last Quarter's Profit": {"rv": 7.352, "fv": "$7", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 32.0, "fv": "$32", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 3.676, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 16.0, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 3.676, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.62732976, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 16.0, "fv": "$16", "mi": 21}, "Revenue Forecast": {"rv": 12.64, "fv": "$ 13", "mi": 22}, "Unit Cost": {"rv": 12.324, "fv": "$ 12", "mi": 23}, "Unit Price": {"rv": 16, "fv": "$ 16", "mi": 24}, "Unit Profit": {"rv": 3.676, "fv": "$ 4", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2016"}, "name": "Feb 2016", "id": "h201602;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 0}, "% Change to Revenue": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 3.676, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 16.0, "fv": "$16", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 3.676, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 16.0, "fv": "$16", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 36.972, "fv": "$37", "mi": 13}, "Last Year's Profit": {"rv": 11.028, "fv": "$11", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 48.0, "fv": "$48", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 3.676, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.35707024, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 16.0, "fv": "$16", "mi": 21}, "Revenue Forecast": {"rv": 12.64, "fv": "$ 13", "mi": 22}, "Unit Cost": {"rv": 12.324, "fv": "$ 12", "mi": 23}, "Unit Price": {"rv": 16, "fv": "$ 16", "mi": 24}, "Unit Profit": {"rv": 3.676, "fv": "$ 4", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The Joy of Work"}, "name": "The Joy of Work", "id": "h29;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 1.276, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.0938235294, "fv": "9.38%", "mi": 5}, "Last Month's Revenue": {"rv": 13.6, "fv": "$14", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 3.676, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 16.0, "fv": "$16", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 24.648, "fv": "$25", "mi": 13}, "Last Year's Profit": {"rv": 2.552, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.0938235294, "fv": "9.38%", "mi": 15}, "Last Year's Revenue": {"rv": 27.2, "fv": "$27", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.276, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 1.22848176, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.0938235294, "fv": "9.38%", "mi": 20}, "Revenue": {"rv": 13.6, "fv": "$14", "mi": 21}, "Revenue Forecast": {"rv": 14.7696, "fv": "$ 15", "mi": 22}, "Unit Cost": {"rv": 12.324, "fv": "$ 12", "mi": 23}, "Unit Price": {"rv": 16, "fv": "$ 16", "mi": 24}, "Unit Profit": {"rv": 3.676, "fv": "$ 4", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "Jobshift"}, "name": "Jobshift", "id": "h30;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 18.486, "fv": "$18", "mi": 2}, "Last Month's Cost": {"rv": 9.243, "fv": "$9", "mi": 3}, "Last Month's Profit": {"rv": 2.757, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 12.0, "fv": "$12", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 18.486, "fv": "$18", "mi": 8}, "Last Quarter's Profit": {"rv": 5.514, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 24.0, "fv": "$24", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 18.486, "fv": "$18", "mi": 13}, "Last Year's Profit": {"rv": 5.514, "fv": "$6", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 24.0, "fv": "$24", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 5.514, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 5.54234196, "fv": "$6", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 24.0, "fv": "$24", "mi": 21}, "Revenue Forecast": {"rv": 21.6, "fv": "$ 22", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.5647442873, "fv": "56.47%", "mi": 0}, "% Change to Revenue": {"rv": 0.9, "fv": "90.00%", "mi": 1}, "Cost": {"rv": 18.486, "fv": "$18", "mi": 2}, "Last Month's Cost": {"rv": 9.243, "fv": "$9", "mi": 3}, "Last Month's Profit": {"rv": 2.757, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 12.0, "fv": "$12", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 18.486, "fv": "$18", "mi": 8}, "Last Quarter's Profit": {"rv": 5.514, "fv": "$6", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 24.0, "fv": "$24", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 9.243, "fv": "$9", "mi": 13}, "Last Year's Profit": {"rv": 2.757, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 4.314, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 4.28440596, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 20}, "Revenue": {"rv": 22.8, "fv": "$23", "mi": 21}, "Revenue Forecast": {"rv": 22.5264, "fv": "$ 23", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2016"}, "name": "Oct 2016", "id": "h201610;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 18.486, "fv": "$18", "mi": 2}, "Last Month's Cost": {"rv": 18.486, "fv": "$18", "mi": 3}, "Last Month's Profit": {"rv": 4.314, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 5}, "Last Month's Revenue": {"rv": 22.8, "fv": "$23", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 18.486, "fv": "$18", "mi": 8}, "Last Quarter's Profit": {"rv": 3.114, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 21.6, "fv": "$22", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 9.243, "fv": "$9", "mi": 13}, "Last Year's Profit": {"rv": 2.757, "fv": "$3", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 12.0, "fv": "$12", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 5.514, "fv": "$6", "mi": 18}, "Profit Forecast": {"rv": 4.93425804, "fv": "$5", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 24.0, "fv": "$24", "mi": 21}, "Revenue Forecast": {"rv": 21.6, "fv": "$ 22", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Business"}, "name": "Business", "id": "h12;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Warner Books"}, "name": "Warner Books", "id": "h109;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 0}, "% Change to Revenue": {"rv": -0.6666666667, "fv": "(66.67%)", "mi": 1}, "Cost": {"rv": 9.243, "fv": "$9", "mi": 2}, "Last Month's Cost": {"rv": 55.458, "fv": "$55", "mi": 3}, "Last Month's Profit": {"rv": 14.742, "fv": "$15", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.21, "fv": "21.00%", "mi": 5}, "Last Month's Revenue": {"rv": 70.2, "fv": "$70", "mi": 6}, "Last Month's Units Sold": {"rv": 6, "fv": "6", "mi": 7}, "Last Quarter's Cost": {"rv": 18.486, "fv": "$18", "mi": 8}, "Last Quarter's Profit": {"rv": 4.314, "fv": "$4", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 10}, "Last Quarter's Revenue": {"rv": 22.8, "fv": "$23", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 27.729, "fv": "$28", "mi": 13}, "Last Year's Profit": {"rv": 8.271, "fv": "$8", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 36.0, "fv": "$36", "mi": 16}, "Last Year's Units Sold": {"rv": 3, "fv": "3", "mi": 17}, "Profit": {"rv": 2.757, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.69516049, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 12.0, "fv": "$12", "mi": 21}, "Revenue Forecast": {"rv": 9.96, "fv": "$ 10", "mi": 22}, "Unit Cost": {"rv": 9.243, "fv": "$ 9", "mi": 23}, "Unit Price": {"rv": 12, "fv": "$ 12", "mi": 24}, "Unit Profit": {"rv": 2.757, "fv": "$ 3", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The Prince"}, "name": "The Prince", "id": "h31;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2015"}, "name": "May 2015", "id": "h201505;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 2.476, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1672972973, "fv": "16.73%", "mi": 5}, "Last Month's Revenue": {"rv": 14.8, "fv": "$15", "mi": 6}, "Last Month's Units Sold": {"rv": 4, "fv": "4", "mi": 7}, "Last Quarter's Cost": {"rv": 3.081, "fv": "$3", "mi": 8}, "Last Quarter's Profit": {"rv": 0.919, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 4.0, "fv": "$4", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.038, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 7.2, "fv": "$7", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.038, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.99687444, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 20}, "Revenue": {"rv": 7.2, "fv": "$7", "mi": 21}, "Revenue Forecast": {"rv": 7.3584, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2015"}, "name": "Jun 2015", "id": "h201506;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q2"}, "name": "2015 Q2", "id": "h20152;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.038, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 7.2, "fv": "$7", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 3.081, "fv": "$3", "mi": 13}, "Last Year's Profit": {"rv": 0.919, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 4.0, "fv": "$4", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.71231756, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jul 2015"}, "name": "Jul 2015", "id": "h201507;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q3"}, "name": "2015 Q3", "id": "h20153;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.7707129094, "fv": "177.07%", "mi": 0}, "% Change to Revenue": {"rv": 1.1111111111, "fv": "111.11%", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 2.476, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1672972973, "fv": "16.73%", "mi": 10}, "Last Quarter's Revenue": {"rv": 14.8, "fv": "$15", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.038, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 7.2, "fv": "$7", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 2.876, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.64948624, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 20}, "Revenue": {"rv": 15.2, "fv": "$15", "mi": 21}, "Revenue Forecast": {"rv": 12.1296, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 4, "fv": "4", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Oct 2015"}, "name": "Oct 2015", "id": "h201510;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 3.081, "fv": "$3", "mi": 3}, "Last Month's Profit": {"rv": 0.519, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 5}, "Last Month's Revenue": {"rv": 3.6, "fv": "$4", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 12.324, "fv": "$12", "mi": 8}, "Last Quarter's Profit": {"rv": 2.876, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1892105263, "fv": "18.92%", "mi": 10}, "Last Quarter's Revenue": {"rv": 15.2, "fv": "$15", "mi": 11}, "Last Quarter's Units Sold": {"rv": 4, "fv": "4", "mi": 12}, "Last Year's Cost": {"rv": 3.081, "fv": "$3", "mi": 13}, "Last Year's Profit": {"rv": 0.919, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 4.0, "fv": "$4", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.71231756, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2015"}, "name": "Dec 2015", "id": "h201512;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q4"}, "name": "2015 Q4", "id": "h20154;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 3.081, "fv": "$3", "mi": 3}, "Last Month's Profit": {"rv": 0.919, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 4.0, "fv": "$4", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 3.081, "fv": "$3", "mi": 8}, "Last Quarter's Profit": {"rv": 0.519, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 10}, "Last Quarter's Revenue": {"rv": 3.6, "fv": "$4", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 8.24, "fv": "$ 8", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2016"}, "name": "Feb 2016", "id": "h201602;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 1.0, "fv": "100.00%", "mi": 0}, "% Change to Revenue": {"rv": 1.0, "fv": "100.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 3.081, "fv": "$3", "mi": 3}, "Last Month's Profit": {"rv": 0.919, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 4.0, "fv": "$4", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 3.081, "fv": "$3", "mi": 8}, "Last Quarter's Profit": {"rv": 0.919, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 4.0, "fv": "$4", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 3.081, "fv": "$3", "mi": 13}, "Last Year's Profit": {"rv": 0.919, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 4.0, "fv": "$4", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 6.96, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Mar 2016"}, "name": "Mar 2016", "id": "h201603;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q1"}, "name": "2016 Q1", "id": "h20161;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.5, "fv": "(50.00%)", "mi": 0}, "% Change to Revenue": {"rv": -0.5, "fv": "(50.00%)", "mi": 1}, "Cost": {"rv": 3.081, "fv": "$3", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 2, "fv": "2", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 0.919, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.88149561, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 4.0, "fv": "$4", "mi": 21}, "Revenue Forecast": {"rv": 3.64, "fv": "$ 4", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Apr 2016"}, "name": "Apr 2016", "id": "h201604;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.2096122779, "fv": "(20.96%)", "mi": 0}, "% Change to Revenue": {"rv": -0.2432432432, "fv": "(24.32%)", "mi": 1}, "Cost": {"rv": 9.243, "fv": "$9", "mi": 2}, "Last Month's Cost": {"rv": 3.081, "fv": "$3", "mi": 3}, "Last Month's Profit": {"rv": 0.919, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 4.0, "fv": "$4", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 3.081, "fv": "$3", "mi": 8}, "Last Quarter's Profit": {"rv": 0.919, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 4.0, "fv": "$4", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 2.476, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1672972973, "fv": "16.73%", "mi": 15}, "Last Year's Revenue": {"rv": 14.8, "fv": "$15", "mi": 16}, "Last Year's Units Sold": {"rv": 4, "fv": "4", "mi": 17}, "Profit": {"rv": 1.957, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.89744849, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.1747321429, "fv": "17.47%", "mi": 20}, "Revenue": {"rv": 11.2, "fv": "$11", "mi": 21}, "Revenue Forecast": {"rv": 11.8944, "fv": "$ 12", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 3, "fv": "3", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "May 2016"}, "name": "May 2016", "id": "h201605;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.1146435453, "fv": "(11.46%)", "mi": 0}, "% Change to Revenue": {"rv": -0.4444444444, "fv": "(44.44%)", "mi": 1}, "Cost": {"rv": 3.081, "fv": "$3", "mi": 2}, "Last Month's Cost": {"rv": 9.243, "fv": "$9", "mi": 3}, "Last Month's Profit": {"rv": 1.957, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1747321429, "fv": "17.47%", "mi": 5}, "Last Month's Revenue": {"rv": 11.2, "fv": "$11", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.038, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 7.2, "fv": "$7", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 0.919, "fv": "$1", "mi": 18}, "Profit Forecast": {"rv": 0.88149561, "fv": "$1", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 4.0, "fv": "$4", "mi": 21}, "Revenue Forecast": {"rv": 3.96, "fv": "$ 4", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jun 2016"}, "name": "Jun 2016", "id": "h201606;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q2"}, "name": "2016 Q2", "id": "h20162;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 3.081, "fv": "$3", "mi": 3}, "Last Month's Profit": {"rv": 0.919, "fv": "$1", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 4.0, "fv": "$4", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 3.081, "fv": "$3", "mi": 8}, "Last Quarter's Profit": {"rv": 0.919, "fv": "$1", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 4.0, "fv": "$4", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.71231756, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 6.96, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Sep 2016"}, "name": "Sep 2016", "id": "h201609;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q3"}, "name": "2016 Q3", "id": "h20163;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 2.5414258189, "fv": "254.14%", "mi": 0}, "% Change to Revenue": {"rv": 1.2222222222, "fv": "122.22%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 9.243, "fv": "$9", "mi": 3}, "Last Month's Profit": {"rv": 2.757, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 12.0, "fv": "$12", "mi": 6}, "Last Month's Units Sold": {"rv": 3, "fv": "3", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 3.081, "fv": "$3", "mi": 13}, "Last Year's Profit": {"rv": 0.519, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.1441666667, "fv": "14.42%", "mi": 15}, "Last Year's Revenue": {"rv": 3.6, "fv": "$4", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 6.96, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Nov 2016"}, "name": "Nov 2016", "id": "h201611;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 2.0413492927, "fv": "204.13%", "mi": 0}, "% Change to Revenue": {"rv": 3.55, "fv": "355.00%", "mi": 1}, "Cost": {"rv": 15.405, "fv": "$15", "mi": 2}, "Last Month's Cost": {"rv": 12.324, "fv": "$12", "mi": 3}, "Last Month's Profit": {"rv": 3.676, "fv": "$4", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 16.0, "fv": "$16", "mi": 6}, "Last Month's Units Sold": {"rv": 4, "fv": "4", "mi": 7}, "Last Quarter's Cost": {"rv": 9.243, "fv": "$9", "mi": 8}, "Last Quarter's Profit": {"rv": 2.757, "fv": "$3", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 12.0, "fv": "$12", "mi": 11}, "Last Quarter's Units Sold": {"rv": 3, "fv": "3", "mi": 12}, "Last Year's Cost": {"rv": 3.081, "fv": "$3", "mi": 13}, "Last Year's Profit": {"rv": 0.919, "fv": "$1", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 4.0, "fv": "$4", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 2.795, "fv": "$3", "mi": 18}, "Profit Forecast": {"rv": 2.57712975, "fv": "$3", "mi": 19}, "Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 20}, "Revenue": {"rv": 18.2, "fv": "$18", "mi": 21}, "Revenue Forecast": {"rv": 13.9776, "fv": "$ 14", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 5, "fv": "5", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Dec 2016"}, "name": "Dec 2016", "id": "h201612;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2016 Q4"}, "name": "2016 Q4", "id": "h20164;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Bantam Books"}, "name": "Bantam Books", "id": "h101;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2016"}, "name": "2016", "id": "h2016;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": -0.8264417845, "fv": "(82.64%)", "mi": 0}, "% Change to Revenue": {"rv": -0.575, "fv": "(57.50%)", "mi": 1}, "Cost": {"rv": 3.081, "fv": "$3", "mi": 2}, "Last Month's Cost": {"rv": 15.405, "fv": "$15", "mi": 3}, "Last Month's Profit": {"rv": 2.795, "fv": "$3", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.1535714286, "fv": "15.36%", "mi": 5}, "Last Month's Revenue": {"rv": 18.2, "fv": "$18", "mi": 6}, "Last Month's Units Sold": {"rv": 5, "fv": "5", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 2, "fv": "2", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 0.319, "fv": "$0", "mi": 18}, "Profit Forecast": {"rv": 0.30406761, "fv": "$0", "mi": 19}, "Profit Margin": {"rv": 0.0938235294, "fv": "9.38%", "mi": 20}, "Revenue": {"rv": 3.4, "fv": "$3", "mi": 21}, "Revenue Forecast": {"rv": 3.3456, "fv": "$ 3", "mi": 22}, "Unit Cost": {"rv": 3.081, "fv": "$ 3", "mi": 23}, "Unit Price": {"rv": 4, "fv": "$ 4", "mi": 24}, "Unit Profit": {"rv": 0.919, "fv": "$ 1", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}]}]}, {"depth": 5, "element": {"attributeIndex": 5, "formValues": {"DESC": "The Fountainhead"}, "name": "The Fountainhead", "id": "h32;8D679D4211D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 6, "element": {"attributeIndex": 6, "formValues": {"Last Name": "Rosie", "First Name": "Calvin"}, "name": "Rosie Calvin", "id": "h8;8D679D4311D3E4981000E787EC6DE8A4"}, "isPartial": true, "children": [{"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Jan 2015"}, "name": "Jan 2015", "id": "h201501;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Perigee"}, "name": "Perigee", "id": "h104;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 6.162, "fv": "$6", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 6.162, "fv": "$6", "mi": 13}, "Last Year's Profit": {"rv": 1.838, "fv": "$2", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 8.0, "fv": "$8", "mi": 16}, "Last Year's Units Sold": {"rv": 1, "fv": "1", "mi": 17}, "Profit": {"rv": 1.838, "fv": "$2", "mi": 18}, "Profit Forecast": {"rv": 1.77988244, "fv": "$2", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 8.0, "fv": "$8", "mi": 21}, "Revenue Forecast": {"rv": 6.96, "fv": "$ 7", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 1, "fv": "1", "mi": 26}}}]}]}]}]}]}, {"depth": 7, "element": {"attributeIndex": 7, "formValues": {"DESC": "Feb 2015"}, "name": "Feb 2015", "id": "h201502;8D679D4411D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 8, "element": {"attributeIndex": 8, "formValues": {"DESC": "2015 Q1"}, "name": "2015 Q1", "id": "h20151;8D679D4A11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 9, "element": {"attributeIndex": 9, "formValues": {"DESC": "Southeast"}, "name": "Southeast", "id": "h3;8D679D4B11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 10, "element": {"attributeIndex": 10, "formValues": {"DESC": "Literature"}, "name": "Literature", "id": "h13;8D679D4F11D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 11, "element": {"attributeIndex": 11, "formValues": {"DESC": "Perigee"}, "name": "Perigee", "id": "h104;8D679D5011D3E4981000E787EC6DE8A4"}, "isPartial": false, "children": [{"depth": 12, "element": {"attributeIndex": 12, "formValues": {"ID": "2015"}, "name": "2015", "id": "h2015;8D679D5111D3E4981000E787EC6DE8A4"}, "metrics": {"% Change to Profit": {"rv": 0.0, "fv": "0.00%", "mi": 0}, "% Change to Revenue": {"rv": 0.0, "fv": "0.00%", "mi": 1}, "Cost": {"rv": 12.324, "fv": "$12", "mi": 2}, "Last Month's Cost": {"rv": 6.162, "fv": "$6", "mi": 3}, "Last Month's Profit": {"rv": 1.838, "fv": "$2", "mi": 4}, "Last Month's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 5}, "Last Month's Revenue": {"rv": 8.0, "fv": "$8", "mi": 6}, "Last Month's Units Sold": {"rv": 1, "fv": "1", "mi": 7}, "Last Quarter's Cost": {"rv": 6.162, "fv": "$6", "mi": 8}, "Last Quarter's Profit": {"rv": 1.838, "fv": "$2", "mi": 9}, "Last Quarter's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 10}, "Last Quarter's Revenue": {"rv": 8.0, "fv": "$8", "mi": 11}, "Last Quarter's Units Sold": {"rv": 1, "fv": "1", "mi": 12}, "Last Year's Cost": {"rv": 12.324, "fv": "$12", "mi": 13}, "Last Year's Profit": {"rv": 3.676, "fv": "$4", "mi": 14}, "Last Year's Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 15}, "Last Year's Revenue": {"rv": 16.0, "fv": "$16", "mi": 16}, "Last Year's Units Sold": {"rv": 2, "fv": "2", "mi": 17}, "Profit": {"rv": 3.676, "fv": "$4", "mi": 18}, "Profit Forecast": {"rv": 3.62732976, "fv": "$4", "mi": 19}, "Profit Margin": {"rv": 0.22975, "fv": "22.98%", "mi": 20}, "Revenue": {"rv": 16.0, "fv": "$16", "mi": 21}, "Revenue Forecast": {"rv": 12.64, "fv": "$ 13", "mi": 22}, "Unit Cost": {"rv": 6.162, "fv": "$ 6", "mi": 23}, "Unit Price": {"rv": 8, "fv": "$ 8", "mi": 24}, "Unit Profit": {"rv": 1.838, "fv": "$ 2", "mi": 25}, "Units Sold": {"rv": 2, "fv": "2", "mi": 26}}}]}]}]}]}]}]}]}]}]}]}]}]}]}}}} diff --git a/tests/mongo/fixtures/docs.json b/tests/mongo/fixtures/docs.json index 97f215362..aa5ebc7e7 100644 --- a/tests/mongo/fixtures/docs.json +++ b/tests/mongo/fixtures/docs.json @@ -17,4 +17,4 @@ "language": "German", "value": 17 } -] \ No newline at end of file +] diff --git a/tests/odata/fixtures/records.json b/tests/odata/fixtures/records.json index 70300e5df..3c69f4c95 100644 --- a/tests/odata/fixtures/records.json +++ b/tests/odata/fixtures/records.json @@ -1 +1 @@ -[{"CustomerID":"FOLIG","EmployeeID":8,"Freight":11.26,"OrderDate":"1997-01-08T00:00:00Z","OrderID":10408,"RequiredDate":"1997-02-05T00:00:00Z","ShipAddress":"184, chauss\u00e9e de Tournai","ShipCity":"Lille","ShipCountry":"France","ShipName":"Folies gourmandes","ShipPostalCode":"59000","ShipRegion":null,"ShipVia":1,"ShippedDate":"1997-01-14T00:00:00Z"},{"CustomerID":"VINET","EmployeeID":3,"Freight":11.08,"OrderDate":"1997-11-12T00:00:00Z","OrderID":10739,"RequiredDate":"1997-12-10T00:00:00Z","ShipAddress":"59 rue de l'Abbaye","ShipCity":"Reims","ShipCountry":"France","ShipName":"Vins et alcools Chevalier","ShipPostalCode":"51100","ShipRegion":null,"ShipVia":3,"ShippedDate":"1997-11-17T00:00:00Z"},{"CustomerID":"BONAP","EmployeeID":1,"Freight":11.06,"OrderDate":"1997-05-02T00:00:00Z","OrderID":10525,"RequiredDate":"1997-05-30T00:00:00Z","ShipAddress":"12, rue des Bouchers","ShipCity":"Marseille","ShipCountry":"France","ShipName":"Bon app'","ShipPostalCode":"13008","ShipRegion":null,"ShipVia":2,"ShippedDate":"1997-05-23T00:00:00Z"}] \ No newline at end of file +[{"CustomerID":"FOLIG","EmployeeID":8,"Freight":11.26,"OrderDate":"1997-01-08T00:00:00Z","OrderID":10408,"RequiredDate":"1997-02-05T00:00:00Z","ShipAddress":"184, chauss\u00e9e de Tournai","ShipCity":"Lille","ShipCountry":"France","ShipName":"Folies gourmandes","ShipPostalCode":"59000","ShipRegion":null,"ShipVia":1,"ShippedDate":"1997-01-14T00:00:00Z"},{"CustomerID":"VINET","EmployeeID":3,"Freight":11.08,"OrderDate":"1997-11-12T00:00:00Z","OrderID":10739,"RequiredDate":"1997-12-10T00:00:00Z","ShipAddress":"59 rue de l'Abbaye","ShipCity":"Reims","ShipCountry":"France","ShipName":"Vins et alcools Chevalier","ShipPostalCode":"51100","ShipRegion":null,"ShipVia":3,"ShippedDate":"1997-11-17T00:00:00Z"},{"CustomerID":"BONAP","EmployeeID":1,"Freight":11.06,"OrderDate":"1997-05-02T00:00:00Z","OrderID":10525,"RequiredDate":"1997-05-30T00:00:00Z","ShipAddress":"12, rue des Bouchers","ShipCity":"Marseille","ShipCountry":"France","ShipName":"Bon app'","ShipPostalCode":"13008","ShipRegion":null,"ShipVia":2,"ShippedDate":"1997-05-23T00:00:00Z"}] diff --git a/tests/postgres/fixtures/world_postgres.sql b/tests/postgres/fixtures/world_postgres.sql index 879f63ec0..1e176bbb9 100644 --- a/tests/postgres/fixtures/world_postgres.sql +++ b/tests/postgres/fixtures/world_postgres.sql @@ -5385,4 +5385,3 @@ COMMIT; ANALYZE city; ANALYZE country; ANALYZE countrylanguage; - diff --git a/tests/trello/fixtures/fixture.json b/tests/trello/fixtures/fixture.json index 2521c770f..4a5cfc938 100644 --- a/tests/trello/fixtures/fixture.json +++ b/tests/trello/fixtures/fixture.json @@ -283,4 +283,4 @@ "name": "titi" } ] -} \ No newline at end of file +} diff --git a/toucan_connectors/aircall/Aircall.svg b/toucan_connectors/aircall/Aircall.svg index 7a1fc03ee..d367854d6 100644 --- a/toucan_connectors/aircall/Aircall.svg +++ b/toucan_connectors/aircall/Aircall.svg @@ -17,4 +17,4 @@ - \ No newline at end of file + diff --git a/toucan_connectors/install_scripts/psql.sh b/toucan_connectors/install_scripts/psql.sh index b1a134e57..4ea3d5afe 100755 --- a/toucan_connectors/install_scripts/psql.sh +++ b/toucan_connectors/install_scripts/psql.sh @@ -26,4 +26,4 @@ fi -touch ~/odbcdriver-installed \ No newline at end of file +touch ~/odbcdriver-installed