diff --git a/.circleci/config.yml b/.circleci/config.yml index f5623cb..75f35cf 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -3,7 +3,7 @@ jobs: build: working_directory: ~/phovea docker: - - image: circleci/node:12-browsers + - image: circleci/node:12.13-buster-browsers steps: - checkout - run: @@ -11,31 +11,25 @@ jobs: command: | node -v npm -v - - run: - name: NPM Force Resolutions - command: npx npm-force-resolutions - restore_cache: - key: deps1-{{ .Branch }}-{{ checksum "package-lock.json" }} + key: deps1-{{ .Branch }}-{{ checksum "package.json" }} - run: name: Install npm dependencies - command: npm ci - # - run: - # name: Remove npm dependencies installed from git repositories (avoid caching of old commits) - # command: | - # (grep -l '._resolved.: .\(git[^:]*\|bitbucket\):' ./node_modules/*/package.json || true) | xargs -r dirname | xargs -r rm -rf + command: npm install + - run: + name: Remove npm dependencies installed from git repositories (avoid caching of old commits) + command: | + (grep -l '._resolved.: .\(git[^:]*\|bitbucket\):' ./node_modules/*/package.json || true) | xargs -r dirname | xargs -r rm -rf - save_cache: - key: deps1-{{ .Branch }}-{{ checksum "package-lock.json" }} + key: deps1-{{ .Branch }}-{{ checksum "package.json" }} paths: - ./node_modules - # - run: - # name: Install npm dependencies from git repositories (always get latest commit) - # command: npm install - run: - name: List node_modules directory - command: ls -la ./node_modules + name: Install npm dependencies from git repositories (always get latest commit) + command: npm install - run: name: Show installed npm dependencies - command: npm list --depth=2 || true + command: npm list --depth=1 || true - run: name: Build command: npm run dist diff --git a/.gitattributes b/.gitattributes index 544c336..711da28 100644 --- a/.gitattributes +++ b/.gitattributes @@ -125,3 +125,10 @@ AUTHORS text # with the python modules ``pickle``, ``dbm.*``, # ``shelve``, ``marshal``, ``anydbm``, & ``bsddb`` # (among others). + + +# Mark compiled files as generated to hide them in PRs +/dist/** linguist-generated=true + +# Hide compiled files from git diff and auto-replace them when merging different branches +/dist/** -diff -merge diff --git a/.github/CODEOWNERS b/.github/CODEOWNERS new file mode 100644 index 0000000..18388f8 --- /dev/null +++ b/.github/CODEOWNERS @@ -0,0 +1 @@ +* @thinkh diff --git a/.gitignore b/.gitignore index 7fce761..45a5fb5 100644 --- a/.gitignore +++ b/.gitignore @@ -1,11 +1,14 @@ /.tscache /.idea -/build/ -/dist/ +/lib/ +/dist/tsBuildInfoFile node_modules/ /src/**/*.js /tests/**/*.js -*.map +/src/**/*.map +/tests/**/*.map *.css *.log -/.cache-loader \ No newline at end of file +/.awcache +/.cache-loader +package-lock.json diff --git a/.gitlab-ci.yml b/.gitlab-ci.yml deleted file mode 100644 index 7e48588..0000000 --- a/.gitlab-ci.yml +++ /dev/null @@ -1,46 +0,0 @@ -image: circleci/node:12-browsers - -variables: - GIT_DEPTH: "1" - -cache: - key: "$CI_REPOSITORY_URL-$CI_COMMIT_REF_NAME" - paths: - - node_modules - -before_script: - # Install ssh-agent if not already installed, it is required by Docker. - # (change apt-get to yum if you use a CentOS-based image) - - 'which ssh-agent || ( apt-get update -y && apt-get install openssh-client -y )' - - # Run ssh-agent (inside the build environment) - - eval $(ssh-agent -s) - - # Add the SSH key stored in SSH_PRIVATE_KEY variable to the agent store - - ssh-add <(echo "$SSH_PRIVATE_KEY") - - # For Docker builds disable host key checking. Be aware that by adding that - # you are suspectible to man-in-the-middle attacks. - # WARNING: Use this only with the Docker executor, if you use it with shell - # you will overwrite your user's SSH config. - - mkdir -p ~/.ssh - - '[[ -f /.dockerenv ]] && echo -e "Host *\n\tStrictHostKeyChecking no\n\n" > ~/.ssh/config' - -stages: - - install - - build - -install-npm-wee: - stage: install - script: - - npm install - -dist: - stage: build - script: - - npm run dist - allow_failure: false - artifacts: - expire_in: 1 week - paths: - - dist diff --git a/.yo-rc.json b/.yo-rc.json index 1addf74..bded93f 100644 --- a/.yo-rc.json +++ b/.yo-rc.json @@ -2,12 +2,17 @@ "generator-phovea": { "type": "app", "name": "vega_clue", - "app": "Vega CLUE", + "app": "vega_clue", "author": "The Caleydo Team", "githubAccount": "caleydo", "clientOnly": false, "entries": { - "app": "./src/index.ts" + "app": { + "js": "dist/initialize.js", + "template": "dist/index.template.ejs", + "html": "index.html", + "chunkName": "app" + } }, "libraries": [ "d3" @@ -17,8 +22,17 @@ "phovea_ui", "phovea_clue" ], + "vendors": { + "others": "phovea.*|tdp_.*|tdp-.*|datavisyn.*", + "phovea": "phovea.*", + "tdp": "tdp_.|tdp-.*", + "dv": "datavisyn.*" + }, + "filesToLoad": { + "file-loader": "404|robots" + }, "libraryAliases": { - "d3": "d3/d3" + "d3": "d3/d3.js" }, "libraryExternals": [ "d3", @@ -28,6 +42,12 @@ ], "ignores": [], "extensions": [], - "today": "Tue, 13 Mar 2018 10:20:09 GMT" + "today": "Tue, 13 Mar 2018 10:20:09 GMT", + "promptValues": { + "authorName": "The Caleydo Team", + "authorEmail": "contact@caleydo.org", + "authorUrl": "https://caleydo.org", + "githubAccount": "caleydo" + } } } diff --git a/AppWrapper.d.ts b/AppWrapper.d.ts new file mode 100644 index 0000000..dff8ba8 --- /dev/null +++ b/AppWrapper.d.ts @@ -0,0 +1,46 @@ +import { ACLUEWrapper, CLUEGraphManager, IVisStateApp } from 'phovea_clue'; +import { AppHeader } from 'phovea_ui'; +import { ProvenanceGraph } from 'phovea_core'; +import App from './internal/App'; +export interface IView { + init(): Promise; + remove(): any; +} +export interface IAppWrapperOptions { + /** + * name of this application + */ + name: string; + /** + * prefix used for provenance graphs and used to identify matching provenance graphs + */ + prefix: string; + /** + * Show/hide the EU cookie disclaimer bar from `cookie-bar.eu` + */ + showCookieDisclaimer: boolean; +} +/** + * The main class for the App app + */ +export declare class AppWrapper & IVisStateApp> extends ACLUEWrapper { + protected readonly options: IAppWrapperOptions; + protected app: Promise; + protected header: AppHeader; + constructor(options?: Partial); + init(): Promise; + protected buildImpl(body: HTMLElement): { + graph: Promise; + manager: CLUEGraphManager; + storyVis: () => Promise; + provVis: () => Promise; + }; + /** + * build the actual main application given the arguments + * @param {ProvenanceGraph} graph the resolved current provenance graph + * @param {CLUEGraphManager} manager its manager + * @param {HTMLElement} main root dom element + * @returns {PromiseLike | T} + */ + protected createApp(graph: ProvenanceGraph, manager: CLUEGraphManager, main: HTMLElement): PromiseLike | App; +} diff --git a/README.md b/README.md index 09c8100..15c5e77 100644 --- a/README.md +++ b/README.md @@ -1,5 +1,7 @@ -Vega CLUE [![Phovea][phovea-image]][phovea-url] [![NPM version][npm-image]][npm-url] [![Build Status][travis-image]][travis-url] [![Dependency Status][daviddm-image]][daviddm-url] [![Build Status][circleci-image]][circleci-url] +Vega CLUE ===================== +[![Phovea][phovea-image]][phovea-url] [![NPM version][npm-image]][npm-url] [![Build Status][circleci-image]][circleci-url] + [Vega examples](https://vega.github.io/vega/examples/) with [CLUE](https://github.com/phovea/phovea_clue) @@ -44,9 +46,5 @@ This repository is part of **[Phovea](http://phovea.caleydo.org/)**, a platform [phovea-url]: https://phovea.caleydo.org [npm-image]: https://badge.fury.io/js/vega_clue.svg [npm-url]: https://npmjs.org/package/vega_clue -[travis-image]: https://travis-ci.org/Caleydo/vega_clue.svg?branch=master -[travis-url]: https://travis-ci.org/Caleydo/vega_clue -[daviddm-image]: https://david-dm.org/Caleydo/vega_clue/status.svg -[daviddm-url]: https://david-dm.org/Caleydo/vega_clue -[circleci-image]: https://circleci.com/gh/Caleydo/vega_clue/tree/master.svg?style=svg -[circleci-url]: https://circleci.com/gh/Caleydo/vega_clue/tree/master \ No newline at end of file +[circleci-image]: https://circleci.com/gh/Caleydo/vega_clue.svg?style=shield +[circleci-url]: https://circleci.com/gh/Caleydo/vega_clue diff --git a/dist/AppWrapper.d.ts b/dist/AppWrapper.d.ts new file mode 100644 index 0000000..dff8ba8 --- /dev/null +++ b/dist/AppWrapper.d.ts @@ -0,0 +1,46 @@ +import { ACLUEWrapper, CLUEGraphManager, IVisStateApp } from 'phovea_clue'; +import { AppHeader } from 'phovea_ui'; +import { ProvenanceGraph } from 'phovea_core'; +import App from './internal/App'; +export interface IView { + init(): Promise; + remove(): any; +} +export interface IAppWrapperOptions { + /** + * name of this application + */ + name: string; + /** + * prefix used for provenance graphs and used to identify matching provenance graphs + */ + prefix: string; + /** + * Show/hide the EU cookie disclaimer bar from `cookie-bar.eu` + */ + showCookieDisclaimer: boolean; +} +/** + * The main class for the App app + */ +export declare class AppWrapper & IVisStateApp> extends ACLUEWrapper { + protected readonly options: IAppWrapperOptions; + protected app: Promise; + protected header: AppHeader; + constructor(options?: Partial); + init(): Promise; + protected buildImpl(body: HTMLElement): { + graph: Promise; + manager: CLUEGraphManager; + storyVis: () => Promise; + provVis: () => Promise; + }; + /** + * build the actual main application given the arguments + * @param {ProvenanceGraph} graph the resolved current provenance graph + * @param {CLUEGraphManager} manager its manager + * @param {HTMLElement} main root dom element + * @returns {PromiseLike | T} + */ + protected createApp(graph: ProvenanceGraph, manager: CLUEGraphManager, main: HTMLElement): PromiseLike | App; +} diff --git a/dist/AppWrapper.js b/dist/AppWrapper.js new file mode 100644 index 0000000..2556665 --- /dev/null +++ b/dist/AppWrapper.js @@ -0,0 +1,109 @@ +import { APP_NAME } from './language'; +import { ACLUEWrapper, CLUEGraphManager, ProvenanceGraphMenu, ProvRetrievalPanel, LoginMenu, VisLoader, ButtonModeSelector } from 'phovea_clue'; +import { AppHeaderLink, AppHeader } from 'phovea_ui'; +import { BaseUtils, I18nextManager, MixedStorageProvenanceGraphManager } from 'phovea_core'; +import { showProveanceGraphNotFoundDialog } from './dialogs'; +import App from './internal/App'; +/** + * The main class for the App app + */ +export class AppWrapper extends ACLUEWrapper { + constructor(options = {}) { + super(); + this.options = { + name: 'App', + prefix: 'app', + showCookieDisclaimer: false, + }; + this.app = null; + BaseUtils.mixin(this.options, options); + } + async init() { + await I18nextManager.getInstance().initI18n(); // Initialize i18n and then load application + await this.build(document.body, { replaceBody: true }); + } + buildImpl(body) { + //create the common header + const headerOptions = { + showCookieDisclaimer: this.options.showCookieDisclaimer, + showOptionsLink: false, + appLink: new AppHeaderLink(APP_NAME, (event) => { + event.preventDefault(); + return false; + }) + }; + this.header = AppHeader.create(body.querySelector('div.box'), headerOptions); + this.on('jumped_to,loaded_graph', () => this.header.ready()); + //load all available provenance graphs + const manager = new MixedStorageProvenanceGraphManager({ + prefix: this.options.prefix, + storage: localStorage, + application: this.options.prefix + }); + const clueManager = new CLUEGraphManager(manager); + this.header.wait(); + const loginMenu = new LoginMenu(this.header, { + insertIntoHeader: true, + }); + const provenanceMenu = new ProvenanceGraphMenu(clueManager, body, false); + this.header.insertCustomRightMenu(provenanceMenu.node); + const modeSelector = body.querySelector('header'); + modeSelector.classList.add('collapsed'); + modeSelector.classList.add('clue-modeselector'); + const main = document.body.querySelector('main'); + //wrapper around to better control when the graph will be resolved + let graphResolver; + const graph = new Promise((resolve, reject) => graphResolver = resolve); + graph.catch((error) => { + showProveanceGraphNotFoundDialog(clueManager, error.graph); + }); + graph.then((graph) => { + clueManager.list().then((graphs) => { + provenanceMenu.build(graphs); + provenanceMenu.setGraph(graph); + }); + ButtonModeSelector.createButton(modeSelector, { + size: 'sm' + }); + }); + const provVis = VisLoader.loadProvenanceGraphVis(graph, body.querySelector('div.asides'), { + thumbnails: false, + provVisCollapsed: true, + hideCLUEButtonsOnCollapse: true + }); + const storyVis = VisLoader.loadStoryVis(graph, body.querySelector('div.asides'), main, { + thumbnails: false + }); + this.app = graph.then((graph) => this.createApp(graph, clueManager, main)); + Promise.all([graph, this.app]).then((args) => { + const graph = args[0]; + const app = args[1]; + ProvRetrievalPanel.create(graph, body.querySelector('div.asides'), { + app, + captureNonPersistedStates: false, + startCollapsed: true + }); + if (!graph.isEmpty) { + //just if no other option applies jump to the stored state + this.jumpToStoredOrLastState(); + } + else { + // TODO custom session init if needed + } + }); + graphResolver(clueManager.chooseLazy(true)); + return { graph, manager: clueManager, storyVis, provVis }; + } + /** + * build the actual main application given the arguments + * @param {ProvenanceGraph} graph the resolved current provenance graph + * @param {CLUEGraphManager} manager its manager + * @param {HTMLElement} main root dom element + * @returns {PromiseLike | T} + */ + createApp(graph, manager, main) { + const app = new App(graph, manager, main); + return app.init(); + } +} +//# sourceMappingURL=AppWrapper.js.map \ No newline at end of file diff --git a/dist/AppWrapper.js.map b/dist/AppWrapper.js.map new file mode 100644 index 0000000..904d7bf --- /dev/null +++ b/dist/AppWrapper.js.map @@ -0,0 +1 @@ +{"version":3,"file":"AppWrapper.js","sourceRoot":"","sources":["../src/AppWrapper.ts"],"names":[],"mappings":"AACA,OAAO,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAC;AACpC,OAAO,EAAC,YAAY,EAAE,gBAAgB,EAAgB,mBAAmB,EAAE,kBAAkB,EAAE,SAAS,EAAE,SAAS,EAAE,kBAAkB,EAAC,MAAM,aAAa,CAAC;AAC5J,OAAO,EAAC,aAAa,EAAE,SAAS,EAAC,MAAM,WAAW,CAAC;AACnD,OAAO,EAAC,SAAS,EAAE,cAAc,EAAE,kCAAkC,EAAkB,MAAM,aAAa,CAAC;AAC3G,OAAO,EAAC,gCAAgC,EAAC,MAAM,WAAW,CAAC;AAC3D,OAAO,GAAG,MAAM,gBAAgB,CAAC;AAwBjC;;GAEG;AACH,MAAM,OAAO,UAA8C,SAAQ,YAAY;IAW7E,YAAY,UAAuC,EAAE;QACnD,KAAK,EAAE,CAAC;QAVS,YAAO,GAAuB;YAC/C,IAAI,EAAE,KAAK;YACX,MAAM,EAAE,KAAK;YACb,oBAAoB,EAAE,KAAK;SAC5B,CAAC;QAEQ,QAAG,GAAiB,IAAI,CAAC;QAKjC,SAAS,CAAC,KAAK,CAAC,IAAI,CAAC,OAAO,EAAE,OAAO,CAAC,CAAC;IACzC,CAAC;IAEM,KAAK,CAAC,IAAI;QACf,MAAM,cAAc,CAAC,WAAW,EAAE,CAAC,QAAQ,EAAE,CAAC,CAAC,4CAA4C;QAC3F,MAAM,IAAI,CAAC,KAAK,CAAC,QAAQ,CAAC,IAAI,EAAE,EAAC,WAAW,EAAE,IAAI,EAAC,CAAC,CAAC;IACvD,CAAC;IAES,SAAS,CAAC,IAAiB;QACnC,0BAA0B;QAC1B,MAAM,aAAa,GAAG;YACpB,oBAAoB,EAAE,IAAI,CAAC,OAAO,CAAC,oBAAoB;YACvD,eAAe,EAAE,KAAK;YACtB,OAAO,EAAE,IAAI,aAAa,CAAC,QAAQ,EAAE,CAAC,KAAK,EAAE,EAAE;gBAC7C,KAAK,CAAC,cAAc,EAAE,CAAC;gBACvB,OAAO,KAAK,CAAC;YACf,CAAC,CAAC;SACH,CAAC;QACF,IAAI,CAAC,MAAM,GAAG,SAAS,CAAC,MAAM,CAAc,IAAI,CAAC,aAAa,CAAC,SAAS,CAAC,EAAE,aAAa,CAAC,CAAC;QAE1F,IAAI,CAAC,EAAE,CAAC,wBAAwB,EAAE,GAAG,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,EAAE,CAAC,CAAC;QAC7D,sCAAsC;QACtC,MAAM,OAAO,GAAG,IAAI,kCAAkC,CAAC;YACrD,MAAM,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM;YAC3B,OAAO,EAAE,YAAY;YACrB,WAAW,EAAE,IAAI,CAAC,OAAO,CAAC,MAAM;SACjC,CAAC,CAAC;QACH,MAAM,WAAW,GAAG,IAAI,gBAAgB,CAAC,OAAO,CAAC,CAAC;QAElD,IAAI,CAAC,MAAM,CAAC,IAAI,EAAE,CAAC;QAEnB,MAAM,SAAS,GAAG,IAAI,SAAS,CAAC,IAAI,CAAC,MAAM,EAAE;YAC3C,gBAAgB,EAAE,IAAI;SACvB,CAAC,CAAC;QAEH,MAAM,cAAc,GAAG,IAAI,mBAAmB,CAAC,WAAW,EAAE,IAAI,EAAE,KAAK,CAAC,CAAC;QACzE,IAAI,CAAC,MAAM,CAAC,qBAAqB,CAAC,cAAc,CAAC,IAAI,CAAC,CAAC;QAEvD,MAAM,YAAY,GAAG,IAAI,CAAC,aAAa,CAAC,QAAQ,CAAC,CAAC;QAClD,YAAY,CAAC,SAAS,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;QACxC,YAAY,CAAC,SAAS,CAAC,GAAG,CAAC,mBAAmB,CAAC,CAAC;QAEhD,MAAM,IAAI,GAAgB,QAAQ,CAAC,IAAI,CAAC,aAAa,CAAC,MAAM,CAAC,CAAC;QAE9D,kEAAkE;QAClE,IAAI,aAA4D,CAAC;QACjE,MAAM,KAAK,GAAG,IAAI,OAAO,CAAkB,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE,CAAC,aAAa,GAAG,OAAO,CAAC,CAAC;QAEzF,KAAK,CAAC,KAAK,CAAC,CAAC,KAAsB,EAAE,EAAE;YACrC,gCAAgC,CAAC,WAAW,EAAE,KAAK,CAAC,KAAK,CAAC,CAAC;QAC7D,CAAC,CAAC,CAAC;QAEH,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,EAAE;YACnB,WAAW,CAAC,IAAI,EAAE,CAAC,IAAI,CAAC,CAAC,MAAM,EAAE,EAAE;gBACjC,cAAc,CAAC,KAAK,CAAC,MAAM,CAAC,CAAC;gBAC7B,cAAc,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;YACjC,CAAC,CAAC,CAAC;YAEH,kBAAkB,CAAC,YAAY,CAAC,YAAY,EAAE;gBAC5C,IAAI,EAAE,IAAI;aACX,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;QAEH,MAAM,OAAO,GAAG,SAAS,CAAC,sBAAsB,CAAC,KAAK,EAAE,IAAI,CAAC,aAAa,CAAC,YAAY,CAAC,EAAE;YACxF,UAAU,EAAE,KAAK;YACjB,gBAAgB,EAAE,IAAI;YACtB,yBAAyB,EAAE,IAAI;SAChC,CAAC,CAAC;QAEH,MAAM,QAAQ,GAAG,SAAS,CAAC,YAAY,CAAC,KAAK,EAAe,IAAI,CAAC,aAAa,CAAC,YAAY,CAAC,EAAE,IAAI,EAAE;YAClG,UAAU,EAAE,KAAK;SAClB,CAAC,CAAC;QAEH,IAAI,CAAC,GAAG,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC,KAAK,EAAE,EAAE,CAAC,IAAI,CAAC,SAAS,CAAC,KAAK,EAAE,WAAW,EAAE,IAAI,CAAC,CAAC,CAAC;QAE3E,OAAO,CAAC,GAAG,CAAC,CAAC,KAAK,EAAE,IAAI,CAAC,GAAG,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE;YAC3C,MAAM,KAAK,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;YACtB,MAAM,GAAG,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;YAEpB,kBAAkB,CAAC,MAAM,CAAC,KAAK,EAAE,IAAI,CAAC,aAAa,CAAC,YAAY,CAAC,EAAE;gBACjE,GAAG;gBACH,yBAAyB,EAAE,KAAK;gBAChC,cAAc,EAAE,IAAI;aACrB,CAAC,CAAC;YAEH,IAAI,CAAC,KAAK,CAAC,OAAO,EAAE;gBAClB,0DAA0D;gBAC1D,IAAI,CAAC,uBAAuB,EAAE,CAAC;aAChC;iBAAM;gBACL,qCAAqC;aACtC;QACH,CAAC,CAAC,CAAC;QAEH,aAAa,CAAC,WAAW,CAAC,UAAU,CAAC,IAAI,CAAC,CAAC,CAAC;QAE5C,OAAO,EAAC,KAAK,EAAE,OAAO,EAAE,WAAW,EAAE,QAAQ,EAAE,OAAO,EAAC,CAAC;IAC1D,CAAC;IAED;;;;;;OAMG;IACO,SAAS,CAAC,KAAsB,EAAE,OAAyB,EAAE,IAAiB;QACtF,MAAM,GAAG,GAAG,IAAI,GAAG,CAAC,KAAK,EAAE,OAAO,EAAE,IAAI,CAAC,CAAC;QAC1C,OAAO,GAAG,CAAC,IAAI,EAAE,CAAC;IACpB,CAAC;CACF"} \ No newline at end of file diff --git a/data/gapminder/childmortality.txt b/dist/data/gapminder/childmortality.txt similarity index 100% rename from data/gapminder/childmortality.txt rename to dist/data/gapminder/childmortality.txt diff --git a/data/gapminder/continent.txt b/dist/data/gapminder/continent.txt similarity index 100% rename from data/gapminder/continent.txt rename to dist/data/gapminder/continent.txt diff --git a/data/gapminder/fertility.txt b/dist/data/gapminder/fertility.txt similarity index 100% rename from data/gapminder/fertility.txt rename to dist/data/gapminder/fertility.txt diff --git a/data/gapminder/gapminder.json b/dist/data/gapminder/gapminder.json similarity index 100% rename from data/gapminder/gapminder.json rename to dist/data/gapminder/gapminder.json diff --git a/dist/data/gapminder/gapminder.vg.json b/dist/data/gapminder/gapminder.vg.json new file mode 100644 index 0000000..e24ec90 --- /dev/null +++ b/dist/data/gapminder/gapminder.vg.json @@ -0,0 +1,732 @@ +{ + "$schema": "https://vega.github.io/schema/vega/v3.json", + "description": "Gapminder-inspired example with a linked map. Selected are countries are highlighted in both visualizations.", + "padding": {"left": 60, "top": 5, "right": 5, "bottom": 5}, + "layout": { + "align": "each", + "padding": 20, + "columns": 2 + }, + "data": [ + { + "name": "gapminder", + "values": [] + }, + { + "name": "thisYear", + "source": "gapminder", + "transform": [ + { "type": "filter", "expr": "datum.year == currentYear" } + ] + }, + { + "name": "continents", + "source": "gapminder", + "transform": [ + { "type": "aggregate", "groupby": ["continent"] } + ] + }, + { + "name": "mainReligions", + "source": "gapminder", + "transform": [ + { "type": "aggregate", "groupby": ["main_religion"] } + ] + }, + { + "name": "countries", + "source": "gapminder", + "transform": [ + { "type": "aggregate", "groupby": ["country"] } + ] + }, + { + "name": "filteredCountries", + "source": "countries", + "transform": [ + { + "type": "lookup", + "from": "thisYear", "key": "country", + "fields": ["country"], "as": ["this"], + "default": {} + }, + { + "type": "formula", + "as": "x", + "expr": "datum.this[xField]" + }, + { + "type": "formula", + "as": "y", + "expr": "datum.this[yField]" + }, + { + "type": "formula", + "as": "size", + "expr": "datum.this[sizeField]" + }, + { + "type": "formula", + "as": "color", + "expr": "datum.this[colorField]" + }, + { + "type": "formula", + "as": "map_id", + "expr": "datum.this.map_id" + } + ] + }, + { + "name": "selectedCountries", + "on": [ + { "trigger": "clear", "remove": true }, + { "trigger": "!shift", "remove": true }, + { "trigger": "!shift && clicked", "insert": "clicked" }, + { "trigger": "shift && clicked", "toggle": "clicked" } + ], + "search": { + "type": "set", + "title": "{{datum.country}}", + "group": { "signal": "groupLabelCountries" }, + "fill": { "source": "countries" } + } + }, + { + "name": "world", + "url": "data/world-110m.json", + "format": { + "type": "topojson", + "feature": "countries" + }, + "transform": [ + { + "type": "lookup", + "from": "filteredCountries", "key": "map_id", + "fields": ["id"], "as": ["countryRef"], + "default": {} + } + ] + }, + { + "name": "graticule", + "transform": [ + { "type": "graticule", "step": [15, 15] } + ] + } + ], + "signals": [ + { "name": "gapminderWidth", "value": 600 }, + { "name": "gapminderHeight", "value": 400 }, + { "name": "mapWidth", "value": 600 }, + { "name": "mapHeight", "value": 400 }, + { + "name": "hoverMapCountry", + "value": {}, + "on": [ + { "events": "@mapCountry:mouseover", "update": "datum", "force": true }, + { "events": "@mapCountry:mouseout", "update": "{}", "force": true } + ] + }, + { + "name": "hoverGapminderCountry", + "value": {}, + "on": [ + { "events": "@point:mouseover", "update": "datum", "force": true }, + { "events": "@point:mouseout", "update": "{}", "force": true } + ] + }, + { + "name": "selectedCountries", + "on": [ + { "events": { "signal": "clicked" }, "update": "null", "force": true } + ], + "track": { + "async": [ + { "data": "selectedCountries", "as": "allCountries" }, + { "signal": "clicked", "as": "lastCountry" } + ], + "title": "Selected {{lastCountry.country}} ({{allCountries.length}} Countries)", + "category": "selection", + "operation": "update" + } + }, + { + "name": "clear", + "value": true, + "on": [ + { "events": "mouseup[!event.item]", "update": "true", "force": true } + ], + "track": { + "async": [], + "title": "No Countries Selected", + "category": "selection", + "operation": "update" + } + }, + { + "name": "shift", + "value": false, + "on": [ + { "events": "@point:click", "update": "event.shiftKey", "force": true }, + { "events": "@mapCountry:click", "update": "event.shiftKey", "force": true } + ] + }, + { + "name": "clicked", + "value": null, + "on": [ + { "events": "@point:click", "update": "datum", "force": true }, + { "events": "@mapCountry:click", "update": "datum.countryRef", "force": true } + ] + }, + { + "name": "currentYear", + "value": 1800, + "bind": { "input": "range", "min": 1800, "max": 2015, "step": 1 }, + "track": { + "title": "Selected Year {{value}}" + }, + "search": { + "type": "number", + "title": "{{value}}", + "group": { "signal": "groupLabelYear" }, + "fill": { + "range": { "min": 1800, "max": 2015, "step": 1 } + } + } + }, + { + "name": "xField", + "value": "gdp", + "bind": { "input": "select", "options": ["gdp", "child_mortality", "fertility", "life_expect", "population"] }, + "track": { + "title": "X = {{value}}", + "category": "data", + "operation": "update" + }, + "search": { + "type": "category", + "title": "{{value}}", + "group": { "signal": "groupLabelAttributes" } + } + }, + { + "name": "yField", + "value": "life_expect", + "bind": { "input": "select", "options": ["gdp", "child_mortality", "fertility", "life_expect", "population"] }, + "track": { + "title": "Y = {{value}}", + "category": "data", + "operation": "update" + }, + "search": { + "type": "category", + "title": "{{value}}", + "group": { "signal": "groupLabelAttributes" } + } + }, + { + "name": "sizeField", + "value": "population", + "bind": { "input": "select", "options": ["gdp", "child_mortality", "fertility", "life_expect", "population"] }, + "track": { + "title": "Size = {{value}}", + "category": "data", + "operation": "update" + }, + "search": { + "type": "category", + "title": "{{value}}", + "group": { "signal": "groupLabelAttributes" } + } + }, + { + "name": "colorField", + "value": "continent", + "bind": { "input": "select", "options": ["continent", "main_religion"] }, + "track": { + "title": "Color = {{value}}", + "category": "data", + "operation": "update" + }, + "search": { + "type": "category", + "title": "{{value}}", + "group": { "signal": "groupLabelAttributes" } + } + }, + { + "name": "updateStatistics", + "description": "Collect all variables that could change and trigger an update for the statistic values", + "on": [ + { "events": { "signal": "clicked" }, "update": "null", "force": true }, + { "events": { "signal": "clear" }, "update": "null", "force": true }, + { "events": { "signal": "currentYear" }, "update": "null", "force": true }, + { "events": { "signal": "xField" }, "update": "null", "force": true }, + { "events": { "signal": "yField" }, "update": "null", "force": true }, + { "events": { "signal": "sizeField" }, "update": "null", "force": true }, + { "events": { "signal": "colorField" }, "update": "null", "force": true } + ] + }, + { + "name": "outlying", + "description": "Statistics needs to be implemented. Random value as proof of concept.", + "value": 0, + "on": [ + { "events": { "signal": "updateStatistics" }, "update": "random()" } + ], + "search": { + "type": "number", + "title": "{{name}} = {{round value 2}}", + "group": { "signal": "groupLabelStatistics" } + } + }, + { + "name": "skewed", + "description": "Statistics needs to be implemented. Random value as proof of concept.", + "value": 0, + "on": [ + { "events": { "signal": "updateStatistics" }, "update": "random()" } + ], + "search": { + "type": "number", + "title": "{{name}} = {{round value 2}}", + "group": { "signal": "groupLabelStatistics" } + } + }, + { + "name": "clumpy", + "description": "Statistics needs to be implemented. Random value as proof of concept.", + "value": 0, + "on": [ + { "events": { "signal": "updateStatistics" }, "update": "random()" } + ], + "search": { + "type": "number", + "title": "{{name}} = {{round value 2}}", + "group": { "signal": "groupLabelStatistics" } + } + }, + { + "name": "sparse", + "description": "Statistics needs to be implemented. Random value as proof of concept.", + "value": 0, + "on": [ + { "events": { "signal": "updateStatistics" }, "update": "random()" } + ], + "search": { + "type": "number", + "title": "{{name}} = {{round value 2}}", + "group": { "signal": "groupLabelStatistics" } + } + }, + { + "name": "striated", + "description": "Statistics needs to be implemented. Random value as proof of concept.", + "value": 0, + "on": [ + { "events": { "signal": "updateStatistics" }, "update": "random()" } + ], + "search": { + "type": "number", + "title": "{{name}} = {{round value 2}}", + "group": { "signal": "groupLabelStatistics" } + } + }, + { + "name": "convex", + "description": "Statistics needs to be implemented. Random value as proof of concept.", + "value": 0, + "on": [ + { "events": { "signal": "updateStatistics" }, "update": "random()" } + ], + "search": { + "type": "number", + "title": "{{name}} = {{round value 2}}", + "group": { "signal": "groupLabelStatistics" } + } + }, + { + "name": "skinny", + "description": "Statistics needs to be implemented. Random value as proof of concept.", + "value": 0, + "on": [ + { "events": { "signal": "updateStatistics" }, "update": "random()" } + ], + "search": { + "type": "number", + "title": "{{name}} = {{round value 2}}", + "group": { "signal": "groupLabelStatistics" } + } + }, + { + "name": "stringy", + "description": "Statistics needs to be implemented. Random value as proof of concept.", + "on": [ + { "events": { "signal": "updateStatistics" }, "update": "random()" } + ], + "search": { + "type": "number", + "title": "{{name}} = {{round value 2}}", + "group": { "signal": "groupLabelStatistics" } + } + }, + { + "name": "monotonic", + "description": "Statistics needs to be implemented. Random value as proof of concept.", + "value": 0, + "on": [ + { "events": { "signal": "updateStatistics" }, "update": "random()" } + ], + "search": { + "type": "number", + "title": "{{name}} = {{round value 2}}", + "group": { "signal": "groupLabelStatistics" } + } + }, + { + "name": "groupLabelStatistics", + "value": "Scatterplot Statistics" + }, + { + "name": "groupLabelAttributes", + "value": "Attributes" + }, + { + "name": "groupLabelCountries", + "value": "Selected Countries" + }, + { + "name": "groupLabelYear", + "value": "Selected Year" + }, + { + "name": "groupLabelProjection", + "value": "Selected Map Projection" + }, + { + "name": "projectionType", + "value": "mercator", + "bind": { + "input": "select", + "options": [ + "albers", + "albersUsa", + "azimuthalEqualArea", + "azimuthalEquidistant", + "conicConformal", + "conicEqualArea", + "conicEquidistant", + "equirectangular", + "gnomonic", + "mercator", + "orthographic", + "stereographic", + "transverseMercator" + ] + }, + "track": { + "title": "Projection = {{value}}", + "category": "visual", + "operation": "update" + }, + "search": { + "type": "category", + "title": "{{value}}", + "group": { "signal": "groupLabelProjection" } + } + } + ], + "scales": [ + { + "name": "size", + "type": "linear", "nice": true, "zero": false, + "domain": { "data": "gapminder", "field": { "signal": "sizeField" } }, + "range": [40, 6400] + }, + { + "name": "color", + "type": "ordinal", + "domain": { "data": "gapminder", "field": { "signal": "colorField" } }, + "range": "category" + } + ], + "marks": [ + { + "name": "gapminderGroup", + "type": "group", + "signals": [ + { "name": "width", "update": "gapminderWidth" }, + { "name": "height", "update": "gapminderHeight" } + ], + "encode": { + "enter": { + "width": { "signal": "gapminderWidth" }, + "height": { "signal": "gapminderHeight" } + } + }, + "scales": [ + { + "name": "x", + "type": "log", "nice": true, + "domain": { "data": "gapminder", "field": { "signal": "xField" } }, + "range": "width" + }, + { + "name": "y", + "type": "linear", "nice": true, "zero": false, + "domain": { "data": "gapminder", "field": { "signal": "yField" } }, + "range": "height" + } + ], + "axes": [ + { + "title": { "signal": "xField" }, + "orient": "bottom", "scale": "x", + "grid": true, "tickCount": 5 + }, + { + "title": { "signal": "yField" }, + "orient": "left", "scale": "y", + "grid": true, "tickCount": 5 + } + ], + "marks": [ + { + "type": "text", + "encode": { + "update": { + "text": { "signal": "currentYear" }, + "x": { "signal": "width / 2" }, + "y": { "signal": "height / 2" }, + "dx": { "signal": "-180" }, + "dy": { "signal": "40" }, + "fill": { "value": "grey" }, + "fillOpacity": { "value": 0.20 }, + "fontSize": { "signal": "width / 4" }, + "fontWeight": { "value": "bold" } + } + } + }, + { + "name": "point", + "type": "symbol", + "from": { "data": "filteredCountries" }, + "encode": { + "update": { + "fill": { "scale": "color", "field": "color" }, + "x": { "scale": "x", "field": "x" }, + "y": { "scale": "y", "field": "y" }, + "size": { "scale": "size", "field": "size" }, + "fillOpacity": [ + { + "test": "indata('selectedCountries', 'country', datum.country)", + "value": 1 + }, + { + "test": "datum.map_id == hoverMapCountry.id", + "value": 1 + }, + { "value": 0.5 } + ], + "tooltip": { "signal": "datum.country" } + }, + "hover": { + "fillOpacity": [ + { "value": 0.8 } + ] + } + } + }, + { + "type": "text", + "from": { "data": "filteredCountries" }, + "interactive": false, + "encode": { + "enter": { + "fill": { "value": "#333" }, + "fontSize": { "value": 14 }, + "fontWeight": { "value": "bold" }, + "text": { "field": "country" }, + "align": { "value": "center" }, + "baseline": { "value": "bottom" } + }, + "update": { + "x": { "scale": "x", "field": "x" }, + "y": { "scale": "y", "field": "y", "offset": -7 }, + "fillOpacity": [ + { + "test": "indata('selectedCountries', 'country', datum.country)", + "value": 0.8 + }, + { "value": 0 } + ] + } + } + } + ] + }, + { + "name": "legendGroup", + "type": "group", + "legends": [ + { + "fill": "color", + "title": { "signal": "colorField" }, + "orient": "right", + "encode": { + "symbols": { + "enter": { + "fillOpacity": { "value": 0.5 } + } + }, + "labels": { + "update": { + "text": { "field": "value" } + } + } + } + } + ] + }, + { + "name": "mapGroup", + "type": "group", + "signals": [ + { "name": "width", "update": "mapWidth" }, + { "name": "height", "update": "mapHeight" }, + { "name": "translate", "update": "[mapWidth / 2, mapHeight / 2]" }, + { + "name": "scale", + "value": 100, + "on": [{ + "events": { "type": "wheel", "consume": true }, + "update": "clamp(scale * pow(1.0005, -event.deltaY * pow(16, event.deltaMode)), 100, 3000)" + }] + }, + { + "name": "angles", + "value": [0, 0], + "on": [{ + "events": "mousedown", + "update": "[rotateX, centerY]" + }] + }, + { + "name": "cloned", + "value": null, + "on": [{ + "events": "mousedown", + "update": "copy('projection')" + }] + }, + { + "name": "start", + "value": null, + "on": [{ + "events": "mousedown", + "update": "invert(cloned, xy())" + }] + }, + { + "name": "drag", "value": null, + "on": [{ + "events": "[mousedown, window:mouseup] > window:mousemove", + "update": "invert(cloned, xy())" + }] + }, + { + "name": "delta", "value": null, + "on": [{ + "events": { "signal": "drag" }, + "update": "[drag[0] - start[0], start[1] - drag[1]]" + }] + }, + { + "name": "rotateX", "value": 0, + "on": [{ + "events": { "signal": "delta" }, + "update": "angles[0] + delta[0]" + }] + }, + { + "name": "centerY", "value": 0, + "on": [{ + "events": { "signal": "delta" }, + "update": "clamp(angles[1] + delta[1], -60, 60)" + }] + } + ], + "encode": { + "enter": { + "width": { "signal": "mapWidth" }, + "height": { "signal": "mapHeight" }, + "clip": { "value": true } + } + }, + "projections": [ + { + "name": "projection", + "type": { "signal": "projectionType" }, + "scale": { "signal": "scale" }, + "rotate": [{ "signal": "rotateX" }, 0, 0], + "center": [0, { "signal": "centerY" }], + "translate": { "signal": "translate" } + } + ], + "marks": [ + { + "type": "shape", + "from": { "data": "graticule" }, + "encode": { + "update": { + "strokeWidth": { "value": 1 }, + "stroke": { "value": "#ddd" } + } + }, + "transform": [ + { "type": "geoshape", "projection": "projection" } + ] + }, + { + "name": "mapCountry", + "type": "shape", + "from": { "data": "world" }, + "encode": { + "update": { + "strokeWidth": { "value": 0.5 }, + "stroke": { "value": "grey" }, + "fill": [ + { + "test": "indata('selectedCountries', 'country', datum.countryRef.country)", + "signal": "scale('color', datum.countryRef.color)" + }, + { + "test": "datum.id == hoverGapminderCountry.map_id", + "signal": "scale('color', datum.countryRef.color)" + }, + { "value": "lightgrey" } + ], + "tooltip": { "signal": "(isString(datum.countryRef.country)) ? datum.countryRef.country : 'No data available'" }, + "zindex": { "value": 0 } + }, + "hover": { + "fill": [ + { + "test": "isString(datum.countryRef.color)", + "signal": "scale('color', datum.countryRef.color)" + }, + { "value": "grey" } + ], + "zindex": { "value": 1 } + } + }, + "transform": [ + { "type": "geoshape", "projection": "projection" } + ] + } + ] + } + ] +} diff --git a/data/gapminder/gdp.txt b/dist/data/gapminder/gdp.txt similarity index 100% rename from data/gapminder/gdp.txt rename to dist/data/gapminder/gdp.txt diff --git a/data/gapminder/index.json b/dist/data/gapminder/index.json similarity index 100% rename from data/gapminder/index.json rename to dist/data/gapminder/index.json diff --git a/data/gapminder/lifeexpectancy.txt b/dist/data/gapminder/lifeexpectancy.txt similarity index 100% rename from data/gapminder/lifeexpectancy.txt rename to dist/data/gapminder/lifeexpectancy.txt diff --git a/data/gapminder/main_religions.txt b/dist/data/gapminder/main_religions.txt similarity index 100% rename from data/gapminder/main_religions.txt rename to dist/data/gapminder/main_religions.txt diff --git a/data/gapminder/provenance-graph-hans-rosling-stories.json b/dist/data/gapminder/provenance-graph-hans-rosling-stories.json similarity index 100% rename from data/gapminder/provenance-graph-hans-rosling-stories.json rename to dist/data/gapminder/provenance-graph-hans-rosling-stories.json diff --git a/data/gapminder/totalPop_interpolated.txt b/dist/data/gapminder/totalPop_interpolated.txt similarity index 100% rename from data/gapminder/totalPop_interpolated.txt rename to dist/data/gapminder/totalPop_interpolated.txt diff --git a/data/gapminder/world-110m.json b/dist/data/gapminder/world-110m.json similarity index 100% rename from data/gapminder/world-110m.json rename to dist/data/gapminder/world-110m.json diff --git a/data/gapminder/world-country-names.tsv b/dist/data/gapminder/world-country-names.tsv similarity index 100% rename from data/gapminder/world-country-names.tsv rename to dist/data/gapminder/world-country-names.tsv diff --git a/dist/data/index.d.ts b/dist/data/index.d.ts new file mode 100644 index 0000000..26697b7 --- /dev/null +++ b/dist/data/index.d.ts @@ -0,0 +1,11 @@ +import { Spec } from 'vega-lib'; +export interface IVegaSpecDataset { + title: string; + spec: Spec; + category: ECategories; +} +declare enum ECategories { + INTERACTION_TECHNIQUES = "Interaction Techniques" +} +export declare function loadDatasets(): Promise; +export {}; diff --git a/dist/data/index.js b/dist/data/index.js new file mode 100644 index 0000000..8558a3b --- /dev/null +++ b/dist/data/index.js @@ -0,0 +1,211 @@ +/*import AirportConnections from './airport-connections.vg.json'; +import AnnualTemperature from './annual-temperature.vg.json'; +import ArcDiagram from './arc-diagram.vg.json'; +import AreaChart from './area-chart.vg.json'; +import BarChart from './bar-chart.vg.json'; +import BarleyTrellisPlot from './barley-trellis-plot.vg.json'; +import BeeswarmPlot from './beeswarm-plot.vg.json'; +import BinnedScatterPlot from './binned-scatter-plot.vg.json'; +import BoxPlot from './box-plot.vg.json'; +import BrushingScatterPlots from './brushing-scatter-plots.vg.json'; +import BudgetForecasts from './budget-forecasts.vg.json'; +import CirclePacking from './circle-packing.vg.json'; +import ConnectedScatterPlot from './connected-scatter-plot.vg.json'; +import ContourPlot from './contour-plot.vg.json'; +import CountyUnemployment from './county-unemployment.vg.json'; +import CrossfilterFlights from './crossfilter-flights.vg.json'; +import DistortionComparison from './distortion-comparison.vg.json'; +import DonutChart from './donut-chart.vg.json'; +import DorlingCartogram from './dorling-cartogram.vg.json'; +import Earthquakes from './earthquakes.vg.json'; +import EdgeBundling from './edge-bundling.vg.json'; +import ErrorBars from './error-bars.vg.json'; +import FalkenseePopulation from './falkensee-population.vg.json'; +import ForceDirectedLayout from './force-directed-layout.vg.json'; +import GlobalDevelopment from './global-development.vg.json'; +import GroupedBarChart from './grouped-bar-chart.vg.json'; +import Heatmap from './heatmap.vg.json'; +import HistogramNullValues from './histogram-null-values.vg.json'; +import Histogram from './histogram.vg.json'; +import HorizonGraph from './horizon-graph.vg.json'; +import InteractiveLegend from './interactive-legend.vg.json'; +import JobVoyager from './job-voyager.vg.json'; +import LineChart from './line-chart.vg.json'; +import NestedBarChart from './nested-bar-chart.vg.json'; +import OverviewPlusDetail from './overview-plus-detail.vg.json'; +import ParallelCoordinates from './parallel-coordinates.vg.json'; +import PieChart from './pie-chart.vg.json'; +import PopulationPyramid from './population-pyramid.vg.json'; +import ProbabilityDensity from './probability-density.vg.json'; +import Projections from './projections.vg.json'; +import RadialPlot from './radial-plot.vg.json'; +import RadialTreeLayout from './radial-tree-layout.vg.json'; +import ReorderableMatrix from './reorderable-matrix.vg.json'; +import ScatterPlotNullValues from './scatter-plot-null-values.vg.json'; +import ScatterPlot from './scatter-plot.vg.json'; +import StackedAreaChart from './stacked-area-chart.vg.json'; +import StackedBarChart from './stacked-bar-chart.vg.json'; +import StockIndexChart from './stock-index-chart.vg.json'; +import Sunburst from './sunburst.vg.json'; +import Timelines from './timelines.vg.json'; +import TopKPlotWithOthers from './top-k-plot-with-others.vg.json'; +import TopKPlot from './top-k-plot.vg.json'; +import TreeLayout from './tree-layout.vg.json'; +import Treemap from './treemap.vg.json'; +import UDistrictCuisine from './u-district-cuisine.vg.json'; +import ViolinPlot from './violin-plot.vg.json'; +import WeeklyTemperature from './weekly-temperature.vg.json'; +import WheatAndWages from './wheat-and-wages.vg.json'; +import WheatPlot from './wheat-plot.vg.json'; +import WordCloud from './word-cloud.vg.json'; +import WorldMap from './world-map.vg.json'; +import ZoomableScatterPlot from './zoomable-scatter-plot.vg.json'; +import ZoomableWorldMap from './zoomable-world-map.vg.json';*/ +import { tsv } from 'd3'; +// Prefixing with ! will disable all configured normal loaders +import csvGdp from '!file-loader!./gapminder/gdp.txt'; +import csvChildMortality from '!file-loader!./gapminder/childmortality.txt'; +import csvContinent from '!file-loader!./gapminder/continent.txt'; +import csvFertility from '!file-loader!./gapminder/fertility.txt'; +import csvLifetimeExpectancy from '!file-loader!./gapminder/lifeexpectancy.txt'; +import csvReligions from '!file-loader!./gapminder/main_religions.txt'; +import csvPopulation from '!file-loader!./gapminder/totalPop_interpolated.txt'; +import tsvWorldCountryNames from '!file-loader!./gapminder/world-country-names.tsv'; +import Gapminder from './gapminder/gapminder.vg.json'; +function loadTsvData(dataset, filterFnc = (entry) => entry[0] !== 'country') { + return new Promise((resolve) => { + tsv(dataset, (rawRow) => { + return Object.entries(rawRow).filter(filterFnc); + }, (_error, data) => { + resolve(data); + }); + }); +} +const gapminderData = Promise.all([ + loadTsvData(csvGdp, (entry) => entry[0] === 'country'), + loadTsvData(csvGdp), + loadTsvData(csvChildMortality), + loadTsvData(csvContinent), + loadTsvData(csvFertility), + loadTsvData(csvLifetimeExpectancy), + loadTsvData(csvReligions), + loadTsvData(csvPopulation), + loadTsvData(tsvWorldCountryNames) +]).then((csv) => { + const [country, gdp, childMortality, continent, fertility, lifetimeExpectancy, religions, population, worldCountryNames] = [...csv]; + const data = []; + country.forEach((d, i) => { + gdp[i].forEach((e, j) => { + const countryName = worldCountryNames.filter((f) => f[1][1] === country[i][0][1])[0]; + const mapId = (countryName) ? +countryName[0][1] : 0; + const r = { + country: country[i][0][1], + year: +gdp[i][j][0], + map_id: +mapId, + continent: continent[i][0][1], + main_religion: religions[i][0][1], + gdp: +gdp[i][j][1], + child_mortality: +childMortality[i][j][1], + fertility: +fertility[i][j][1], + life_expect: +lifetimeExpectancy[i][j][1], + population: +population[i][j][1], + }; + data.push(r); + }); + }); + return data; +}); +var ECategories; +(function (ECategories) { + /*BAR_CHARTS = 'Bar Charts', + LINE_CHARTS = 'Line & Area Charts', + CIRCULAR_CHARTS = 'Circular Charts', + SCATTER_PLOTS = 'Dot & Scatter Plots', + DISTRIBUTIONS = 'Distributions', + MAPS = 'Geographic Maps', + TREE_DIAGRAMS = 'Tree Diagrams', + NETWORK_DIAGRAMS = 'Network Diagrams', + OTHER_CHARTS = 'Other Chart Types', + CUSTOM_VISUAL_DESIGNS = 'Custom Visual Designs',*/ + ECategories["INTERACTION_TECHNIQUES"] = "Interaction Techniques"; +})(ECategories || (ECategories = {})); +const vegaSpecs = [ +/*{title: 'Airport Connections', spec: AirportConnections, category: ECategories.NETWORK_DIAGRAMS}, +{title: 'Annual Temperature', spec: AnnualTemperature, category: ECategories.CUSTOM_VISUAL_DESIGNS}, +{title: 'Arc Diagram', spec: ArcDiagram, category: ECategories.NETWORK_DIAGRAMS}, +{title: 'Area Chart', spec: AreaChart, category: ECategories.LINE_CHARTS}, +{title: 'Bar Chart', spec: BarChart, category: ECategories.BAR_CHARTS}, +{title: 'Barley Trellis Plot', spec: BarleyTrellisPlot, category: ECategories.SCATTER_PLOTS}, +{title: 'Beeswarm Plot', spec: BeeswarmPlot, category: ECategories.OTHER_CHARTS}, +{title: 'Binned Scatter Plot', spec: BinnedScatterPlot, category: ECategories.DISTRIBUTIONS}, +{title: 'Box Plot', spec: BoxPlot, category: ECategories.DISTRIBUTIONS}, +{title: 'Brushing Scatter Plots', spec: BrushingScatterPlots, category: ECategories.INTERACTION_TECHNIQUES}, +{title: 'Budget Forecasts', spec: BudgetForecasts, category: ECategories.CUSTOM_VISUAL_DESIGNS}, +{title: 'Circle Packing', spec: CirclePacking, category: ECategories.TREE_DIAGRAMS}, +{title: 'Connected Scatter Plot', spec: ConnectedScatterPlot, category: ECategories.SCATTER_PLOTS}, +{title: 'Contour Plot', spec: ContourPlot, category: ECategories.DISTRIBUTIONS}, +{title: 'County Unemployment', spec: CountyUnemployment, category: ECategories.MAPS}, +{title: 'Crossfilter Flights', spec: CrossfilterFlights, category: ECategories.INTERACTION_TECHNIQUES}, +{title: 'Distortion Comparison', spec: DistortionComparison, category: ECategories.MAPS}, +{title: 'Donut Chart', spec: DonutChart, category: ECategories.CIRCULAR_CHARTS}, +{title: 'Dorling Cartogram', spec: DorlingCartogram, category: ECategories.MAPS}, +{title: 'Earthquakes', spec: Earthquakes, category: ECategories.MAPS}, +{title: 'Edge Bundling', spec: EdgeBundling, category: ECategories.NETWORK_DIAGRAMS}, +{title: 'Error Bars', spec: ErrorBars, category: ECategories.SCATTER_PLOTS}, +{title: 'Falkensee Population', spec: FalkenseePopulation, category: ECategories.CUSTOM_VISUAL_DESIGNS}, +{title: 'Force Directed Layout', spec: ForceDirectedLayout, category: ECategories.NETWORK_DIAGRAMS}, +{title: 'Global Development', spec: GlobalDevelopment, category: ECategories.INTERACTION_TECHNIQUES}, +{title: 'Grouped Bar Chart', spec: GroupedBarChart, category: ECategories.BAR_CHARTS}, +{title: 'Heatmap', spec: Heatmap, category: ECategories.OTHER_CHARTS}, +{title: 'Histogram Null Values', spec: HistogramNullValues, category: ECategories.DISTRIBUTIONS}, +{title: 'Histogram', spec: Histogram, category: ECategories.DISTRIBUTIONS}, +{title: 'Horizon Graph', spec: HorizonGraph, category: ECategories.LINE_CHARTS}, +{title: 'Interactive Legend', spec: InteractiveLegend, category: ECategories.INTERACTION_TECHNIQUES}, +{title: 'Job Voyager', spec: JobVoyager, category: ECategories.LINE_CHARTS}, +{title: 'Line Chart', spec: LineChart, category: ECategories.LINE_CHARTS}, +{title: 'Nested Bar Chart', spec: NestedBarChart, category: ECategories.BAR_CHARTS}, +{title: 'Overview Plus Detail', spec: OverviewPlusDetail, category: ECategories.INTERACTION_TECHNIQUES}, +{title: 'Parallel Coordinates', spec: ParallelCoordinates, category: ECategories.OTHER_CHARTS}, +{title: 'Pie Chart', spec: PieChart, category: ECategories.CIRCULAR_CHARTS}, +{title: 'Population Pyramid', spec: PopulationPyramid, category: ECategories.BAR_CHARTS}, +{title: 'Probability Density', spec: ProbabilityDensity, category: ECategories.DISTRIBUTIONS}, +{title: 'Projections', spec: Projections, category: ECategories.MAPS}, +{title: 'Radial Plot', spec: RadialPlot, category: ECategories.CIRCULAR_CHARTS}, +{title: 'Radial Tree Layout', spec: RadialTreeLayout, category: ECategories.TREE_DIAGRAMS}, +{title: 'Reorderable Matrix', spec: ReorderableMatrix, category: ECategories.NETWORK_DIAGRAMS}, +{title: 'Scatter Plot Null Values', spec: ScatterPlotNullValues, category: ECategories.SCATTER_PLOTS}, +{title: 'Scatter Plot', spec: ScatterPlot, category: ECategories.SCATTER_PLOTS}, +{title: 'Stacked Area Chart', spec: StackedAreaChart, category: ECategories.LINE_CHARTS}, +{title: 'Stacked Bar Chart', spec: StackedBarChart, category: ECategories.BAR_CHARTS}, +{title: 'Stock Index Chart', spec: StockIndexChart, category: ECategories.INTERACTION_TECHNIQUES}, +{title: 'Sunburst', spec: Sunburst, category: ECategories.TREE_DIAGRAMS}, +{title: 'Timelines', spec: Timelines, category: ECategories.OTHER_CHARTS}, +{title: 'Top K Plot With Others', spec: TopKPlotWithOthers, category: ECategories.DISTRIBUTIONS}, +{title: 'Top K Plot', spec: TopKPlot, category: ECategories.DISTRIBUTIONS}, +{title: 'Tree Layout', spec: TreeLayout, category: ECategories.TREE_DIAGRAMS}, +{title: 'Treemap', spec: Treemap, category: ECategories.TREE_DIAGRAMS}, +{title: 'U District Cuisine', spec: UDistrictCuisine, category: ECategories.CUSTOM_VISUAL_DESIGNS}, +{title: 'Violin Plot', spec: ViolinPlot, category: ECategories.DISTRIBUTIONS}, +{title: 'Weekly Temperature', spec: WeeklyTemperature, category: ECategories.CUSTOM_VISUAL_DESIGNS}, +{title: 'Wheat And Wages', spec: WheatAndWages, category: ECategories.CUSTOM_VISUAL_DESIGNS}, +{title: 'Wheat Plot', spec: WheatPlot, category: ECategories.DISTRIBUTIONS}, +{title: 'Word Cloud', spec: WordCloud, category: ECategories.OTHER_CHARTS}, +{title: 'World Map', spec: WorldMap, category: ECategories.MAPS}, +{title: 'Zoomable Scatter Plot', spec: ZoomableScatterPlot, category: ECategories.INTERACTION_TECHNIQUES}, +{title: 'Zoomable World Map', spec: ZoomableWorldMap, category: ECategories.MAPS},*/ +]; +export function loadDatasets() { + return gapminderData + .then((data) => { + Gapminder.data.filter((d) => d.name === 'gapminder')[0].values = data; + return { + title: 'Gapminder', + spec: Gapminder, + category: ECategories.INTERACTION_TECHNIQUES + }; + }) + .then((gapminder) => { + return [gapminder, ...vegaSpecs]; + }); +} +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/dist/data/index.js.map b/dist/data/index.js.map new file mode 100644 index 0000000..03b57f4 --- /dev/null +++ b/dist/data/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../../src/data/index.ts"],"names":[],"mappings":"AAAA;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;8DA8D8D;AAG9D,OAAO,EAAC,GAAG,EAAC,MAAM,IAAI,CAAC;AAEvB,8DAA8D;AAC9D,OAAO,MAAM,MAAM,kCAAkC,CAAC;AACtD,OAAO,iBAAiB,MAAM,6CAA6C,CAAC;AAC5E,OAAO,YAAY,MAAM,wCAAwC,CAAC;AAClE,OAAO,YAAY,MAAM,wCAAwC,CAAC;AAClE,OAAO,qBAAqB,MAAM,6CAA6C,CAAC;AAChF,OAAO,YAAY,MAAM,6CAA6C,CAAC;AACvE,OAAO,aAAa,MAAM,oDAAoD,CAAC;AAC/E,OAAO,oBAAoB,MAAM,kDAAkD,CAAC;AACpF,OAAO,SAAS,MAAM,+BAA+B,CAAC;AAGtD,SAAS,WAAW,CAAC,OAAO,EAAE,SAAS,GAAG,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,SAAS;IACzE,OAAO,IAAI,OAAO,CAAQ,CAAC,OAAO,EAAE,EAAE;QACpC,GAAG,CAAC,OAAO,EAAE,CAAC,MAAM,EAAE,EAAE;YACtB,OAAO,MAAM,CAAC,OAAO,CAAC,MAAM,CAAC,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC;QAClD,CAAC,EAAE,CAAC,MAAM,EAAE,IAAI,EAAE,EAAE;YAClB,OAAO,CAAC,IAAI,CAAC,CAAC;QAChB,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;AACL,CAAC;AAED,MAAM,aAAa,GAAG,OAAO,CAAC,GAAG,CAAC;IAChC,WAAW,CAAC,MAAM,EAAE,CAAC,KAAK,EAAE,EAAE,CAAC,KAAK,CAAC,CAAC,CAAC,KAAK,SAAS,CAAC;IACtD,WAAW,CAAC,MAAM,CAAC;IACnB,WAAW,CAAC,iBAAiB,CAAC;IAC9B,WAAW,CAAC,YAAY,CAAC;IACzB,WAAW,CAAC,YAAY,CAAC;IACzB,WAAW,CAAC,qBAAqB,CAAC;IAClC,WAAW,CAAC,YAAY,CAAC;IACzB,WAAW,CAAC,aAAa,CAAC;IAC1B,WAAW,CAAC,oBAAoB,CAAC;CAClC,CAAC,CAAC,IAAI,CAAC,CAAC,GAAG,EAAE,EAAE;IACd,MAAM,CAAC,OAAO,EAAE,GAAG,EAAE,cAAc,EAAE,SAAS,EAAE,SAAS,EAAE,kBAAkB,EAAE,SAAS,EAAE,UAAU,EAAE,iBAAiB,CAAC,GAAG,CAAC,GAAG,GAAG,CAAC,CAAC;IACpI,MAAM,IAAI,GAAG,EAAE,CAAC;IAEhB,OAAO,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;QACvB,GAAG,CAAC,CAAC,CAAC,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;YACtB,MAAM,WAAW,GAAG,iBAAiB,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,KAAK,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YACrF,MAAM,KAAK,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YACrD,MAAM,CAAC,GAAG;gBACR,OAAO,EAAE,OAAO,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACzB,IAAI,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACnB,MAAM,EAAE,CAAC,KAAK;gBACd,SAAS,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC7B,aAAa,EAAE,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACjC,GAAG,EAAE,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAClB,eAAe,EAAE,CAAC,cAAc,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACzC,SAAS,EAAE,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBAC9B,WAAW,EAAE,CAAC,kBAAkB,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;gBACzC,UAAU,EAAE,CAAC,UAAU,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;aACjC,CAAC;YACF,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC;QACf,CAAC,CAAC,CAAC;IACL,CAAC,CAAC,CAAC;IAEH,OAAO,IAAI,CAAC;AACd,CAAC,CAAC,CAAC;AAQH,IAAK,WAYJ;AAZD,WAAK,WAAW;IACd;;;;;;;;;sDASkD;IAClD,gEAAiD,CAAA;AACnD,CAAC,EAZI,WAAW,KAAX,WAAW,QAYf;AAED,MAAM,SAAS,GAAuB;AACpC;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;oFA8DoF;CACrF,CAAC;AAEF,MAAM,UAAU,YAAY;IAC1B,OAAO,aAAa;SACjB,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE;QACb,SAAS,CAAC,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,GAAG,IAAI,CAAC;QAEtE,OAAyB;YACvB,KAAK,EAAE,WAAW;YAClB,IAAI,EAAE,SAAS;YACf,QAAQ,EAAE,WAAW,CAAC,sBAAsB;SAC7C,CAAC;IACJ,CAAC,CAAC;SACD,IAAI,CAAC,CAAC,SAA2B,EAAE,EAAE;QACpC,OAAO,CAAC,SAAS,EAAE,GAAG,SAAS,CAAC,CAAC;IACnC,CAAC,CAAC,CAAC;AACP,CAAC"} \ No newline at end of file diff --git a/dist/dialogs.d.ts b/dist/dialogs.d.ts new file mode 100644 index 0000000..0feaed3 --- /dev/null +++ b/dist/dialogs.d.ts @@ -0,0 +1,11 @@ +/** + * Created by Holger Stitz on 18.08.2016. + */ +import { CLUEGraphManager } from 'phovea_clue'; +/** + * utility dialog when a session was not found + * @param {CLUEGraphManager} manager + * @param {string} id session id + */ +export declare function showProveanceGraphNotFoundDialog(manager: CLUEGraphManager, id: string): void; +export declare function showLoadErrorDialog(): void; diff --git a/dist/dialogs.js b/dist/dialogs.js new file mode 100644 index 0000000..3153af0 --- /dev/null +++ b/dist/dialogs.js @@ -0,0 +1,57 @@ +/** + * Created by Holger Stitz on 18.08.2016. + */ +import { Dialog } from 'phovea_ui'; +/** + * utility dialog when a session was not found + * @param {CLUEGraphManager} manager + * @param {string} id session id + */ +export function showProveanceGraphNotFoundDialog(manager, id) { + const dialog = Dialog.generateDialog('Session Not Found!', 'Create New Temporary Session'); + // append bg-danger to the dialog parent element + dialog.body.parentElement.parentElement.parentElement.classList.add('bg-danger'); + dialog.body.innerHTML = ` +

+ The requested session "${id}" was not found or is not accessible. +

+

+ Possible reasons are that you +

    +
  • requested a temporary session that is already expired
  • +
  • tried to access a temporary session of another user
  • +
  • tried to access a private persistent session of another user
  • +
+

+

+ In the latter two cases, please contact the original owner of the session to create a public persistent session. +

`; + dialog.onSubmit(() => { + dialog.hide(); + return false; + }); + dialog.onHide(() => { + dialog.destroy(); + manager.newGraph(); + }); + dialog.show(); +} +export function showLoadErrorDialog() { + const dialog = Dialog.generateDialog('Error loading Vega JSON Specification!', 'Close'); + dialog.body.innerHTML = ` +

+ We could not find a valid Vega JSON Specification for the given URL. +

+

+ Please check the URL or try a different one. +

`; + dialog.onSubmit(() => { + dialog.hide(); + return false; + }); + dialog.onHide(() => { + dialog.destroy(); + }); + dialog.show(); +} +//# sourceMappingURL=dialogs.js.map \ No newline at end of file diff --git a/dist/dialogs.js.map b/dist/dialogs.js.map new file mode 100644 index 0000000..f597687 --- /dev/null +++ b/dist/dialogs.js.map @@ -0,0 +1 @@ +{"version":3,"file":"dialogs.js","sourceRoot":"","sources":["../src/dialogs.ts"],"names":[],"mappings":"AAAA;;GAEG;AAGH,OAAO,EAAqB,MAAM,EAAa,MAAM,WAAW,CAAC;AAEjE;;;;GAIG;AACH,MAAM,UAAU,gCAAgC,CAAC,OAAyB,EAAE,EAAU;IACpF,MAAM,MAAM,GAAG,MAAM,CAAC,cAAc,CAAC,oBAAoB,EAAE,8BAA8B,CAAC,CAAC;IAC3F,gDAAgD;IAChD,MAAM,CAAC,IAAI,CAAC,aAAa,CAAC,aAAa,CAAC,aAAa,CAAC,SAAS,CAAC,GAAG,CAAC,WAAW,CAAC,CAAC;IACjF,MAAM,CAAC,IAAI,CAAC,SAAS,GAAG;;2CAEiB,EAAE;;;;;;;;;;;;WAYlC,CAAC;IACV,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE;QACnB,MAAM,CAAC,IAAI,EAAE,CAAC;QACd,OAAO,KAAK,CAAC;IACf,CAAC,CAAC,CAAC;IACH,MAAM,CAAC,MAAM,CAAC,GAAG,EAAE;QACjB,MAAM,CAAC,OAAO,EAAE,CAAC;QACjB,OAAO,CAAC,QAAQ,EAAE,CAAC;IACrB,CAAC,CAAC,CAAC;IAEH,MAAM,CAAC,IAAI,EAAE,CAAC;AAChB,CAAC;AAED,MAAM,UAAU,mBAAmB;IACjC,MAAM,MAAM,GAAG,MAAM,CAAC,cAAc,CAAC,wCAAwC,EAAE,OAAO,CAAC,CAAC;IACxF,MAAM,CAAC,IAAI,CAAC,SAAS,GAAG;;;;;;WAMf,CAAC;IACV,MAAM,CAAC,QAAQ,CAAC,GAAG,EAAE;QACnB,MAAM,CAAC,IAAI,EAAE,CAAC;QACd,OAAO,KAAK,CAAC;IACf,CAAC,CAAC,CAAC;IACH,MAAM,CAAC,MAAM,CAAC,GAAG,EAAE;QACjB,MAAM,CAAC,OAAO,EAAE,CAAC;IACnB,CAAC,CAAC,CAAC;IAEH,MAAM,CAAC,IAAI,EAAE,CAAC;AAChB,CAAC"} \ No newline at end of file diff --git a/dist/index.d.ts b/dist/index.d.ts new file mode 100644 index 0000000..e69de29 diff --git a/dist/index.js b/dist/index.js new file mode 100644 index 0000000..8332f84 --- /dev/null +++ b/dist/index.js @@ -0,0 +1 @@ +//# sourceMappingURL=index.js.map \ No newline at end of file diff --git a/dist/index.js.map b/dist/index.js.map new file mode 100644 index 0000000..1ed2df6 --- /dev/null +++ b/dist/index.js.map @@ -0,0 +1 @@ +{"version":3,"file":"index.js","sourceRoot":"","sources":["../src/index.ts"],"names":[],"mappings":""} \ No newline at end of file diff --git a/dist/index.template.ejs b/dist/index.template.ejs new file mode 100644 index 0000000..dec919d --- /dev/null +++ b/dist/index.template.ejs @@ -0,0 +1,16 @@ + + + + Vega Gapminder + + + <%=require('phovea_ui/dist/template/_head.html')%> + + + +

Loading …

+ +<%=require('phovea_ui/dist/template/_body.html')%> + + + diff --git a/dist/initialize.d.ts b/dist/initialize.d.ts new file mode 100644 index 0000000..cb0ff5c --- /dev/null +++ b/dist/initialize.d.ts @@ -0,0 +1 @@ +export {}; diff --git a/dist/initialize.js b/dist/initialize.js new file mode 100644 index 0000000..cd2253d --- /dev/null +++ b/dist/initialize.js @@ -0,0 +1,12 @@ +/** + * Created by Holger Stitz on 13.03.2018. + */ +import { AppWrapper } from './AppWrapper'; +import { APP_NAME } from './language'; +const app = new AppWrapper({ + prefix: 'vega', + name: APP_NAME, + showCookieDisclaimer: true +}); +app.init(); +//# sourceMappingURL=initialize.js.map \ No newline at end of file diff --git a/dist/initialize.js.map b/dist/initialize.js.map new file mode 100644 index 0000000..fd38186 --- /dev/null +++ b/dist/initialize.js.map @@ -0,0 +1 @@ +{"version":3,"file":"initialize.js","sourceRoot":"","sources":["../src/initialize.ts"],"names":[],"mappings":"AAAA;;GAEG;AACH,OAAO,EAAC,UAAU,EAAC,MAAM,cAAc,CAAC;AACxC,OAAO,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAC;AAGpC,MAAM,GAAG,GAAG,IAAI,UAAU,CAAM;IAC9B,MAAM,EAAE,MAAM;IACd,IAAI,EAAE,QAAQ;IACd,oBAAoB,EAAE,IAAI;CAC3B,CAAC,CAAC;AACH,GAAG,CAAC,IAAI,EAAE,CAAC"} \ No newline at end of file diff --git a/dist/internal/App.d.ts b/dist/internal/App.d.ts new file mode 100644 index 0000000..db284a5 --- /dev/null +++ b/dist/internal/App.d.ts @@ -0,0 +1,42 @@ +/** + * Created by Caleydo Team on 31.08.2016. + */ +import { IVisStateApp } from 'phovea_clue'; +import { IObjectRef } from 'phovea_core'; +import { EventHandler } from 'phovea_core'; +import { ProvenanceGraph } from 'phovea_core'; +import { CLUEGraphManager } from 'phovea_clue'; +import { IProperty, IPropertyValue } from 'phovea_core'; +import { IView } from '../AppWrapper'; +export default class App extends EventHandler implements IView, IVisStateApp { + readonly graph: ProvenanceGraph; + readonly graphManager: CLUEGraphManager; + /** + * IObjectRef to this App instance + * @type {IObjectRef} + */ + readonly ref: IObjectRef; + private readonly $node; + private vegaView; + private readonly vegaExampleUrl; + private readonly vegaDatasetUrl; + /** + * Promise to wait for Vega view initialization, before calling `getVisStateProps()` + */ + private initCompleteResolve; + private initCompletePromise; + constructor(graph: ProvenanceGraph, graphManager: CLUEGraphManager, parent: HTMLElement); + /** + * Initialize the app + * @returns {Promise} + */ + init(): Promise; + private initSingleSpec; + private initMultiSpecs; + private validateVegaData; + private transformToAbsoluteUrls; + private openVegaView; + getVisStateProps(): Promise; + getCurrVisState(): Promise; + remove(): void; +} diff --git a/dist/internal/App.js b/dist/internal/App.js new file mode 100644 index 0000000..da3ecd6 --- /dev/null +++ b/dist/internal/App.js @@ -0,0 +1,161 @@ +/** + * Created by Caleydo Team on 31.08.2016. + */ +import * as d3 from 'd3'; +import * as $ from 'jquery'; +import { ObjectRefUtils } from 'phovea_core'; +import { EventHandler } from 'phovea_core'; +import { loadDatasets } from '../data'; +import { VegaView } from './VegaView'; +import * as vega from 'vega-lib'; +import { showLoadErrorDialog } from '../dialogs'; +export default class App extends EventHandler { + constructor(graph, graphManager, parent) { + super(); + this.graph = graph; + this.graphManager = graphManager; + this.vegaExampleUrl = 'https://vega.github.io/vega/examples/interactive-legend.vg.json'; + this.vegaDatasetUrl = 'https://vega.github.io/vega-datasets/'; + this.initCompletePromise = new Promise((resolve, reject) => { + this.initCompleteResolve = resolve; + }); + // add OrdinoApp app as (first) object to provenance graph + // need old name for compatibility + this.ref = this.graph.findOrAddObject(this, 'App', ObjectRefUtils.category.visual); + this.$node = d3.select(parent) + .append('div') + .classed('app', true) + .datum(this); + } + /** + * Initialize the app + * @returns {Promise} + */ + init() { + return loadDatasets() + .then((vegaSpecs) => { + if (vegaSpecs.length === 1) { + return this.initSingleSpec(vegaSpecs); + } + return this.initMultiSpecs(vegaSpecs); + }) + .then((vegaView) => this.initCompleteResolve(vegaView)) + .then(() => this); + } + initSingleSpec(vegaSpecs) { + const datasets = vegaSpecs.map((dataset) => { + if (dataset.spec.data) { + dataset.spec = this.transformToAbsoluteUrls(dataset.spec, this.vegaDatasetUrl); + } + return dataset; + }); + this.$node.html(`
`); + return this.openVegaView(datasets[0].spec); + } + initMultiSpecs(vegaSpecs) { + const datasets = vegaSpecs.map((dataset) => { + if (dataset.spec.data) { + dataset.spec = this.transformToAbsoluteUrls(dataset.spec, this.vegaDatasetUrl); + } + return dataset; + }); + this.$node.html(` +
+
+ + +
+
+

or paste an

+
+
+ + +
+ +
+
+ `); + this.$node.select('form.dataset-selector') + .on('submit', () => { + d3.event.preventDefault(); + const url = this.$node.select('#url').property('value') || this.vegaExampleUrl; + console.log('load url', url); + // load from external URL + vega.loader() + .load(url) + .then((data) => JSON.parse(data)) + .then((json) => this.validateVegaData(json)) + .then((spec) => { + // for now just check for official Vega examples and transform relative data url + const dataUrl = (url.indexOf('vega.github.io') > -1) ? this.vegaDatasetUrl : ''; + return this.transformToAbsoluteUrls(spec, dataUrl); + }) + .then((spec) => this.openVegaView(spec)) + .catch(showLoadErrorDialog); + return false; + }); + const $select = this.$node.select('.dataset-selector select'); + const nestedData = d3.nest() + .key((d) => d.category) + .entries(datasets); + const $optgroups = $select + .selectAll('optgroup') + .data(nestedData); + const $optgroupEnter = $optgroups.enter().append('optgroup') + .attr('label', (d) => d.key); + const $options = $optgroupEnter.selectAll('option').data((d) => d.values); + $options.enter().append('option').text((d) => d.title); + $options.exit().remove(); + $optgroups.exit().remove(); + $($select.node()) + .select2({ + theme: 'bootstrap' + }) + .on('select2:select', () => { + const datasets = $select.selectAll('option') + .filter((d, i) => i === $select.property('selectedIndex')) + .data(); + if (datasets.length > 0) { + this.openVegaView(datasets[0].spec); + } + }); + if (datasets.length > 0) { + return this.openVegaView(datasets[0].spec); + } + } + validateVegaData(spec) { + // TODO to be implemented; could use https://github.com/vega/editor/blob/e98f9ee9678aae37bca651b8f25e487ba0b3ed13/src/utils/validate.ts + return spec; + } + transformToAbsoluteUrls(spec, dataUrl) { + if (spec.data) { + spec.data = spec.data.map((d) => { + if (d.url) { + d.url = dataUrl + d.url; + } + return d; + }); + } + return spec; + } + openVegaView(spec) { + // remove old view first + if (this.vegaView) { + this.vegaView.remove(); + } + // init new view with selected spec + this.vegaView = new VegaView(this.$node.select('.view-wrapper').node(), this.graph, spec); + return this.vegaView.init(); + } + getVisStateProps() { + return this.initCompletePromise.then(() => this.vegaView.getVisStateProps()); + } + getCurrVisState() { + return this.vegaView.getCurrVisState(); + } + remove() { + // do nothing + } +} +//# sourceMappingURL=App.js.map \ No newline at end of file diff --git a/dist/internal/App.js.map b/dist/internal/App.js.map new file mode 100644 index 0000000..6a619bc --- /dev/null +++ b/dist/internal/App.js.map @@ -0,0 +1 @@ +{"version":3,"file":"App.js","sourceRoot":"","sources":["../../src/internal/App.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC;AACzB,OAAO,KAAK,CAAC,MAAM,QAAQ,CAAC;AAE5B,OAAO,EAAa,cAAc,EAAC,MAAM,aAAa,CAAC;AACvD,OAAO,EAAC,YAAY,EAAC,MAAM,aAAa,CAAC;AAKzC,OAAO,EAAmB,YAAY,EAAC,MAAM,SAAS,CAAC;AACvD,OAAO,EAAC,QAAQ,EAAC,MAAM,YAAY,CAAC;AAEpC,OAAO,KAAK,IAAI,MAAM,UAAU,CAAC;AACjC,OAAO,EAAC,mBAAmB,EAAC,MAAM,YAAY,CAAC;AAE/C,MAAM,CAAC,OAAO,OAAO,GAAI,SAAQ,YAAY;IAsB3C,YAA4B,KAAsB,EAAkB,YAA8B,EAAE,MAAmB;QACrH,KAAK,EAAE,CAAC;QADkB,UAAK,GAAL,KAAK,CAAiB;QAAkB,iBAAY,GAAZ,YAAY,CAAkB;QAXjF,mBAAc,GAAG,iEAAiE,CAAC;QACnF,mBAAc,GAAG,uCAAuC,CAAC;QAMlE,wBAAmB,GAAsB,IAAI,OAAO,CAAW,CAAC,OAAO,EAAE,MAAM,EAAE,EAAE;YACzF,IAAI,CAAC,mBAAmB,GAAG,OAAO,CAAC;QACrC,CAAC,CAAC,CAAC;QAKD,0DAA0D;QAC1D,kCAAkC;QAClC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,IAAI,EAAE,KAAK,EAAE,cAAc,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC;QAEnF,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC;aAC3B,MAAM,CAAC,KAAK,CAAC;aACb,OAAO,CAAC,KAAK,EAAE,IAAI,CAAC;aACpB,KAAK,CAAC,IAAI,CAAC,CAAC;IACjB,CAAC;IAED;;;OAGG;IACH,IAAI;QACF,OAAO,YAAY,EAAE;aAClB,IAAI,CAAC,CAAC,SAA6B,EAAE,EAAE;YACtC,IAAG,SAAS,CAAC,MAAM,KAAK,CAAC,EAAE;gBACzB,OAAO,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC;aACvC;YACD,OAAO,IAAI,CAAC,cAAc,CAAC,SAAS,CAAC,CAAC;QACxC,CAAC,CAAC;aACD,IAAI,CAAC,CAAC,QAAkB,EAAE,EAAE,CAAC,IAAI,CAAC,mBAAmB,CAAC,QAAQ,CAAC,CAAC;aAChE,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;IACtB,CAAC;IAEO,cAAc,CAAC,SAA6B;QAClD,MAAM,QAAQ,GAAuB,SAAS,CAAC,GAAG,CAAC,CAAC,OAAyB,EAAE,EAAE;YAC/E,IAAI,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE;gBACrB,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,uBAAuB,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;aAChF;YACD,OAAO,OAAO,CAAC;QACjB,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,kCAAkC,CAAC,CAAC;QACpD,OAAO,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;IAC7C,CAAC;IAEO,cAAc,CAAC,SAA6B;QAClD,MAAM,QAAQ,GAAuB,SAAS,CAAC,GAAG,CAAC,CAAC,OAAyB,EAAE,EAAE;YAC/E,IAAI,OAAO,CAAC,IAAI,CAAC,IAAI,EAAE;gBACrB,OAAO,CAAC,IAAI,GAAG,IAAI,CAAC,uBAAuB,CAAC,OAAO,CAAC,IAAI,EAAE,IAAI,CAAC,cAAc,CAAC,CAAC;aAChF;YACD,OAAO,OAAO,CAAC;QACjB,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC;;;;;;;;;;;0EAWsD,IAAI,CAAC,cAAc;;;;;KAKxF,CAAC,CAAC;QAEH,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,uBAAuB,CAAC;aACvC,EAAE,CAAC,QAAQ,EAAE,GAAG,EAAE;YACT,EAAE,CAAC,KAAM,CAAC,cAAc,EAAE,CAAC;YACnC,MAAM,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,MAAM,CAAC,CAAC,QAAQ,CAAC,OAAO,CAAC,IAAI,IAAI,CAAC,cAAc,CAAC;YAE/E,OAAO,CAAC,GAAG,CAAC,UAAU,EAAE,GAAG,CAAC,CAAC;YAE7B,yBAAyB;YACzB,IAAI,CAAC,MAAM,EAAE;iBACV,IAAI,CAAC,GAAG,CAAC;iBACT,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,CAAC;iBAChC,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,gBAAgB,CAAC,IAAI,CAAC,CAAC;iBAC3C,IAAI,CAAC,CAAC,IAAU,EAAE,EAAE;gBACnB,gFAAgF;gBAChF,MAAM,OAAO,GAAG,CAAC,GAAG,CAAC,OAAO,CAAC,gBAAgB,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,cAAc,CAAC,CAAC,CAAC,EAAE,CAAC;gBAChF,OAAO,IAAI,CAAC,uBAAuB,CAAC,IAAI,EAAE,OAAO,CAAC,CAAC;YACrD,CAAC,CAAC;iBACD,IAAI,CAAC,CAAC,IAAU,EAAE,EAAE,CAAC,IAAI,CAAC,YAAY,CAAC,IAAI,CAAC,CAAC;iBAC7C,KAAK,CAAC,mBAAmB,CAAC,CAAC;YAE9B,OAAO,KAAK,CAAC;QACf,CAAC,CAAC,CAAC;QAEL,MAAM,OAAO,GAAG,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,0BAA0B,CAAC,CAAC;QAE9D,MAAM,UAAU,GAAG,EAAE,CAAC,IAAI,EAAE;aACzB,GAAG,CAAC,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC;aACxC,OAAO,CAAC,QAAQ,CAAC,CAAC;QAErB,MAAM,UAAU,GAAG,OAAO;aACvB,SAAS,CAAC,UAAU,CAAC;aACrB,IAAI,CAAC,UAAU,CAAC,CAAC;QAEpB,MAAM,cAAc,GAAG,UAAU,CAAC,KAAK,EAAE,CAAC,MAAM,CAAC,UAAU,CAAC;aACzD,IAAI,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,GAAG,CAAC,CAAC;QAE/B,MAAM,QAAQ,GAAG,cAAc,CAAC,SAAS,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;QAC1E,QAAQ,CAAC,KAAK,EAAE,CAAC,MAAM,CAAC,QAAQ,CAAC,CAAC,IAAI,CAAC,CAAC,CAAmB,EAAE,EAAE,CAAC,CAAC,CAAC,KAAK,CAAC,CAAC;QACzE,QAAQ,CAAC,IAAI,EAAE,CAAC,MAAM,EAAE,CAAC;QAEzB,UAAU,CAAC,IAAI,EAAE,CAAC,MAAM,EAAE,CAAC;QAErB,CAAC,CAAC,OAAO,CAAC,IAAI,EAAE,CAAE;aACrB,OAAO,CAAC;YACP,KAAK,EAAE,WAAW;SACnB,CAAC;aACD,EAAE,CAAC,gBAAgB,EAAE,GAAG,EAAE;YACzB,MAAM,QAAQ,GAAuB,OAAO,CAAC,SAAS,CAAC,QAAQ,CAAC;iBAC7D,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,CAAC,KAAK,OAAO,CAAC,QAAQ,CAAC,eAAe,CAAC,CAAC;iBACzD,IAAI,EAAE,CAAC;YACV,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;gBACvB,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;aACrC;QACH,CAAC,CAAC,CAAC;QAEL,IAAI,QAAQ,CAAC,MAAM,GAAG,CAAC,EAAE;YACvB,OAAO,IAAI,CAAC,YAAY,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;SAC5C;IACH,CAAC;IAEO,gBAAgB,CAAC,IAAU;QACjC,uIAAuI;QACvI,OAAO,IAAI,CAAC;IACd,CAAC;IAEO,uBAAuB,CAAC,IAAU,EAAE,OAAe;QACzD,IAAI,IAAI,CAAC,IAAI,EAAE;YACb,IAAI,CAAC,IAAI,GAAG,IAAI,CAAC,IAAI,CAAC,GAAG,CAAC,CAAC,CAAM,EAAE,EAAE;gBACnC,IAAI,CAAC,CAAC,GAAG,EAAE;oBACT,CAAC,CAAC,GAAG,GAAG,OAAO,GAAG,CAAC,CAAC,GAAG,CAAC;iBACzB;gBACD,OAAO,CAAC,CAAC;YACX,CAAC,CAAC,CAAC;SACJ;QACD,OAAO,IAAI,CAAC;IACd,CAAC;IAEO,YAAY,CAAC,IAAU;QAC7B,wBAAwB;QACxB,IAAI,IAAI,CAAC,QAAQ,EAAE;YACjB,IAAI,CAAC,QAAQ,CAAC,MAAM,EAAE,CAAC;SACxB;QAED,mCAAmC;QACnC,IAAI,CAAC,QAAQ,GAAG,IAAI,QAAQ,CAAc,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,IAAI,EAAE,EAAE,IAAI,CAAC,KAAK,EAAE,IAAI,CAAC,CAAC;QAEvG,OAAO,IAAI,CAAC,QAAQ,CAAC,IAAI,EAAE,CAAC;IAC9B,CAAC;IAED,gBAAgB;QACd,OAAO,IAAI,CAAC,mBAAmB,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,QAAQ,CAAC,gBAAgB,EAAE,CAAC,CAAC;IAC/E,CAAC;IAED,eAAe;QACb,OAAO,IAAI,CAAC,QAAQ,CAAC,eAAe,EAAE,CAAC;IACzC,CAAC;IAED,MAAM;QACJ,aAAa;IACf,CAAC;CACF"} \ No newline at end of file diff --git a/dist/internal/VegaSpec.d.ts b/dist/internal/VegaSpec.d.ts new file mode 100644 index 0000000..1e6bb74 --- /dev/null +++ b/dist/internal/VegaSpec.d.ts @@ -0,0 +1,155 @@ +import { NewSignal, Data } from 'vega-lib'; +/** + * Extend the Vega Signal specification about tracking + */ +export interface IClueSignal extends NewSignal { + track?: ITrackProv; + search?: ISearchProv; +} +/** + * Extend the Vega Signal specification about tracking + */ +export interface ITrackProv { + /** + * Title of the graph node + * It can contain Handlebar.js syntax to replace variables. + * @see http://handlebarsjs.com/ + * + * Available default variables: + * * `{{name}}`: signal name + * * `{{value}}`: signal value + * + * Further variables can be added by using the `async` option. + */ + title: string; + /** + * If set wait for completing dataflow evaluation + */ + async?: TrackProvAsync[]; + /** + * Category of this signal + * + * Default value: `data` + */ + category?: 'data' | 'selection' | 'visual' | 'layout' | 'logic' | 'custom' | 'annotation'; + /** + * Operations of this signal + * + * Default value: `update` + */ + operation?: 'create' | 'update' | 'remove'; +} +interface IBaseAsync { + /** + * If set use this alias name for replacement in the title + */ + as?: string; +} +export interface IAsyncData extends IBaseAsync { + /** + * A valid dataset name + */ + data: string; +} +export interface IAsyncSignal extends IBaseAsync { + /** + * A valid signal name + */ + signal: string; +} +declare type TrackProvAsync = IAsyncData | IAsyncSignal; +interface ISearchProv { + /** + * Title of the graph node + * It can contain Handlebar.js syntax to replace variables. + * @see http://handlebarsjs.com/ + * + * Available default variables in signal definitions: + * - `{{name}}`: signal or dataset name + * - `{{value}}`: signal value + * + * Available default variables in data definitions: + * - `{{name}}`: signal or dataset name + * - `{{datum}}`: single datum from the dataset array + * - `{{index}}`: index of the current datum in the array + * + * Default values: + * - numerical: `{{name}} = {{round value 2}}` + * - categorical: `{{value}}` + * - set: `{{name}}_{{index}}` + * + */ + title: string; + /** + * Property type + * - `number` + * Only available for signal definitions. + * On retrieval the user will be prompted to input a number. + * The closer the input value to the stored value, the higher the similarity. + * + * + * - `category` + * Only available for signal definitions. + * On retrieval the user has to select the correct categorical value to get an exact match. + * + * - `set` + * Only available for data definitions. + * List of elements which are searchable. + * On retrieval a set comparison using the Jaccard index is performed. + */ + type: 'number' | 'category' | 'set'; + /** + * Group name or signal reference + */ + group: ISearchProvGroup | string; + /** + * Fill the search suggestions with more (disabled) options as preview + */ + fill: ISearchProvFill; +} +export interface ISearchProvGroup { + /** + * A valid signal name + */ + signal: string; +} +export interface ISearchProvFill { + /** + * Reference to another valid dataset to create search suggestions from an array. + * Note: Works only for type `set` + */ + source?: string; + /** + * Create create search suggestions from a range. + * Note: Works only for type `numbe` + */ + range?: ISearchProvFillRange; +} +export interface ISearchProvFillRange { + /** + * Minimum value + */ + min: number; + /** + * Maximum value + */ + max: number; + /** + * Step size + */ + step: number; +} +/** + * Extend the Vega Data specification about search + */ +export declare type ClueData = Data & { + /** + * Define + */ + search?: ISearchProv; + /** + * Helper property to make it equal to the signal typings + */ + value: any; +}; +export {}; diff --git a/dist/internal/VegaSpec.js b/dist/internal/VegaSpec.js new file mode 100644 index 0000000..f743d3f --- /dev/null +++ b/dist/internal/VegaSpec.js @@ -0,0 +1 @@ +//# sourceMappingURL=VegaSpec.js.map \ No newline at end of file diff --git a/dist/internal/VegaSpec.js.map b/dist/internal/VegaSpec.js.map new file mode 100644 index 0000000..3e43a6d --- /dev/null +++ b/dist/internal/VegaSpec.js.map @@ -0,0 +1 @@ +{"version":3,"file":"VegaSpec.js","sourceRoot":"","sources":["../../src/internal/VegaSpec.ts"],"names":[],"mappings":""} \ No newline at end of file diff --git a/dist/internal/VegaView.d.ts b/dist/internal/VegaView.d.ts new file mode 100644 index 0000000..e6b035b --- /dev/null +++ b/dist/internal/VegaView.d.ts @@ -0,0 +1,156 @@ +import { ProvenanceGraph } from 'phovea_core'; +import { IView } from '../AppWrapper'; +import { IObjectRef } from 'phovea_core'; +import { Spec } from 'vega-lib'; +import { IVisStateApp } from 'phovea_clue'; +import { IProperty, IPropertyValue } from 'phovea_core'; +export declare class VegaView implements IView, IVisStateApp { + private readonly graph; + private spec; + private readonly options; + private readonly $node; + readonly ref: IObjectRef; + private currentState; + private rangeDOMListener; + private blockSignalHandler; + /** + * Run the signal handler for the given signal name. + * + * The function retrieves synchronous or asynchronous variables + * to replace the values in the configured title and further + * metadata, such as operation and category. The metadata and the + * Vega state are push into the provenance graph as new graph node. + * + * @param name + * @param value + */ + private signalHandler; + constructor(parent: HTMLElement, graph: ProvenanceGraph, spec: Spec); + /** + * Initialize the Vega view and attach the signal listener. + * + * @returns {Promise} + */ + init(): Promise; + /** + * Register handlebars helper that can be used in the title properties + * from the Vega specification. + */ + private registerHandlebarsHelper; + /** + * Remove event listener and the view itself + */ + remove(): void; + /** + * Apply a given state to the current Vega view. + * + * @param state New state that will be applied to the Vega view + * @returns {any} Backup of the previous state + */ + setStateImpl(state: any): any; + /** + * Push a new state with metadata to the provenance graph. + * + * @param {ISetStateMetadata} metadata + * @param state + */ + private pushNewGraphNode; + /** + * Get all properties (i.e., groups) with the corresponding values + * that should be available for retrieval. + * + * The available properties are generated based on: + * 1. Existing property values stored in the provenance graph + * 2. Predefined properties that + * + * @returns {Promise} + */ + getVisStateProps(): Promise; + /** + * Get existing property values that are stored in the provenance graph as list. + * Duplicates are possible. + * + * @param {ProvenanceGraph} graph + * @returns {IPropertyValue[]} + */ + private getPropertyValuesFromGraph; + /** + * Extract the group and type from the `data` and `signals` section + * of the Vega specification. + * + * Signal references in the group definition will be resolved + * with the values from the current state. + * + * @param {Spec} spec + * @param vegaView + * @returns {{group: string; type: string}[]} + */ + private getGroupsFromVegaSpec; + /** + * Creates a property with multiple property values of a data source from the Vega view. + * This function works only for `search.type = 'set'` and needs a valid data reference. + * + * @param {IClueSignal} fill + * @param {View} vegaView + * @returns {IProperty[]} + */ + private createFillPropertiesFromDataSource; + /** + * Creates a property with multiple property values from a range between min/max and a certain step width. + * This function works only for `search.type = 'number'` and needs defined a valid range. + * + * @param {IClueSignal} fill + * @param vegaView + * @returns {IProperty[]} + */ + private createFillPropertiesFromRanges; + /** + * Get property values that describe the current visualization state + * and should be available later for retrieval. + * + * @returns {Promise} + */ + getCurrVisState(): Promise; + /** + * Create property values from a given signal property. + * + * At the moment this function only creates numerical and category. + * + * @param {IClueSignal} signal + * @returns {IPropertyValue} + */ + private signalToPropertyValue; + /** + * Create property values from a given data property. + * + * At the moment this function only works with arrays for `data.value`, + * which will create one SET property value for each item in the array. + * + * @param {ClueData} data + * @returns {IPropertyValue[]} + */ + private dataToPropertyValue; + /** + * Resolve a signal reference in a spec property with the value from the given current state. + * If a string instead of a signal reference is given, it will just return the string. + * + * @param {{signal: string} | string} specProperty + * @param vegaView + * @returns {{signal: string} | string} + */ + private resolveSignalReference; + /** + * Add signal listener to Vega view based on the given specification + * @param {View} vegaView + * @param {Spec} spec + */ + private addSignalListener; + /** + * Remove signal listener to Vega view based on the given specification + * @param {View} vegaView + * @param {Spec} spec + */ + private removeSignalListener; + private addRangeDOMListener; + private removeRangeDOMListener; +} diff --git a/dist/internal/VegaView.js b/dist/internal/VegaView.js new file mode 100644 index 0000000..bedf116 --- /dev/null +++ b/dist/internal/VegaView.js @@ -0,0 +1,489 @@ +import { ObjectRefUtils } from 'phovea_core'; +// best solution to import Handlebars (@see https://github.com/wycats/handlebars.js/issues/1174) +import * as handlebars from 'handlebars/dist/handlebars'; +import * as d3 from 'd3'; +import * as vega from 'vega-lib'; +import { View } from 'vega-lib'; +import { setState } from './cmds'; +import { createPropertyValue, numericalProperty, Property, PropertyType, TAG_VALUE_SEPARATOR } from 'phovea_core'; +import { setProperty } from 'phovea_core'; +export class VegaView { + constructor(parent, graph, spec) { + this.graph = graph; + this.spec = spec; + this.options = { + vegaRenderer: 'svg', + }; + this.currentState = null; + this.rangeDOMListener = []; + this.blockSignalHandler = false; + /** + * Run the signal handler for the given signal name. + * + * The function retrieves synchronous or asynchronous variables + * to replace the values in the configured title and further + * metadata, such as operation and category. The metadata and the + * Vega state are push into the provenance graph as new graph node. + * + * @param name + * @param value + */ + this.signalHandler = (name, value) => { + if (this.blockSignalHandler) { + return; + } + // cast to , because `getState()` is missing in 'vega-typings' + const vegaView = this.$node.datum(); + const signalSpec = this.spec.signals.find((d) => d.name === name); + const context = { name, value }; + let promise = Promise.resolve(true); + // if async flag set wait for Vega dataflow is complete + if (signalSpec.track.async) { + promise = vegaView.runAsync() + .then((view) => { + const async = signalSpec.track.async; + async.filter((d) => d.signal) + .forEach((d) => { + const key = (d.as) ? d.as : d.signal; + context[key] = view.signal(d.signal); + }); + async.filter((d) => d.data) + .forEach((d) => { + const key = (d.as) ? d.as : d.data; + context[key] = view.data(d.data); + }); + }); + } + promise + .then(() => { + const rawTitle = (signalSpec.track.title) ? signalSpec.track.title : `{{name}} = {{value}}`; + const template = handlebars.compile(rawTitle); + return { + name: template(context), + category: signalSpec.track.category || 'data', + operation: signalSpec.track.operation || 'update' + }; + }) + .then((metadata) => { + this.pushNewGraphNode(metadata, vegaView.getState()); + }); + }; + this.ref = this.graph.findOrAddObject(ObjectRefUtils.objectRef(this, spec.title ? String(spec.title) : 'View', ObjectRefUtils.category.visual)); + this.$node = d3.select(parent) + .append('div') + .classed('vega-view', true) + .html(` +
+ `); + } + /** + * Initialize the Vega view and attach the signal listener. + * + * @returns {Promise} + */ + init() { + const vegaView = new View(vega.parse(this.spec)) + //.logLevel(vega.Warn) // set view logging level + .renderer(this.options.vegaRenderer) // set renderer (canvas or svg) + .initialize(this.$node.select('.vega-wrapper').node()) // initialize view within parent DOM container + .hover(); // enable hover encode set processing + const vegaViewReady = vegaView.runAsync() // type cast to any because `runAsync` is missing in 'vega-typings' + .then(() => { + this.currentState = vegaView.getState(); + this.addSignalListener(vegaView, this.spec); + }); + vegaView.run(); // run after defining the promise + this.$node.datum(vegaView); + this.registerHandlebarsHelper(); + return vegaViewReady.then(() => this); + } + /** + * Register handlebars helper that can be used in the title properties + * from the Vega specification. + */ + registerHandlebarsHelper() { + handlebars.registerHelper('round', (x, n) => d3.round(x, n)); + } + /** + * Remove event listener and the view itself + */ + remove() { + const vegaView = this.$node.datum(); + this.removeSignalListener(vegaView, this.spec); + vegaView.finalize(); + this.$node.remove(); + } + /** + * Apply a given state to the current Vega view. + * + * @param state New state that will be applied to the Vega view + * @returns {any} Backup of the previous state + */ + setStateImpl(state) { + const vegaView = this.$node.datum(); + const bak = this.currentState; + this.currentState = state; + // prevent adding the provenance graph node twice + this.blockSignalHandler = true; + vegaView.setState(state); + this.blockSignalHandler = false; + return bak; + } + /** + * Push a new state with metadata to the provenance graph. + * + * @param {ISetStateMetadata} metadata + * @param state + */ + pushNewGraphNode(metadata, state) { + // capture vega state and add to history + const bak = this.currentState; + this.currentState = state; + this.graph.pushWithResult(setState(this.ref, metadata, state), { + inverse: setState(this.ref, metadata, bak) + }); + } + /** + * Get all properties (i.e., groups) with the corresponding values + * that should be available for retrieval. + * + * The available properties are generated based on: + * 1. Existing property values stored in the provenance graph + * 2. Predefined properties that + * + * @returns {Promise} + */ + getVisStateProps() { + if (!this.currentState) { + console.warn('No current Vega state available; returning an empty property list.'); + return Promise.resolve([]); + } + const vegaView = this.$node.datum(); + const propertyValues = this.getPropertyValuesFromGraph(this.graph); + const groups = this.getGroupsFromVegaSpec(this.spec, vegaView); + // create properties from groups + const properties = groups.map((g) => { + const propVals = propertyValues + .filter((d) => d && d.group === g.group) + .filter((d, i, arr) => arr.findIndex((e) => e.id === d.id) === arr.lastIndexOf(d)) // make values unique + .map((prop) => prop.clone()) + .map((prop) => { + // special handling for numerical properties + if (prop.type === PropertyType.NUMERICAL) { + prop.text = `${prop.id} = <number>`; + prop.needsInput = true; + } + return prop; + }); + switch (g.type) { + case 'number': + return new Property(PropertyType.NUMERICAL, g.group, propVals); + case 'category': + return new Property(PropertyType.CATEGORICAL, g.group, propVals); + case 'set': + return new Property(PropertyType.SET, g.group, propVals); + } + return undefined; + }) + .filter((s) => s); // filter undefined values + const fill = [...this.spec.signals, ...this.spec.data] + .filter((s) => s.search && s.search.fill); + const fillSource = this.createFillPropertiesFromDataSource(fill, vegaView); + const fillRange = this.createFillPropertiesFromRanges(fill, vegaView); + return Promise.resolve([ + ...properties, + // add fill properties as last items + ...fillSource, + ...fillRange + ]); + } + /** + * Get existing property values that are stored in the provenance graph as list. + * Duplicates are possible. + * + * @param {ProvenanceGraph} graph + * @returns {IPropertyValue[]} + */ + getPropertyValuesFromGraph(graph) { + return graph.states + .map((s) => s.visState) + .filter((vs) => vs.isPersisted()) + .map((vs) => vs.propValues) + .reduce((prev, curr) => prev.concat(curr), []); // flatten the array + } + /** + * Extract the group and type from the `data` and `signals` section + * of the Vega specification. + * + * Signal references in the group definition will be resolved + * with the values from the current state. + * + * @param {Spec} spec + * @param vegaView + * @returns {{group: string; type: string}[]} + */ + getGroupsFromVegaSpec(spec, vegaView) { + return [...spec.signals, ...spec.data] + .filter((s) => s.search && s.search.group) + .map((s) => { + return { + group: this.resolveSignalReference(s.search.group, vegaView), + type: s.search.type + }; + }); + } + /** + * Creates a property with multiple property values of a data source from the Vega view. + * This function works only for `search.type = 'set'` and needs a valid data reference. + * + * @param {IClueSignal} fill + * @param {View} vegaView + * @returns {IProperty[]} + */ + createFillPropertiesFromDataSource(fill, vegaView) { + return fill + .filter((s) => s.search.type === 'set' && s.search.fill.source) + .map((s) => { + const group = this.resolveSignalReference(s.search.group, vegaView); + const rawTitle = (s.search.title) ? s.search.title : `{{name}}_{{index}}`; + const template = handlebars.compile(rawTitle); + const values = vegaView.data(s.search.fill.source) + .map((d, i) => { + const context = { name: s.name, datum: d, index: i }; + const title = template(context); + return { + // Special case! Use title also id to make items distinguishable, because name is equal for all items + id: `${s.name} ${TAG_VALUE_SEPARATOR} ${title}`, + text: title, + group + }; + }); + return setProperty(group, values); // property of type SET + }); + } + /** + * Creates a property with multiple property values from a range between min/max and a certain step width. + * This function works only for `search.type = 'number'` and needs defined a valid range. + * + * @param {IClueSignal} fill + * @param vegaView + * @returns {IProperty[]} + */ + createFillPropertiesFromRanges(fill, vegaView) { + return fill + .filter((s) => s.search.type === 'number' && s.search.fill.range) + .map((s) => { + const range = s.search.fill.range; + const group = this.resolveSignalReference(s.search.group, vegaView); + const rawTitle = (s.search.title) ? s.search.title : `{{value}}`; + const template = handlebars.compile(rawTitle); + const values = d3.range(range.min, range.max, range.step) + .map((d, i) => { + const context = { name: s.name, value: d, index: i }; + const title = template(context); + return { + // Special case! Use title also id to make items distinguishable, because name is equal for all items + id: `${s.name} ${TAG_VALUE_SEPARATOR} ${title}`, + text: title, + group, + payload: { + numVal: title, + propText: group + } + }; + }); + return numericalProperty(group, values); // property of type NUMERICAL + }); + } + /** + * Get property values that describe the current visualization state + * and should be available later for retrieval. + * + * @returns {Promise} + */ + getCurrVisState() { + if (!this.currentState) { + console.warn('No current Vega state available; returning an empty property list.'); + return Promise.resolve([]); + } + const vegaView = this.$node.datum(); + /** + * Resolve signal references in the input data and set the values from the current Vega view + * @param {IClueSignal | ClueData} input + * @param {View} vegaView + * @param {'signal'|'data'} source + */ + const prepareInput = (input, vegaView, source) => { + return input + .filter((d) => d.search) + .map((d) => Object.assign({}, d)) // shallow copy object + .map((d) => { + if (d.search && d.search.group) { + d.search.group = this.resolveSignalReference(d.search.group, vegaView); + } + d.value = (source === 'signal') ? vegaView.signal(d.name) : vegaView.data(d.name); + return d; + }); + }; + let propertyValues; + const signals = prepareInput(this.spec.signals, vegaView, 'signal'); + propertyValues = signals.map((s) => this.signalToPropertyValue(s)); + prepareInput(this.spec.data, vegaView, 'data') + .forEach((d) => { + // add each element individually + propertyValues = [...propertyValues, ...this.dataToPropertyValue(d)]; + }); + return Promise.resolve(propertyValues); + } + /** + * Create property values from a given signal property. + * + * At the moment this function only creates numerical and category. + * + * @param {IClueSignal} signal + * @returns {IPropertyValue} + */ + signalToPropertyValue(signal) { + const context = { name: signal.name, value: signal.value }; + let rawTitle, template; + switch (signal.search.type) { + case 'number': + rawTitle = (signal.search.title) ? signal.search.title : `{{name}} = {{round value 2}}`; + template = handlebars.compile(rawTitle); + return createPropertyValue(PropertyType.NUMERICAL, { + id: signal.name, + text: template(context), + group: signal.search.group, + payload: { + numVal: signal.value + } + }); + case 'category': + rawTitle = (signal.search.title) ? signal.search.title : `{{value}}`; + template = handlebars.compile(rawTitle); + return createPropertyValue(PropertyType.CATEGORICAL, { + id: template(context), + text: template(context), + group: signal.search.group + }); + } + console.warn(`Undefined search type ${signal.search.type} for signal '${signal.name}'.`); + return undefined; + } + /** + * Create property values from a given data property. + * + * At the moment this function only works with arrays for `data.value`, + * which will create one SET property value for each item in the array. + * + * @param {ClueData} data + * @returns {IPropertyValue[]} + */ + dataToPropertyValue(data) { + let propVals = []; + if (Array.isArray(data.value) && data.search.type === 'set') { + const rawTitle = (data.search.title) ? data.search.title : `{{name}}_{{index}}`; + const template = handlebars.compile(rawTitle); + propVals = data.value.map((d, i) => { + const context = { name: data.name, datum: d, index: i }; + const title = template(context); + return createPropertyValue(PropertyType.SET, { + // Special case! Use title also id to make items distinguishable, because name is equal for all items + id: `${data.name} ${TAG_VALUE_SEPARATOR} ${title}`, + text: title, + group: data.search.group + }); + }); + } + else { + console.warn(`Undefined search type ${data.search.type} for signal '${data.name}'.`); + } + return propVals; + } + /** + * Resolve a signal reference in a spec property with the value from the given current state. + * If a string instead of a signal reference is given, it will just return the string. + * + * @param {{signal: string} | string} specProperty + * @param vegaView + * @returns {{signal: string} | string} + */ + resolveSignalReference(specProperty, vegaView) { + if (!specProperty) { + return; + } + const signalRef = specProperty.signal; + return (signalRef) ? vegaView.signal(signalRef) : specProperty; + } + /** + * Add signal listener to Vega view based on the given specification + * @param {View} vegaView + * @param {Spec} spec + */ + addSignalListener(vegaView, spec) { + if (spec.signals) { + spec.signals + .filter((signal) => signal.track) + .forEach((signal) => { + // check for range input + if (signal.bind && signal.bind.input === 'range') { + this.addRangeDOMListener(signal.name, signal.bind.input); + } + else { + vegaView.addSignalListener(signal.name, this.signalHandler); + } + }); + } + } + /** + * Remove signal listener to Vega view based on the given specification + * @param {View} vegaView + * @param {Spec} spec + */ + removeSignalListener(vegaView, spec) { + if (spec.signals) { + spec.signals + .filter((signal) => signal.track) + .forEach((signal) => { + vegaView.removeSignalListener(signal.name, this.signalHandler); + }); + } + // remove all DOM listener at once + this.removeRangeDOMListener(); + } + addRangeDOMListener(signalName, inputType) { + const domListener = { + dragging: false, + elem: this.$node.select(`input[type="${inputType}"][name="${signalName}"]`), + listener: new Map() + }; + const startListener = () => { domListener.dragging = true; }; + const endListener = () => { + if (!domListener.dragging) { + return; + } + this.signalHandler(signalName, domListener.elem.property('value')); + domListener.dragging = false; + }; + const listener = [ + ['mousedown', startListener], + ['mouseup', endListener], + ['touchstart', startListener], + ['touchend', endListener] + ]; + listener.forEach((d) => { + domListener.listener.set(d[0], d[1]); + domListener.elem.on(d[0], d[1]); + }); + this.rangeDOMListener = [...this.rangeDOMListener, domListener]; + } + removeRangeDOMListener() { + this.rangeDOMListener.forEach((d) => { + const listener = Array.from(d.listener.entries()); + listener.forEach((e) => { + d.elem.on(e[0], null); + }); + }); + } +} +//# sourceMappingURL=VegaView.js.map \ No newline at end of file diff --git a/dist/internal/VegaView.js.map b/dist/internal/VegaView.js.map new file mode 100644 index 0000000..2962007 --- /dev/null +++ b/dist/internal/VegaView.js.map @@ -0,0 +1 @@ +{"version":3,"file":"VegaView.js","sourceRoot":"","sources":["../../src/internal/VegaView.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,cAAc,EAAkB,MAAM,aAAa,CAAC;AAG5D,gGAAgG;AAChG,OAAO,KAAK,UAAU,MAAM,4BAA4B,CAAC;AACzD,OAAO,KAAK,EAAE,MAAM,IAAI,CAAC;AACzB,OAAO,KAAK,IAAI,MAAM,UAAU,CAAC;AACjC,OAAO,EAAO,IAAI,EAAY,MAAM,UAAU,CAAC;AAC/C,OAAO,EAAoB,QAAQ,EAAC,MAAM,QAAQ,CAAC;AAGnD,OAAO,EACL,mBAAmB,EACH,iBAAiB,EAAE,QAAQ,EAAE,YAAY,EAAE,mBAAmB,EAC/E,MAAM,aAAa,CAAC;AACrB,OAAO,EAAC,WAAW,EAAC,MAAM,aAAa,CAAC;AAgBxC,MAAM,OAAO,QAAQ;IAyEnB,YAAY,MAAmB,EAAmB,KAAsB,EAAU,IAAU;QAA1C,UAAK,GAAL,KAAK,CAAiB;QAAU,SAAI,GAAJ,IAAI,CAAM;QAvE3E,YAAO,GAAqB;YAC3C,YAAY,EAAE,KAAK;SACpB,CAAC;QAKM,iBAAY,GAAQ,IAAI,CAAC;QAEzB,qBAAgB,GAAwB,EAAE,CAAC;QAE3C,uBAAkB,GAAY,KAAK,CAAC;QAE5C;;;;;;;;;;WAUG;QACK,kBAAa,GAAG,CAAC,IAAI,EAAE,KAAK,EAAE,EAAE;YACtC,IAAG,IAAI,CAAC,kBAAkB,EAAE;gBAC1B,OAAO;aACR;YAED,mEAAmE;YACnE,MAAM,QAAQ,GAAS,IAAI,CAAC,KAAK,CAAC,KAAK,EAAG,CAAC;YAC3C,MAAM,UAAU,GAA6B,IAAI,CAAC,IAAI,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,KAAK,IAAI,CAAE,CAAC;YAC7F,MAAM,OAAO,GAAG,EAAC,IAAI,EAAE,KAAK,EAAC,CAAC;YAE9B,IAAI,OAAO,GAAG,OAAO,CAAC,OAAO,CAAC,IAAI,CAAC,CAAC;YAEpC,uDAAuD;YACvD,IAAG,UAAU,CAAC,KAAK,CAAC,KAAK,EAAE;gBACzB,OAAO,GAAG,QAAQ,CAAC,QAAQ,EAAE;qBAC1B,IAAI,CAAC,CAAC,IAAI,EAAE,EAAE;oBACb,MAAM,KAAK,GAAG,UAAU,CAAC,KAAK,CAAC,KAAK,CAAC;oBAErC,KAAK,CAAC,MAAM,CAAC,CAAC,CAAe,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC;yBACxC,OAAO,CAAC,CAAC,CAAe,EAAE,EAAE;wBAC3B,MAAM,GAAG,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC;wBACrC,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,MAAM,CAAC,CAAC,CAAC,MAAM,CAAC,CAAC;oBACvC,CAAC,CAAC,CAAC;oBAEL,KAAK,CAAC,MAAM,CAAC,CAAC,CAAa,EAAE,EAAE,CAAC,CAAC,CAAC,IAAI,CAAC;yBACpC,OAAO,CAAC,CAAC,CAAa,EAAE,EAAE;wBACzB,MAAM,GAAG,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC;wBACnC,OAAO,CAAC,GAAG,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;oBACnC,CAAC,CAAC,CAAC;gBACP,CAAC,CAAC,CAAC;aACN;YAED,OAAO;iBACJ,IAAI,CAAC,GAAsB,EAAE;gBAC5B,MAAM,QAAQ,GAAG,CAAC,UAAU,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,UAAU,CAAC,KAAK,CAAC,KAAK,CAAC,CAAC,CAAC,sBAAsB,CAAC;gBAC5F,MAAM,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;gBAC9C,OAAO;oBACL,IAAI,EAAE,QAAQ,CAAC,OAAO,CAAC;oBACvB,QAAQ,EAAE,UAAU,CAAC,KAAK,CAAC,QAAQ,IAAI,MAAM;oBAC7C,SAAS,EAAE,UAAU,CAAC,KAAK,CAAC,SAAS,IAAI,QAAQ;iBAClD,CAAC;YACJ,CAAC,CAAC;iBACD,IAAI,CAAC,CAAC,QAAQ,EAAE,EAAE;gBACjB,IAAI,CAAC,gBAAgB,CAAC,QAAQ,EAAE,QAAQ,CAAC,QAAQ,EAAE,CAAC,CAAC;YACvD,CAAC,CAAC,CAAC;QACP,CAAC,CAAA;QAGC,IAAI,CAAC,GAAG,GAAG,IAAI,CAAC,KAAK,CAAC,eAAe,CAAC,cAAc,CAAC,SAAS,CAAC,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,EAAE,cAAc,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC;QAEhJ,IAAI,CAAC,KAAK,GAAG,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC;aAC3B,MAAM,CAAC,KAAK,CAAC;aACb,OAAO,CAAC,WAAW,EAAE,IAAI,CAAC;aAC1B,IAAI,CAAC;;OAEL,CAAC,CAAC;IACP,CAAC;IAED;;;;OAIG;IACH,IAAI;QACF,MAAM,QAAQ,GAAS,IAAI,IAAI,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,CAAC,IAAI,CAAC,CAAC;YACpD,gDAAgD;aAC/C,QAAQ,CAAC,IAAI,CAAC,OAAO,CAAC,YAAY,CAAC,CAAE,+BAA+B;aACpE,UAAU,CAAU,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,eAAe,CAAC,CAAC,IAAI,EAAE,CAAC,CAAC,8CAA8C;aAC7G,KAAK,EAAE,CAAC,CAAC,qCAAqC;QAEjD,MAAM,aAAa,GAAS,QAAS,CAAC,QAAQ,EAAE,CAAC,mEAAmE;aACjH,IAAI,CAAC,GAAG,EAAE;YACT,IAAI,CAAC,YAAY,GAAS,QAAS,CAAC,QAAQ,EAAE,CAAC;YAC/C,IAAI,CAAC,iBAAiB,CAAC,QAAQ,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;QAC9C,CAAC,CAAC,CAAC;QAEL,QAAQ,CAAC,GAAG,EAAE,CAAC,CAAC,iCAAiC;QACjD,IAAI,CAAC,KAAK,CAAC,KAAK,CAAC,QAAQ,CAAC,CAAC;QAE3B,IAAI,CAAC,wBAAwB,EAAE,CAAC;QAEhC,OAAO,aAAa,CAAC,IAAI,CAAC,GAAG,EAAE,CAAC,IAAI,CAAC,CAAC;IACxC,CAAC;IAED;;;OAGG;IACK,wBAAwB;QAC9B,UAAU,CAAC,cAAc,CAAC,OAAO,EAAE,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE,CAAC,EAAE,CAAC,KAAK,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC;IAC/D,CAAC;IAED;;OAEG;IACH,MAAM;QACJ,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;QACpC,IAAI,CAAC,oBAAoB,CAAC,QAAQ,EAAE,IAAI,CAAC,IAAI,CAAC,CAAC;QAC/C,QAAQ,CAAC,QAAQ,EAAE,CAAC;QACpB,IAAI,CAAC,KAAK,CAAC,MAAM,EAAE,CAAC;IACtB,CAAC;IAED;;;;;OAKG;IACH,YAAY,CAAC,KAAU;QACrB,MAAM,QAAQ,GAAQ,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;QACzC,MAAM,GAAG,GAAG,IAAI,CAAC,YAAY,CAAC;QAC9B,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;QAE1B,iDAAiD;QACjD,IAAI,CAAC,kBAAkB,GAAG,IAAI,CAAC;QAC/B,QAAQ,CAAC,QAAQ,CAAC,KAAK,CAAC,CAAC;QACzB,IAAI,CAAC,kBAAkB,GAAG,KAAK,CAAC;QAEhC,OAAO,GAAG,CAAC;IACb,CAAC;IAED;;;;;OAKG;IACK,gBAAgB,CAAC,QAA2B,EAAE,KAAU;QAC9D,wCAAwC;QACxC,MAAM,GAAG,GAAG,IAAI,CAAC,YAAY,CAAC;QAC9B,IAAI,CAAC,YAAY,GAAG,KAAK,CAAC;QAC1B,IAAI,CAAC,KAAK,CAAC,cAAc,CAAC,QAAQ,CAAC,IAAI,CAAC,GAAG,EAAE,QAAQ,EAAE,KAAK,CAAC,EAAE;YAC7D,OAAO,EAAE,QAAQ,CAAC,IAAI,CAAC,GAAG,EAAE,QAAQ,EAAE,GAAG,CAAC;SAC3C,CAAC,CAAC;IACL,CAAC;IAED;;;;;;;;;OASG;IACH,gBAAgB;QACd,IAAG,CAAC,IAAI,CAAC,YAAY,EAAE;YACrB,OAAO,CAAC,IAAI,CAAC,oEAAoE,CAAC,CAAC;YACnF,OAAO,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;SAC5B;QAED,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;QACpC,MAAM,cAAc,GAAG,IAAI,CAAC,0BAA0B,CAAC,IAAI,CAAC,KAAK,CAAC,CAAC;QACnE,MAAM,MAAM,GAAoC,IAAI,CAAC,qBAAqB,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;QAEhG,gCAAgC;QAChC,MAAM,UAAU,GAAG,MAAM,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE;YAClC,MAAM,QAAQ,GAAI,cAAc;iBAC7B,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,IAAI,CAAC,CAAC,KAAK,KAAK,CAAC,CAAC,KAAK,CAAC;iBACvC,MAAM,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,GAAG,EAAE,EAAE,CAAC,GAAG,CAAC,SAAS,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,EAAE,KAAK,CAAC,CAAC,EAAE,CAAC,KAAK,GAAG,CAAC,WAAW,CAAC,CAAC,CAAC,CAAC,CAAC,qBAAqB;iBACvG,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,KAAK,EAAE,CAAC;iBAC3B,GAAG,CAAC,CAAC,IAAI,EAAE,EAAE;gBACZ,4CAA4C;gBAC5C,IAAG,IAAI,CAAC,IAAI,KAAK,YAAY,CAAC,SAAS,EAAE;oBACvC,IAAI,CAAC,IAAI,GAAG,GAAG,IAAI,CAAC,EAAE,0BAA0B,CAAC;oBACjD,IAAI,CAAC,UAAU,GAAG,IAAI,CAAC;iBACxB;gBACD,OAAO,IAAI,CAAC;YACd,CAAC,CAAC,CAAC;YAEL,QAAQ,CAAC,CAAC,IAAI,EAAE;gBACd,KAAK,QAAQ;oBACX,OAAO,IAAI,QAAQ,CAAC,YAAY,CAAC,SAAS,EAAE,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;gBACjE,KAAK,UAAU;oBACb,OAAO,IAAI,QAAQ,CAAC,YAAY,CAAC,WAAW,EAAE,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;gBACnE,KAAK,KAAK;oBACR,OAAO,IAAI,QAAQ,CAAC,YAAY,CAAC,GAAG,EAAE,CAAC,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;aAC5D;YACD,OAAO,SAAS,CAAC;QACnB,CAAC,CAAC;aACD,MAAM,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,0BAA0B;QAE7C,MAAM,IAAI,GAAiC,CAAC,GAAG,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC,IAAI,CAAC;aACjF,MAAM,CAAC,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,CAAC;QACzD,MAAM,UAAU,GAAG,IAAI,CAAC,kCAAkC,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;QAC3E,MAAM,SAAS,GAAG,IAAI,CAAC,8BAA8B,CAAC,IAAI,EAAE,QAAQ,CAAC,CAAC;QAEtE,OAAO,OAAO,CAAC,OAAO,CAAC;YACrB,GAAG,UAAU;YACb,oCAAoC;YACpC,GAAG,UAAU;YACb,GAAG,SAAS;SACb,CAAC,CAAC;IACL,CAAC;IAED;;;;;;OAMG;IACK,0BAA0B,CAAC,KAAsB;QACvD,OAAO,KAAK,CAAC,MAAM;aAChB,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC;aACtB,MAAM,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,WAAW,EAAE,CAAC;aAChC,GAAG,CAAC,CAAC,EAAE,EAAE,EAAE,CAAC,EAAE,CAAC,UAAU,CAAC;aAC1B,MAAM,CAAC,CAAC,IAAI,EAAE,IAAI,EAAE,EAAE,CAAC,IAAI,CAAC,MAAM,CAAC,IAAI,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,oBAAoB;IACxE,CAAC;IAED;;;;;;;;;;OAUG;IACK,qBAAqB,CAAC,IAAU,EAAE,QAAc;QACtD,OAAO,CAAC,GAAG,IAAI,CAAC,OAAO,EAAE,GAAG,IAAI,CAAC,IAAI,CAAC;aACnC,MAAM,CAAC,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,IAAI,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC;aACtD,GAAG,CAAC,CAAC,CAAc,EAAE,EAAE;YACtB,OAAO;gBACL,KAAK,EAAE,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC;gBAC5D,IAAI,EAAE,CAAC,CAAC,MAAM,CAAC,IAAI;aACpB,CAAC;QACJ,CAAC,CAAC,CAAC;IACP,CAAC;IAED;;;;;;;OAOG;IACK,kCAAkC,CAAC,IAAmB,EAAE,QAAc;QAC5E,OAAO,IAAI;aACR,MAAM,CAAC,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,KAAK,KAAK,IAAI,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC;aAC3E,GAAG,CAAC,CAAC,CAAc,EAAE,EAAE;YACtB,MAAM,KAAK,GAAG,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;YACpE,MAAM,QAAQ,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,oBAAoB,CAAC;YAC1E,MAAM,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;YAC9C,MAAM,MAAM,GAAG,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,MAAM,CAAC;iBAC/C,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;gBACZ,MAAM,OAAO,GAAG,EAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAC,CAAC;gBACnD,MAAM,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC;gBAChC,OAAO;oBACL,qGAAqG;oBACrG,EAAE,EAAE,GAAG,CAAC,CAAC,IAAI,IAAI,mBAAmB,IAAI,KAAK,EAAE;oBAC/C,IAAI,EAAE,KAAK;oBACX,KAAK;iBACN,CAAC;YACJ,CAAC,CAAC,CAAC;YACL,OAAO,WAAW,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,uBAAuB;QAC5D,CAAC,CAAC,CAAC;IACP,CAAC;IAED;;;;;;;OAOG;IACK,8BAA8B,CAAC,IAAmB,EAAE,QAAc;QACxE,OAAO,IAAI;aACR,MAAM,CAAC,CAAC,CAAc,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC,IAAI,KAAK,QAAQ,IAAI,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC;aAC7E,GAAG,CAAC,CAAC,CAAc,EAAE,EAAE;YACtB,MAAM,KAAK,GAAG,CAAC,CAAC,MAAM,CAAC,IAAI,CAAC,KAAK,CAAC;YAClC,MAAM,KAAK,GAAG,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;YACpE,MAAM,QAAQ,GAAG,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,WAAW,CAAC;YACjE,MAAM,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;YAC9C,MAAM,MAAM,GAAG,EAAE,CAAC,KAAK,CAAC,KAAK,CAAC,GAAG,EAAE,KAAK,CAAC,GAAG,EAAE,KAAK,CAAC,IAAI,CAAC;iBACtD,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;gBACZ,MAAM,OAAO,GAAG,EAAC,IAAI,EAAE,CAAC,CAAC,IAAI,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAC,CAAC;gBACnD,MAAM,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC;gBAChC,OAAO;oBACL,qGAAqG;oBACrG,EAAE,EAAE,GAAG,CAAC,CAAC,IAAI,IAAI,mBAAmB,IAAI,KAAK,EAAE;oBAC/C,IAAI,EAAE,KAAK;oBACX,KAAK;oBACL,OAAO,EAAE;wBACP,MAAM,EAAE,KAAK;wBACb,QAAQ,EAAE,KAAK;qBAChB;iBACF,CAAC;YACJ,CAAC,CAAC,CAAC;YACL,OAAO,iBAAiB,CAAC,KAAK,EAAE,MAAM,CAAC,CAAC,CAAC,6BAA6B;QACxE,CAAC,CAAC,CAAC;IACP,CAAC;IAED;;;;;OAKG;IACH,eAAe;QACb,IAAG,CAAC,IAAI,CAAC,YAAY,EAAE;YACrB,OAAO,CAAC,IAAI,CAAC,oEAAoE,CAAC,CAAC;YACnF,OAAO,OAAO,CAAC,OAAO,CAAC,EAAE,CAAC,CAAC;SAC5B;QAED,MAAM,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,KAAK,EAAE,CAAC;QAEpC;;;;;WAKG;QACH,MAAM,YAAY,GAAG,CAAC,KAAU,EAAE,QAAc,EAAE,MAAyB,EAAE,EAAE;YAC7E,OAAO,KAAK;iBACT,MAAM,CAAC,CAAC,CAAyB,EAAE,EAAE,CAAC,CAAC,CAAC,MAAM,CAAC;iBAC/C,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,MAAM,CAAC,MAAM,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,CAAC,sBAAsB;iBACvD,GAAG,CAAC,CAAC,CAAyB,EAAE,EAAE;gBACjC,IAAG,CAAC,CAAC,MAAM,IAAI,CAAC,CAAC,MAAM,CAAC,KAAK,EAAE;oBAC7B,CAAC,CAAC,MAAM,CAAC,KAAK,GAAG,IAAI,CAAC,sBAAsB,CAAC,CAAC,CAAC,MAAM,CAAC,KAAK,EAAE,QAAQ,CAAC,CAAC;iBACxE;gBACD,CAAC,CAAC,KAAK,GAAG,CAAC,MAAM,KAAK,QAAQ,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,IAAI,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;gBAClF,OAAO,CAAC,CAAC;YACX,CAAC,CAAC,CAAC;QACP,CAAC,CAAC;QAEF,IAAI,cAAgC,CAAC;QACrC,MAAM,OAAO,GAAG,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,OAAO,EAAE,QAAQ,EAAE,QAAQ,CAAC,CAAC;QACpE,cAAc,GAAG,OAAO,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,EAAE,CAAC,IAAI,CAAC,qBAAqB,CAAC,CAAC,CAAC,CAAC,CAAC;QAEnE,YAAY,CAAC,IAAI,CAAC,IAAI,CAAC,IAAI,EAAE,QAAQ,EAAE,MAAM,CAAC;aAC3C,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;YACb,gCAAgC;YAChC,cAAc,GAAG,CAAC,GAAG,cAAc,EAAE,GAAG,IAAI,CAAC,mBAAmB,CAAC,CAAC,CAAC,CAAC,CAAC;QACvE,CAAC,CAAC,CAAC;QAEL,OAAO,OAAO,CAAC,OAAO,CAAC,cAAc,CAAC,CAAC;IACzC,CAAC;IAED;;;;;;;OAOG;IACK,qBAAqB,CAAC,MAAmB;QAC/C,MAAM,OAAO,GAAG,EAAC,IAAI,EAAE,MAAM,CAAC,IAAI,EAAE,KAAK,EAAE,MAAM,CAAC,KAAK,EAAC,CAAC;QACzD,IAAI,QAAQ,EAAE,QAAQ,CAAC;QAEvB,QAAO,MAAM,CAAC,MAAM,CAAC,IAAI,EAAE;YACzB,KAAK,QAAQ;gBACX,QAAQ,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,8BAA8B,CAAC;gBACxF,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;gBAExC,OAAO,mBAAmB,CAAC,YAAY,CAAC,SAAS,EAAE;oBACjD,EAAE,EAAE,MAAM,CAAC,IAAI;oBACf,IAAI,EAAE,QAAQ,CAAC,OAAO,CAAC;oBACvB,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,KAAK;oBAC1B,OAAO,EAAE;wBACP,MAAM,EAAE,MAAM,CAAC,KAAK;qBACrB;iBACF,CAAC,CAAC;YAEL,KAAK,UAAU;gBACb,QAAQ,GAAG,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,MAAM,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,WAAW,CAAC;gBACrE,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;gBAExC,OAAO,mBAAmB,CAAC,YAAY,CAAC,WAAW,EAAE;oBACnD,EAAE,EAAE,QAAQ,CAAC,OAAO,CAAC;oBACrB,IAAI,EAAE,QAAQ,CAAC,OAAO,CAAC;oBACvB,KAAK,EAAE,MAAM,CAAC,MAAM,CAAC,KAAK;iBAC3B,CAAC,CAAC;SACN;QAED,OAAO,CAAC,IAAI,CAAC,yBAAyB,MAAM,CAAC,MAAM,CAAC,IAAI,gBAAgB,MAAM,CAAC,IAAI,IAAI,CAAC,CAAC;QACzF,OAAO,SAAS,CAAC;IACnB,CAAC;IAED;;;;;;;;OAQG;IACK,mBAAmB,CAAC,IAAc;QACxC,IAAI,QAAQ,GAAG,EAAE,CAAC;QAElB,IAAG,KAAK,CAAC,OAAO,CAAC,IAAI,CAAC,KAAK,CAAC,IAAI,IAAI,CAAC,MAAM,CAAC,IAAI,KAAK,KAAK,EAAE;YAC1D,MAAM,QAAQ,GAAG,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,MAAM,CAAC,KAAK,CAAC,CAAC,CAAC,oBAAoB,CAAC;YAChF,MAAM,QAAQ,GAAG,UAAU,CAAC,OAAO,CAAC,QAAQ,CAAC,CAAC;YAE9C,QAAQ,GAAG,IAAI,CAAC,KAAK,CAAC,GAAG,CAAC,CAAC,CAAC,EAAE,CAAC,EAAE,EAAE;gBACjC,MAAM,OAAO,GAAG,EAAC,IAAI,EAAE,IAAI,CAAC,IAAI,EAAE,KAAK,EAAE,CAAC,EAAE,KAAK,EAAE,CAAC,EAAC,CAAC;gBACtD,MAAM,KAAK,GAAG,QAAQ,CAAC,OAAO,CAAC,CAAC;gBAChC,OAAO,mBAAmB,CAAC,YAAY,CAAC,GAAG,EAAE;oBAC3C,qGAAqG;oBACrG,EAAE,EAAE,GAAG,IAAI,CAAC,IAAI,IAAI,mBAAmB,IAAI,KAAK,EAAE;oBAClD,IAAI,EAAE,KAAK;oBACX,KAAK,EAAE,IAAI,CAAC,MAAM,CAAC,KAAK;iBACzB,CAAC,CAAC;YACL,CAAC,CAAC,CAAC;SAEJ;aAAM;YACL,OAAO,CAAC,IAAI,CAAC,yBAAyB,IAAI,CAAC,MAAM,CAAC,IAAI,gBAAgB,IAAI,CAAC,IAAI,IAAI,CAAC,CAAC;SACtF;QAED,OAAO,QAAQ,CAAC;IAClB,CAAC;IAED;;;;;;;OAOG;IACK,sBAAsB,CAAC,YAAuC,EAAE,QAAc;QACpF,IAAG,CAAC,YAAY,EAAE;YAChB,OAAO;SACR;QAED,MAAM,SAAS,GAAiB,YAAa,CAAC,MAAM,CAAC;QACrD,OAAO,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,QAAQ,CAAC,MAAM,CAAC,SAAS,CAAC,CAAC,CAAC,CAAC,YAAY,CAAC;IACjE,CAAC;IAED;;;;OAIG;IACK,iBAAiB,CAAC,QAAc,EAAE,IAAU;QAClD,IAAI,IAAI,CAAC,OAAO,EAAE;YAChB,IAAI,CAAC,OAAO;iBACT,MAAM,CAAC,CAAC,MAAmB,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC;iBAC7C,OAAO,CAAC,CAAC,MAAmB,EAAE,EAAE;gBAC/B,wBAAwB;gBACxB,IAAG,MAAM,CAAC,IAAI,IAAgB,MAAM,CAAC,IAAK,CAAC,KAAK,KAAK,OAAO,EAAE;oBAC5D,IAAI,CAAC,mBAAmB,CAAC,MAAM,CAAC,IAAI,EAAc,MAAM,CAAC,IAAK,CAAC,KAAK,CAAC,CAAC;iBACvE;qBAAM;oBACL,QAAQ,CAAC,iBAAiB,CAAC,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC;iBAC7D;YACH,CAAC,CAAC,CAAC;SACN;IACH,CAAC;IAED;;;;OAIG;IACK,oBAAoB,CAAC,QAAc,EAAE,IAAU;QACrD,IAAI,IAAI,CAAC,OAAO,EAAE;YAChB,IAAI,CAAC,OAAO;iBACT,MAAM,CAAC,CAAC,MAAmB,EAAE,EAAE,CAAC,MAAM,CAAC,KAAK,CAAC;iBAC7C,OAAO,CAAC,CAAC,MAAM,EAAE,EAAE;gBAClB,QAAQ,CAAC,oBAAoB,CAAC,MAAM,CAAC,IAAI,EAAE,IAAI,CAAC,aAAa,CAAC,CAAC;YACjE,CAAC,CAAC,CAAC;SACN;QACD,kCAAkC;QAClC,IAAI,CAAC,sBAAsB,EAAE,CAAC;IAChC,CAAC;IAEO,mBAAmB,CAAC,UAAU,EAAE,SAAS;QAC/C,MAAM,WAAW,GAAsB;YACrC,QAAQ,EAAE,KAAK;YACf,IAAI,EAAE,IAAI,CAAC,KAAK,CAAC,MAAM,CAAC,eAAe,SAAS,YAAY,UAAU,IAAI,CAAC;YAC3E,QAAQ,EAAE,IAAI,GAAG,EAAE;SACpB,CAAC;QAEF,MAAM,aAAa,GAAG,GAAG,EAAE,GAAG,WAAW,CAAC,QAAQ,GAAG,IAAI,CAAC,CAAC,CAAC,CAAC;QAC7D,MAAM,WAAW,GAAG,GAAG,EAAE;YACvB,IAAG,CAAC,WAAW,CAAC,QAAQ,EAAE;gBACxB,OAAO;aACR;YACD,IAAI,CAAC,aAAa,CAAC,UAAU,EAAE,WAAW,CAAC,IAAI,CAAC,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC;YACnE,WAAW,CAAC,QAAQ,GAAG,KAAK,CAAC;QAC/B,CAAC,CAAC;QAEF,MAAM,QAAQ,GAA2B;YACvC,CAAC,WAAW,EAAE,aAAa,CAAC;YAC5B,CAAC,SAAS,EAAE,WAAW,CAAC;YACxB,CAAC,YAAY,EAAE,aAAa,CAAC;YAC7B,CAAC,UAAU,EAAE,WAAW,CAAC;SAC1B,CAAC;QAEF,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;YACrB,WAAW,CAAC,QAAQ,CAAC,GAAG,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;YACrC,WAAW,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;QAClC,CAAC,CAAC,CAAC;QAEH,IAAI,CAAC,gBAAgB,GAAG,CAAC,GAAG,IAAI,CAAC,gBAAgB,EAAE,WAAW,CAAC,CAAC;IAClE,CAAC;IAEO,sBAAsB;QAC5B,IAAI,CAAC,gBAAgB,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;YAClC,MAAM,QAAQ,GAAG,KAAK,CAAC,IAAI,CAAC,CAAC,CAAC,QAAQ,CAAC,OAAO,EAAE,CAAC,CAAC;YAClD,QAAQ,CAAC,OAAO,CAAC,CAAC,CAAC,EAAE,EAAE;gBACrB,CAAC,CAAC,IAAI,CAAC,EAAE,CAAC,CAAC,CAAC,CAAC,CAAC,EAAE,IAAI,CAAC,CAAC;YACxB,CAAC,CAAC,CAAC;QACL,CAAC,CAAC,CAAC;IAEL,CAAC;CACF"} \ No newline at end of file diff --git a/dist/internal/cmds.d.ts b/dist/internal/cmds.d.ts new file mode 100644 index 0000000..13ea650 --- /dev/null +++ b/dist/internal/cmds.d.ts @@ -0,0 +1,24 @@ +import { IObjectRef, ActionNode } from 'phovea_core'; +import { VegaView } from './VegaView'; +export interface ISetStateMetadata { + /** + * Title of the graph node + */ + name: string; + /** + * Category of this signal + * @see 'phovea_core/src/provenance/ObjectNode.ts' + */ + category: 'data' | 'selection' | 'visual' | 'layout' | 'logic' | 'custom' | 'annotation'; + /** + * Operations of this signal + * @see 'phovea_core/src/provenance/ObjectNode.ts' + */ + operation: 'create' | 'update' | 'remove'; +} +export declare const CMD_SET_STATE = "vegaSetState"; +export declare function setStateImpl(inputs: IObjectRef[], parameter: any): Promise<{ + inverse: import("phovea_core").IAction; +}>; +export declare function setState(view: IObjectRef, metadata: ISetStateMetadata, state: any): import("phovea_core").IAction; +export declare function stateCompressor(path: ActionNode[]): ActionNode[]; diff --git a/dist/internal/cmds.js b/dist/internal/cmds.js new file mode 100644 index 0000000..9f8008f --- /dev/null +++ b/dist/internal/cmds.js @@ -0,0 +1,20 @@ +import { Compression } from 'phovea_clue'; +import { ActionMetaData, ActionUtils } from 'phovea_core'; +export const CMD_SET_STATE = 'vegaSetState'; +export async function setStateImpl(inputs, parameter) { + const view = await inputs[0].v; + const old = view.setStateImpl(parameter.state); + return { + inverse: setState(inputs[0], parameter.name, old) + }; +} +export function setState(view, metadata, state) { + return ActionUtils.action(ActionMetaData.actionMeta(metadata.name, metadata.category, metadata.operation), CMD_SET_STATE, setStateImpl, [view], { + name, + state + }); +} +export function stateCompressor(path) { + return Compression.lastOnly(path, CMD_SET_STATE, (n) => n.requires[0].hash); +} +//# sourceMappingURL=cmds.js.map \ No newline at end of file diff --git a/dist/internal/cmds.js.map b/dist/internal/cmds.js.map new file mode 100644 index 0000000..85e1492 --- /dev/null +++ b/dist/internal/cmds.js.map @@ -0,0 +1 @@ +{"version":3,"file":"cmds.js","sourceRoot":"","sources":["../../src/internal/cmds.ts"],"names":[],"mappings":"AAAA,OAAO,EAAC,WAAW,EAAC,MAAM,aAAa,CAAC;AACxC,OAAO,EAAyB,cAAc,EAAE,WAAW,EAAC,MAAM,aAAa,CAAC;AAuBhF,MAAM,CAAC,MAAM,aAAa,GAAG,cAAc,CAAC;AAE5C,MAAM,CAAC,KAAK,UAAU,YAAY,CAAC,MAAyB,EAAE,SAAc;IAC1E,MAAM,IAAI,GAAG,MAAM,MAAM,CAAC,CAAC,CAAC,CAAC,CAAC,CAAC;IAC/B,MAAM,GAAG,GAAG,IAAI,CAAC,YAAY,CAAC,SAAS,CAAC,KAAK,CAAC,CAAC;IAC/C,OAAO;QACL,OAAO,EAAE,QAAQ,CAAC,MAAM,CAAC,CAAC,CAAC,EAAE,SAAS,CAAC,IAAI,EAAE,GAAG,CAAC;KAClD,CAAC;AACJ,CAAC;AAED,MAAM,UAAU,QAAQ,CAAC,IAA0B,EAAE,QAA2B,EAAE,KAAU;IAC1F,OAAO,WAAW,CAAC,MAAM,CAAC,cAAc,CAAC,UAAU,CAAC,QAAQ,CAAC,IAAI,EAAE,QAAQ,CAAC,QAAQ,EAAE,QAAQ,CAAC,SAAS,CAAC,EAAE,aAAa,EAAE,YAAY,EAAE,CAAC,IAAI,CAAC,EAAE;QAC9I,IAAI;QACJ,KAAK;KACN,CAAC,CAAC;AACL,CAAC;AAGD,MAAM,UAAU,eAAe,CAAC,IAAkB;IAChD,OAAO,WAAW,CAAC,QAAQ,CAAC,IAAI,EAAE,aAAa,EAAE,CAAC,CAAC,EAAE,EAAE,CAAC,CAAC,CAAC,QAAQ,CAAC,CAAC,CAAC,CAAC,IAAI,CAAC,CAAC;AAC9E,CAAC"} \ No newline at end of file diff --git a/dist/language.d.ts b/dist/language.d.ts new file mode 100644 index 0000000..8c75820 --- /dev/null +++ b/dist/language.d.ts @@ -0,0 +1,4 @@ +/** + * Created by Holger Stitz on Tue, 13 Mar 2018 10:20:09 GMT. + */ +export declare const APP_NAME = "Vega Gapminder"; diff --git a/dist/language.js b/dist/language.js new file mode 100644 index 0000000..f214ce2 --- /dev/null +++ b/dist/language.js @@ -0,0 +1,5 @@ +/** + * Created by Holger Stitz on Tue, 13 Mar 2018 10:20:09 GMT. + */ +export const APP_NAME = 'Vega Gapminder'; +//# sourceMappingURL=language.js.map \ No newline at end of file diff --git a/dist/language.js.map b/dist/language.js.map new file mode 100644 index 0000000..87e1bff --- /dev/null +++ b/dist/language.js.map @@ -0,0 +1 @@ +{"version":3,"file":"language.js","sourceRoot":"","sources":["../src/language.ts"],"names":[],"mappings":"AAAA;;GAEG;AAEH,MAAM,CAAC,MAAM,QAAQ,GAAG,gBAAgB,CAAC"} \ No newline at end of file diff --git a/dist/phovea.d.ts b/dist/phovea.d.ts new file mode 100644 index 0000000..8f747c9 --- /dev/null +++ b/dist/phovea.d.ts @@ -0,0 +1,2 @@ +import { IRegistry } from 'phovea_core'; +export default function (registry: IRegistry): void; diff --git a/dist/phovea.js b/dist/phovea.js new file mode 100644 index 0000000..f91035d --- /dev/null +++ b/dist/phovea.js @@ -0,0 +1,24 @@ +/* ***************************************************************************** + * Caleydo - Visualization for Molecular Biology - http://caleydo.org + * Copyright (c) The Caleydo Team. All rights reserved. + * Licensed under the new BSD license, available at http://caleydo.org/license + **************************************************************************** */ +//register all extensions in the registry following the given pattern +export default function (registry) { + /// #if include('extension-type', 'extension-id') + //registry.push('extension-type', 'extension-id', function() { return import('./src/extension_impl'); }, {}); + /// #endif + // generator-phovea:begin + registry.push('actionFunction', 'vegaSetState', function () { + return import('./internal/cmds'); + }, { + factory: 'setStateImpl' + }); + registry.push('actionCompressor', 'vegaSetState', function () { + return import('./internal/cmds'); + }, { + factory: 'stateCompressor' + }); + // generator-phovea:end +} +//# sourceMappingURL=phovea.js.map \ No newline at end of file diff --git a/dist/phovea.js.map b/dist/phovea.js.map new file mode 100644 index 0000000..fd98209 --- /dev/null +++ b/dist/phovea.js.map @@ -0,0 +1 @@ +{"version":3,"file":"phovea.js","sourceRoot":"","sources":["../src/phovea.ts"],"names":[],"mappings":"AAAA;;;;gFAIgF;AAIhF,qEAAqE;AACrE,MAAM,CAAC,OAAO,WAAW,QAAmB;IAC1C,iDAAiD;IACjD,6GAA6G;IAC7G,UAAU;IACV,yBAAyB;IACzB,QAAQ,CAAC,IAAI,CAAC,gBAAgB,EAAE,cAAc,EAAE;QAC9C,OAAO,MAAM,CAAE,iBAAiB,CAAC,CAAC;IACpC,CAAC,EAAE;QACD,OAAO,EAAE,cAAc;KACxB,CAAC,CAAC;IAEH,QAAQ,CAAC,IAAI,CAAC,kBAAkB,EAAE,cAAc,EAAE;QAChD,OAAO,MAAM,CAAE,iBAAiB,CAAC,CAAC;IACpC,CAAC,EAAE;QACD,OAAO,EAAE,iBAAiB;KAC3B,CAAC,CAAC;IAEH,uBAAuB;AACzB,CAAC"} \ No newline at end of file diff --git a/dist/robots.txt b/dist/robots.txt new file mode 100644 index 0000000..9417495 --- /dev/null +++ b/dist/robots.txt @@ -0,0 +1,3 @@ +# robotstxt.org + +User-agent: * diff --git a/dist/scss/abstracts/_variables.scss b/dist/scss/abstracts/_variables.scss new file mode 100644 index 0000000..039d3f8 --- /dev/null +++ b/dist/scss/abstracts/_variables.scss @@ -0,0 +1,42 @@ + +// header navbar color (the inverse colors will be computed using sass `invert($color)`) +$header-bg-color: #f0f0f0 !default; +$header-border-color: #ddd !default; +$header-link-color: #333 !default; +$header-dropdown-link-color: #000 !default; + +$select-color: black !default; +$select-color-bright: #ffdca3 !default; +$hover-color: black !default; + +$hover-presentation-color: #f0bb00 !default; + +$core_colour: #f0f0f0 !default; +$core_colour_text: #333 !default; +$core_colour_selected: #ddd !default; +$core_border: #ddd !default; + +$exploration-stage: $core_colour !default; +$exploration-stage-hover: $core_colour_selected !default; + +$authoring-stage: $core_colour !default; +$authoring-stage-hover: $core_colour_selected !default; +$presentation-stage: $core_colour !default; +$presentation-stage-hover: $core_colour_selected !default; + +$core_player: $authoring-stage !default; +$core_duration: #D8D8D8 !default; + +$header-menu-bg-color: #ddd !default; +$header-menu-color: #333 !default; + +$core_color_almost_black: black !default; + +$annotation_color: #009ACD !default; +$annotation_color_hover: #006b90 !default; + +$anchor_color: #EE2329 !default; +$anchor_color_hover: darken($anchor_color, 20%) !default; + +$select-data-color: orange !default; +$hover-data-color: #ffc46b !default; diff --git a/src/styles/_base.scss b/dist/scss/base/_base.scss similarity index 89% rename from src/styles/_base.scss rename to dist/scss/base/_base.scss index 130dda0..9529647 100644 --- a/src/styles/_base.scss +++ b/dist/scss/base/_base.scss @@ -1,5 +1,3 @@ -@import '~phovea_ui/src/fonts/yantramanav'; - body, html { font-family: Yantramanav, 'Helvetica Neue', Helvetica, sans-serif; font-weight: 400; diff --git a/src/styles/_vega_view.scss b/dist/scss/components/_vega_view.scss similarity index 100% rename from src/styles/_vega_view.scss rename to dist/scss/components/_vega_view.scss diff --git a/dist/scss/main.scss b/dist/scss/main.scss new file mode 100644 index 0000000..6de1a1e --- /dev/null +++ b/dist/scss/main.scss @@ -0,0 +1,7 @@ +@import "./abstracts/variables"; + +@import "./overrides/clue_override"; + +@import "./base/base"; + +@import "./components/vega_view"; diff --git a/dist/scss/overrides/_clue_override.scss b/dist/scss/overrides/_clue_override.scss new file mode 100644 index 0000000..f21340e --- /dev/null +++ b/dist/scss/overrides/_clue_override.scss @@ -0,0 +1,113 @@ +/** + * All rules in this file override or directly extend the original clue styles + */ + +// overrides caleydo_clue/styles/base +header.clue-modeselector { + top: 1px; +} + +[data-clue=E] header.clue-modeselector.collapsed { + transition: none; +} + +// overrides caleydo_clue/styles/base +aside { + border: 0; + border-left: 2px solid $core_colour_selected; + border-radius: 0; + margin: 0; + + div h2 { + padding: 0.555em .5em; + } + + &.provenance-layout-vis { + border-color: $core_colour_selected; + } + + &.provenance-story-vis { + border-color: $core_colour_selected; + } + + &.annotations { + border: 2px solid $core_colour_selected; + > div:first-of-type { + background-color: $presentation-stage; + } + } +} + +// overrides caleydo_clue/styles/base +label { + + &.clue-E, &.clue-A, &.clue-P { + padding: 5px 10px; + border-radius: 0 !important; + border: none; + border-left: 1px solid $header-menu-bg-color; + border-right: 1px solid $header-menu-bg-color; + margin: 0; + background-color: transparent; + + &.active, &:hover, &:active { + font-weight: normal; + } + } +} + +// overrides caleydo_clue/styles/storyvis +.provenance-story-vis { + width: auto; + + div.current { + margin: .2em .5em; + } + + form.toolbar { + margin: .2em .5em; + } +} + +div.stories { + + &.vertical { + + &.large { + width: auto; + } + + } +} + +// overrides caleydo_clue/styles/provvis +.provenance-layout-vis { + + div.state { + + > div:hover { + .slabel, .icon, .glyph { + font-weight: 700; + } + } + + &.phovea-select-selected .slabel { + font-weight: 700; + } + + .toolbar { + margin: .2em .5em; + } + + &.caleydo-select-selected { + font-weight: 500; + } + &.caleydo-select-hovered { + font-weight: 500; + } + } +} + +.select2-container--bootstrap .select2-results__option--highlighted[aria-selected] { + background-color: #777; +} diff --git a/jest.config.js b/jest.config.js new file mode 100644 index 0000000..c45c80c --- /dev/null +++ b/jest.config.js @@ -0,0 +1,55 @@ +// test dependencies that require transformation +let pluginsToTransform = [ + 'tdp_*', + 'phovea_*', + 'lineupjs' +].join('|'); + +if(pluginsToTransform.length > 0) { + /** Attention: Negative Lookahead! This regex adds the specified repos to a whitelist that holds plugins that are excluded from the transformIgnorePatterns. + * This means that pluginsToTransform should contain all repos that export ts files. They can only be handled by the transformation. */ + pluginsToTransform = `(?!${pluginsToTransform})`; +} + +/** + * TODO check if we can process inline webpack loaders (e.g. as found in https://github.com/phovea/phovea_ui/blob/master/src/_bootstrap.ts) + * see also https://jestjs.io/docs/en/webpack#mocking-css-modules + */ +module.exports = { + transform: { + "^.+\\.tsx?$": "ts-jest", + "\\.xml$": "jest-raw-loader" + }, + testRegex: "(.*(test|spec))\\.(tsx?)$", + moduleFileExtensions: [ + "ts", + "tsx", + "js", + "jsx", + "json", + "node" + ], + modulePaths: [ + "src", + "../node_modules", + "../" + ], + transformIgnorePatterns: [`../node_modules/${pluginsToTransform}`, `node_modules/${pluginsToTransform}`], + globals: { + "__VERSION__": "TEST_VERSION", + "__APP_CONTEXT__": "TEST_CONTEXT", + 'ts-jest': { + // has to be set to true, otherwise i18n import fails + "tsconfig": { + "esModuleInterop": true, + } + } + }, + moduleNameMapper: { + "^.+\\.(css|less|scss|sass|png|jpg|gif)$": "identity-obj-proxy", + "imports-loader?.*": "imports-loader", + "raw-loader?.*": "raw-loader", + "file-loader?.*": "file-loader", + "script-loader?.*": "script-loader" + } +} diff --git a/karma.conf.js b/karma.conf.js deleted file mode 100644 index eb434ab..0000000 --- a/karma.conf.js +++ /dev/null @@ -1,52 +0,0 @@ -/* ***************************************************************************** - * Caleydo - Visualization for Molecular Biology - http://caleydo.org - * Copyright (c) The Caleydo Team. All rights reserved. - * Licensed under the new BSD license, available at http://caleydo.org/license - **************************************************************************** */ - -const webpack = require('./webpack.config.js'); - -module.exports = (config) => { - config.set({ - // frameworks to use - // available frameworks: https://npmjs.org/browse/keyword/karma-adapter - frameworks: ['jasmine'], - - // list of files / patterns to load in the browser - files: [ - 'tests.webpack.js' // just load this file - ], - - // preprocess matching files before serving them to the browser - // available preprocessors: https://npmjs.org/browse/keyword/karma-preprocessor - preprocessors: { - // add webpack as preprocessor - 'tests.webpack.js': ['webpack', 'sourcemap'] - }, - - webpack: webpack('test'), - - failOnEmptyTestSuite: false, - - // test results reporter to use - // possible values: 'dots', 'progress' - // available reporters: https://npmjs.org/browse/keyword/karma-reporter - reporters: ['progress'], - - // enable / disable watching file and executing tests whenever any file changes - autoWatch: false, - - // middleware: ['polyfill'], - // BUG that install everything "karma-polyfill-service": "github:sgratzl/karma-polyfill-service", - polyfill: { - // features: '', // feature set, see polyfill-service docs for details, defaults to `{default: {}}` - // path: '' // path to serve the polyfill script under, defaults to '/polyfill.js' - }, - - browsers: [process.env.CONTINUOUS_INTEGRATION ? 'Firefox' : 'Chrome'], - - // Continuous Integration mode - // if true, Karma captures browsers, runs the tests and exits - singleRun: true - }); -}; diff --git a/package-lock.json b/package-lock.json deleted file mode 100644 index d371d9a..0000000 --- a/package-lock.json +++ /dev/null @@ -1,9751 +0,0 @@ -{ - "name": "vega_clue", - "version": "1.0.0-SNAPSHOT", - "lockfileVersion": 1, - "requires": true, - "dependencies": { - "@types/bootstrap": { - "version": "3.3.32", - "resolved": "https://registry.npmjs.org/@types/bootstrap/-/bootstrap-3.3.32.tgz", - "integrity": "sha1-q69LNk0IbeDLd5HbDP1VcDtZH60=", - "requires": { - "@types/jquery": "*" - } - }, - "@types/d3": { - "version": "3.5.36", - "resolved": "https://registry.npmjs.org/@types/d3/-/d3-3.5.36.tgz", - "integrity": "sha1-CUOrmCU0IfsHua38bcfd02xReLI=" - }, - "@types/events": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/@types/events/-/events-3.0.0.tgz", - "integrity": "sha512-EaObqwIvayI5a8dCzhFrjKzVwKLxjoG9T6Ppd5CEo07LRKfQ8Yokw54r5+Wq7FaBQ+yXRvQAYPrHwya1/UFt9g==", - "dev": true - }, - "@types/fs-extra": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/@types/fs-extra/-/fs-extra-5.0.1.tgz", - "integrity": "sha512-h3wnflb+jMTipvbbZnClgA2BexrT4w0GcfoCz5qyxd0IRsbqhLSyesM6mqZTAnhbVmhyTm5tuxfRu9R+8l+lGw==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "@types/glob": { - "version": "7.1.1", - "resolved": "https://registry.npmjs.org/@types/glob/-/glob-7.1.1.tgz", - "integrity": "sha512-1Bh06cbWJUHMC97acuD6UMG29nMt0Aqz1vF3guLfG+kHHJhy3AyohZFFxYk2f7Q1SQIrNwvncxAE0N/9s70F2w==", - "dev": true, - "requires": { - "@types/events": "*", - "@types/minimatch": "*", - "@types/node": "*" - } - }, - "@types/handlebars": { - "version": "4.0.33", - "resolved": "https://registry.npmjs.org/@types/handlebars/-/handlebars-4.0.33.tgz", - "integrity": "sha512-39w19Mseg83z68JsIdcuFH3Z+BR/Jc3gRBB4Pn/aUm76rdy0prMz5iIMJAOb0Bo6H/rZhQc41vFf3tAMgqufVQ==" - }, - "@types/highlight.js": { - "version": "9.12.2", - "resolved": "https://registry.npmjs.org/@types/highlight.js/-/highlight.js-9.12.2.tgz", - "integrity": "sha512-y5x0XD/WXDaGSyiTaTcKS4FurULJtSiYbGTeQd0m2LYZGBcZZ/7fM6t5H/DzeUF+kv8y6UfmF6yJABQsHcp9VQ==", - "dev": true - }, - "@types/jasmine": { - "version": "2.5.47", - "resolved": "https://registry.npmjs.org/@types/jasmine/-/jasmine-2.5.47.tgz", - "integrity": "sha1-u7qbzw6V54kMb0pHOU6LrKqWDrY=", - "dev": true - }, - "@types/jquery": { - "version": "2.0.33", - "resolved": "https://registry.npmjs.org/@types/jquery/-/jquery-2.0.33.tgz", - "integrity": "sha1-aE7zoumfb9KvxSo1fkeuBfUfT2w=" - }, - "@types/lodash": { - "version": "4.14.104", - "resolved": "https://registry.npmjs.org/@types/lodash/-/lodash-4.14.104.tgz", - "integrity": "sha512-ufQcVg4daO8xQ5kopxRHanqFdL4AI7ondQkV+2f+7mz3gvp0LkBx2zBRC6hfs3T87mzQFmf5Fck7Fi145Ul6NQ==", - "dev": true - }, - "@types/marked": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/@types/marked/-/marked-0.3.0.tgz", - "integrity": "sha512-CSf9YWJdX1DkTNu9zcNtdCcn6hkRtB5ILjbhRId4ZOQqx30fXmdecuaXhugQL6eyrhuXtaHJ7PHI+Vm7k9ZJjg==" - }, - "@types/minimatch": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/@types/minimatch/-/minimatch-3.0.3.tgz", - "integrity": "sha512-tHq6qdbT9U1IRSGf14CL0pUlULksvY9OZ+5eEgl1N7t+OA3tGvNpxJCzuKQlsNgCVwbAs670L1vcVQi8j9HjnA==", - "dev": true - }, - "@types/node": { - "version": "12.11.1", - "resolved": "https://registry.npmjs.org/@types/node/-/node-12.11.1.tgz", - "integrity": "sha512-TJtwsqZ39pqcljJpajeoofYRfeZ7/I/OMUQ5pR4q5wOKf2ocrUvBAZUMhWsOvKx3dVc/aaV5GluBivt0sWqA5A==", - "dev": true - }, - "@types/select2": { - "version": "4.0.41", - "resolved": "https://registry.npmjs.org/@types/select2/-/select2-4.0.41.tgz", - "integrity": "sha512-3/91X/6jP7eW8Qx1Gjs5W7kdF+5C4XWZJRaDeFCKjpqCvCDI5QkB288OK+JXvWnQtqVYF+WNUshPIyvbMpQMrQ==", - "requires": { - "@types/jquery": "*" - } - }, - "@types/shelljs": { - "version": "0.7.8", - "resolved": "https://registry.npmjs.org/@types/shelljs/-/shelljs-0.7.8.tgz", - "integrity": "sha512-M2giRw93PxKS7YjU6GZjtdV9HASdB7TWqizBXe4Ju7AqbKlWvTr0gNO92XH56D/gMxqD/jNHLNfC5hA34yGqrQ==", - "dev": true, - "requires": { - "@types/glob": "*", - "@types/node": "*" - } - }, - "@types/whatwg-fetch": { - "version": "0.0.33", - "resolved": "https://registry.npmjs.org/@types/whatwg-fetch/-/whatwg-fetch-0.0.33.tgz", - "integrity": "sha1-GcDShjyMsjgPIaHHNrecv3iVuxM=", - "requires": { - "@types/whatwg-streams": "*" - } - }, - "@types/whatwg-streams": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/@types/whatwg-streams/-/whatwg-streams-0.0.4.tgz", - "integrity": "sha512-dM5YQytWb1EunntizWnsAsADJxbXhHQyPoRxXlfEMPULcnbgzB02qZ8KI/K5yFItulzoidxWbX4OO/w4FN92Sg==" - }, - "abbrev": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/abbrev/-/abbrev-1.1.1.tgz", - "integrity": "sha512-nne9/IiQ/hzIhY6pdDnbBtz7DjPTKrY00P/zvPSm5pOFkl6xuGrGnXn/VtTNNfNtAfZ9/1RtehkszU9qcTii0Q==", - "dev": true - }, - "accepts": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.3.tgz", - "integrity": "sha1-w8p0NJOGSMPg2cHjKN1otiLChMo=", - "dev": true, - "requires": { - "mime-types": "~2.1.11", - "negotiator": "0.6.1" - } - }, - "acorn": { - "version": "4.0.13", - "resolved": "https://registry.npmjs.org/acorn/-/acorn-4.0.13.tgz", - "integrity": "sha1-EFSVrlNh1pe9GVyCUZLhrX8lN4c=", - "dev": true - }, - "acorn-dynamic-import": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/acorn-dynamic-import/-/acorn-dynamic-import-2.0.2.tgz", - "integrity": "sha1-x1K9IQvvZ5UBtsbLf8hPj0cVjMQ=", - "dev": true, - "requires": { - "acorn": "^4.0.3" - } - }, - "after": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/after/-/after-0.8.2.tgz", - "integrity": "sha1-/ts5T58OAqqXaOcCvaI7UF+ufh8=", - "dev": true - }, - "ajv": { - "version": "6.10.2", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-6.10.2.tgz", - "integrity": "sha512-TXtUUEYHuaTEbLZWIKUr5pmBuhDLy+8KYtPYdcV8qC+pOZL+NKqYwvWSRrVXHn+ZmRRAu8vJTAznH7Oag6RVRw==", - "dev": true, - "requires": { - "fast-deep-equal": "^2.0.1", - "fast-json-stable-stringify": "^2.0.0", - "json-schema-traverse": "^0.4.1", - "uri-js": "^4.2.2" - } - }, - "ajv-keywords": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-3.4.1.tgz", - "integrity": "sha512-RO1ibKvd27e6FEShVFfPALuHI3WjSVNeK5FIsmme/LYRNxjKuNj+Dt7bucLa6NdSv3JcVTyMlm9kGR84z1XpaQ==", - "dev": true - }, - "align-text": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/align-text/-/align-text-0.1.4.tgz", - "integrity": "sha1-DNkKVhCT810KmSVsIrcGlDP60Rc=", - "dev": true, - "requires": { - "kind-of": "^3.0.2", - "longest": "^1.0.1", - "repeat-string": "^1.5.2" - } - }, - "almond": { - "version": "0.3.3", - "resolved": "https://registry.npmjs.org/almond/-/almond-0.3.3.tgz", - "integrity": "sha1-oOfJWsdiTWQXtElLHmi/9pMWiiA=" - }, - "alphanum-sort": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/alphanum-sort/-/alphanum-sort-1.0.2.tgz", - "integrity": "sha1-l6ERlkmyEa0zaR2fn0hqjsn74KM=", - "dev": true - }, - "amdefine": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/amdefine/-/amdefine-1.0.1.tgz", - "integrity": "sha1-SlKCrBZHKek2Gbz9OtFR+BfOkfU=", - "dev": true - }, - "ansi-html": { - "version": "0.0.7", - "resolved": "https://registry.npmjs.org/ansi-html/-/ansi-html-0.0.7.tgz", - "integrity": "sha1-gTWEAhliqenm/QOflA0S9WynhZ4=", - "dev": true - }, - "ansi-regex": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ansi-regex/-/ansi-regex-2.1.1.tgz", - "integrity": "sha1-w7M6te42DYbg5ijwRorn7yfWVN8=", - "dev": true - }, - "ansi-styles": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-2.2.1.tgz", - "integrity": "sha1-tDLdM1i2NM914eRmQ2gkBTPB3b4=", - "dev": true - }, - "anymatch": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-1.3.2.tgz", - "integrity": "sha512-0XNayC8lTHQ2OI8aljNCN3sSx6hsr/1+rlcDAotXJR7C1oZZHCNsfpbKwMjRA3Uqb5tF1Rae2oloTr4xpq+WjA==", - "dev": true, - "requires": { - "micromatch": "^2.1.5", - "normalize-path": "^2.0.0" - } - }, - "aproba": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/aproba/-/aproba-1.2.0.tgz", - "integrity": "sha512-Y9J6ZjXtoYh8RnXVCMOU/ttDmk1aBjunq9vO0ta5x85WDQiQfUF9sIPBITdbiiIVcBo03Hi3jMxigBtsddlXRw==", - "dev": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "resolved": "https://registry.npmjs.org/are-we-there-yet/-/are-we-there-yet-1.1.5.tgz", - "integrity": "sha512-5hYdAkZlcG8tOLujVDTgCT+uPX0VnpAH28gWsLfzpXYm7wP6mp5Q/gYyR7YQ0cKVJcXJnl3j2kpBan13PtQf6w==", - "dev": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "argparse": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/argparse/-/argparse-1.0.10.tgz", - "integrity": "sha512-o5Roy6tNG4SL/FOkCAN6RzjiakZS25RLYFrcMttJqbdd8BWrnA+fGz57iN5Pb06pvBGvl5gQ0B48dJlslXvoTg==", - "dev": true, - "requires": { - "sprintf-js": "~1.0.2" - } - }, - "arr-diff": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-2.0.0.tgz", - "integrity": "sha1-jzuCf5Vai9ZpaX5KQlasPOrjVs8=", - "dev": true, - "requires": { - "arr-flatten": "^1.0.1" - } - }, - "arr-flatten": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/arr-flatten/-/arr-flatten-1.1.0.tgz", - "integrity": "sha512-L3hKV5R/p5o81R7O02IGnwpDmkp6E982XhtbuwSe3O4qOtMMMtodicASA1Cny2U+aCXcNpml+m4dPsvsJ3jatg==", - "dev": true - }, - "arr-union": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/arr-union/-/arr-union-3.1.0.tgz", - "integrity": "sha1-45sJrqne+Gao8gbiiK9jkZuuOcQ=", - "dev": true - }, - "array-find-index": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/array-find-index/-/array-find-index-1.0.2.tgz", - "integrity": "sha1-3wEKoSh+Fku9pvlyOwqWoexBh6E=", - "dev": true - }, - "array-flatten": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/array-flatten/-/array-flatten-1.1.1.tgz", - "integrity": "sha1-ml9pkFGx5wczKPKgCJaLZOopVdI=", - "dev": true - }, - "array-slice": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/array-slice/-/array-slice-0.2.3.tgz", - "integrity": "sha1-3Tz7gO15c6dRF82sabC5nshhhvU=", - "dev": true - }, - "array-unique": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.2.1.tgz", - "integrity": "sha1-odl8yvy8JiXMcPrc6zalDFiwGlM=", - "dev": true - }, - "arraybuffer.slice": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/arraybuffer.slice/-/arraybuffer.slice-0.0.6.tgz", - "integrity": "sha1-8zshWfBTKj8xB6JywMz70a0peco=", - "dev": true - }, - "asn1": { - "version": "0.2.4", - "resolved": "https://registry.npmjs.org/asn1/-/asn1-0.2.4.tgz", - "integrity": "sha512-jxwzQpLQjSmWXgwaCZE9Nz+glAG01yF1QnWgbhGwHI5A6FRIEY6IVqtHhIepHqI7/kyEyQEagBC5mBEFlIYvdg==", - "dev": true, - "requires": { - "safer-buffer": "~2.1.0" - } - }, - "asn1.js": { - "version": "4.10.1", - "resolved": "https://registry.npmjs.org/asn1.js/-/asn1.js-4.10.1.tgz", - "integrity": "sha512-p32cOF5q0Zqs9uBiONKYLm6BClCoBCM5O9JfeUSlnQLBTxYdTK+pW+nXflm8UkKd2UYlEbYz5qEi0JuZR9ckSw==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "assert": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/assert/-/assert-1.5.0.tgz", - "integrity": "sha512-EDsgawzwoun2CZkCgtxJbv392v4nbk9XDD06zI+kQYoBM/3RBWLlEyJARDOmhAAosBjWACEkKL6S+lIZtcAubA==", - "dev": true, - "requires": { - "object-assign": "^4.1.1", - "util": "0.10.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.1.tgz", - "integrity": "sha1-sX0I0ya0Qj5Wjv9xn5GwscvfafE=", - "dev": true - }, - "util": { - "version": "0.10.3", - "resolved": "https://registry.npmjs.org/util/-/util-0.10.3.tgz", - "integrity": "sha1-evsa/lCAUkZInj23/g7TeTNqwPk=", - "dev": true, - "requires": { - "inherits": "2.0.1" - } - } - } - }, - "assert-plus": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assert-plus/-/assert-plus-1.0.0.tgz", - "integrity": "sha1-8S4PPF13sLHN2RRpQuTpbB5N1SU=", - "dev": true - }, - "assign-symbols": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/assign-symbols/-/assign-symbols-1.0.0.tgz", - "integrity": "sha1-WWZ/QfrdTyDMvCu5a41Pf3jsA2c=", - "dev": true - }, - "ast-types": { - "version": "0.9.6", - "resolved": "https://registry.npmjs.org/ast-types/-/ast-types-0.9.6.tgz", - "integrity": "sha1-ECyenpAF0+fjgpvwxPok7oYu6bk=", - "dev": true - }, - "async": { - "version": "2.6.3", - "resolved": "https://registry.npmjs.org/async/-/async-2.6.3.tgz", - "integrity": "sha512-zflvls11DCy+dQWzTW2dzuilv8Z5X/pjfmZOWba6TNIVDm+2UDaJmXSOXlasHKfNBs8oo3M0aT50fDEWfKZjXg==", - "dev": true, - "requires": { - "lodash": "^4.17.14" - } - }, - "async-each": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/async-each/-/async-each-1.0.3.tgz", - "integrity": "sha512-z/WhQ5FPySLdvREByI2vZiTWwCnF0moMJ1hK9YQwDTHKh6I7/uSckMetoRGb5UBZPC1z0jlw+n/XCgjeH7y1AQ==", - "dev": true - }, - "async-foreach": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/async-foreach/-/async-foreach-0.1.3.tgz", - "integrity": "sha1-NhIfhFwFeBct5Bmpfb6x0W7DRUI=", - "dev": true - }, - "asynckit": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/asynckit/-/asynckit-0.4.0.tgz", - "integrity": "sha1-x57Zf380y48robyXkLzDZkdLS3k=", - "dev": true - }, - "atob": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/atob/-/atob-2.1.2.tgz", - "integrity": "sha512-Wm6ukoaOGJi/73p/cl2GvLjTI5JM1k/O14isD73YML8StrH/7/lRFgmg8nICZgD3bZZvjwCGxtMOD3wWNAu8cg==", - "dev": true - }, - "autoprefixer": { - "version": "6.7.7", - "resolved": "https://registry.npmjs.org/autoprefixer/-/autoprefixer-6.7.7.tgz", - "integrity": "sha1-Hb0cg1ZY41zj+ZhAmdsAWFx4IBQ=", - "dev": true, - "requires": { - "browserslist": "^1.7.6", - "caniuse-db": "^1.0.30000634", - "normalize-range": "^0.1.2", - "num2fraction": "^1.2.2", - "postcss": "^5.2.16", - "postcss-value-parser": "^3.2.3" - } - }, - "awesome-typescript-loader": { - "version": "3.1.2", - "resolved": "https://registry.npmjs.org/awesome-typescript-loader/-/awesome-typescript-loader-3.1.2.tgz", - "integrity": "sha1-PfGSuRpihfeVymXmOq0RT7tE9xA=", - "dev": true, - "requires": { - "colors": "^1.1.2", - "enhanced-resolve": "^3.1.0", - "loader-utils": "^1.0.2", - "lodash": "^4.17.4", - "mkdirp": "^0.5.1", - "object-assign": "^4.1.1", - "source-map-support": "^0.4.11" - } - }, - "aws-sign2": { - "version": "0.7.0", - "resolved": "https://registry.npmjs.org/aws-sign2/-/aws-sign2-0.7.0.tgz", - "integrity": "sha1-tG6JCTSpWR8tL2+G1+ap8bP+dqg=", - "dev": true - }, - "aws4": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/aws4/-/aws4-1.8.0.tgz", - "integrity": "sha512-ReZxvNHIOv88FlT7rxcXIIC0fPt4KZqZbOlivyWtXLt8ESx84zd3kMC6iK5jVeS2qt+g7ftS7ye4fi06X5rtRQ==", - "dev": true - }, - "babel-code-frame": { - "version": "6.26.0", - "resolved": "https://registry.npmjs.org/babel-code-frame/-/babel-code-frame-6.26.0.tgz", - "integrity": "sha1-Y/1D99weO7fONZR9uP42mj9Yx0s=", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "esutils": "^2.0.2", - "js-tokens": "^3.0.2" - } - }, - "backo2": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/backo2/-/backo2-1.0.2.tgz", - "integrity": "sha1-MasayLEpNjRj41s+u2n038+6eUc=", - "dev": true - }, - "balanced-match": { - "version": "0.4.2", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-0.4.2.tgz", - "integrity": "sha1-yz8+PHMtwPAe5wtAPzAuYddwmDg=", - "dev": true - }, - "base": { - "version": "0.11.2", - "resolved": "https://registry.npmjs.org/base/-/base-0.11.2.tgz", - "integrity": "sha512-5T6P4xPgpp0YDFvSWwEZ4NoE3aM4QBQXDzmVbraCkFj8zHM+mba8SyqB5DbZWyR7mYHo6Y7BdQo3MoA4m0TeQg==", - "dev": true, - "requires": { - "cache-base": "^1.0.1", - "class-utils": "^0.3.5", - "component-emitter": "^1.2.1", - "define-property": "^1.0.0", - "isobject": "^3.0.1", - "mixin-deep": "^1.2.0", - "pascalcase": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "base64-arraybuffer": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/base64-arraybuffer/-/base64-arraybuffer-0.1.5.tgz", - "integrity": "sha1-c5JncZI7Whl0etZmqlzUv5xunOg=", - "dev": true - }, - "base64-js": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/base64-js/-/base64-js-1.3.1.tgz", - "integrity": "sha512-mLQ4i2QO1ytvGWFWmcngKO//JXAQueZvwEKtjgQFM4jIK0kU+ytMfplL8j+n5mspOfjHwoAg+9yhb7BwAHm36g==", - "dev": true - }, - "base64id": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/base64id/-/base64id-1.0.0.tgz", - "integrity": "sha1-R2iMuZu2gE8OBtPnY7HDLlfY5rY=", - "dev": true - }, - "batch": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/batch/-/batch-0.6.1.tgz", - "integrity": "sha1-3DQxT05nkxgJP8dgJyUl+UvyXBY=", - "dev": true - }, - "bcrypt-pbkdf": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/bcrypt-pbkdf/-/bcrypt-pbkdf-1.0.2.tgz", - "integrity": "sha1-pDAdOJtqQ/m2f/PKEaP2Y342Dp4=", - "dev": true, - "requires": { - "tweetnacl": "^0.14.3" - } - }, - "better-assert": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/better-assert/-/better-assert-1.0.2.tgz", - "integrity": "sha1-QIZrnhueC1W0gYlDEeaPr/rrxSI=", - "dev": true, - "requires": { - "callsite": "1.0.0" - } - }, - "big.js": { - "version": "5.2.2", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-5.2.2.tgz", - "integrity": "sha512-vyL2OymJxmarO8gxMr0mhChsO9QGwhynfuu4+MHTAW6czfq9humCB7rKpUjDd9YUiDPU4mzpyupFSvOClAwbmQ==", - "dev": true - }, - "binary-extensions": { - "version": "1.13.1", - "resolved": "https://registry.npmjs.org/binary-extensions/-/binary-extensions-1.13.1.tgz", - "integrity": "sha512-Un7MIEDdUC5gNpcGDV97op1Ywk748MpHcFTHoYs6qnj1Z3j7I53VG3nwZhKzoBZmbdRNnb6WRdFlwl7tSDuZGw==", - "dev": true - }, - "blob": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/blob/-/blob-0.0.4.tgz", - "integrity": "sha1-vPEwUspURj8w+fx+lbmkdjCpSSE=", - "dev": true - }, - "block-stream": { - "version": "0.0.9", - "resolved": "https://registry.npmjs.org/block-stream/-/block-stream-0.0.9.tgz", - "integrity": "sha1-E+v+d4oDIFz+A3UUgeu0szAMEmo=", - "dev": true, - "requires": { - "inherits": "~2.0.0" - } - }, - "bluebird": { - "version": "3.7.1", - "resolved": "https://registry.npmjs.org/bluebird/-/bluebird-3.7.1.tgz", - "integrity": "sha512-DdmyoGCleJnkbp3nkbxTLJ18rjDsE4yCggEwKNXkeV123sPNfOCYeDoeuOY+F2FrSjO1YXcTU+dsy96KMy+gcg==", - "dev": true - }, - "bn.js": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/bn.js/-/bn.js-4.11.8.tgz", - "integrity": "sha512-ItfYfPLkWHUjckQCk8xC+LwxgK8NYcXywGigJgSwOP8Y2iyWT4f2vsZnoOXTTbo+o5yXmIUJ4gn5538SO5S3gA==", - "dev": true - }, - "body-parser": { - "version": "1.19.0", - "resolved": "https://registry.npmjs.org/body-parser/-/body-parser-1.19.0.tgz", - "integrity": "sha512-dhEPs72UPbDnAQJ9ZKMNTP6ptJaionhP5cBb541nXPlW60Jepo9RV/a4fX4XWW9CuFNK22krhrj1+rgzifNCsw==", - "dev": true, - "requires": { - "bytes": "3.1.0", - "content-type": "~1.0.4", - "debug": "2.6.9", - "depd": "~1.1.2", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "on-finished": "~2.3.0", - "qs": "6.7.0", - "raw-body": "2.4.0", - "type-is": "~1.6.17" - } - }, - "bootstrap-sass": { - "version": "3.3.7", - "resolved": "https://registry.npmjs.org/bootstrap-sass/-/bootstrap-sass-3.3.7.tgz", - "integrity": "sha1-ZZbHq0D2Y3OTMjqwvIDQZPxjBJg=" - }, - "brace-expansion": { - "version": "1.1.11", - "resolved": "https://registry.npmjs.org/brace-expansion/-/brace-expansion-1.1.11.tgz", - "integrity": "sha512-iCuPHDFgrHX7H2vEI/5xpz07zSHB00TpugqhmYtVmMO6518mCuRMoOYFldEBl0g187ufozdaHgWKcYFb61qGiA==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - }, - "dependencies": { - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - } - } - }, - "braces": { - "version": "1.8.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-1.8.5.tgz", - "integrity": "sha1-uneWLhLf+WnWt2cR6RS3N4V79qc=", - "dev": true, - "requires": { - "expand-range": "^1.8.1", - "preserve": "^0.2.0", - "repeat-element": "^1.1.2" - } - }, - "brorand": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/brorand/-/brorand-1.1.0.tgz", - "integrity": "sha1-EsJe/kCkXjwyPrhnWgoM5XsiNx8=", - "dev": true - }, - "browserify-aes": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/browserify-aes/-/browserify-aes-1.2.0.tgz", - "integrity": "sha512-+7CHXqGuspUn/Sl5aO7Ea0xWGAtETPXNSAjHo48JfLdPWcMng33Xe4znFvQweqc/uzk5zSOI3H52CYnjCfb5hA==", - "dev": true, - "requires": { - "buffer-xor": "^1.0.3", - "cipher-base": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.3", - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "browserify-cipher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/browserify-cipher/-/browserify-cipher-1.0.1.tgz", - "integrity": "sha512-sPhkz0ARKbf4rRQt2hTpAHqn47X3llLkUGn+xEJzLjwY8LRs2p0v7ljvI5EyoRO/mexrNunNECisZs+gw2zz1w==", - "dev": true, - "requires": { - "browserify-aes": "^1.0.4", - "browserify-des": "^1.0.0", - "evp_bytestokey": "^1.0.0" - } - }, - "browserify-des": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/browserify-des/-/browserify-des-1.0.2.tgz", - "integrity": "sha512-BioO1xf3hFwz4kc6iBhI3ieDFompMhrMlnDFC4/0/vd5MokpuAc3R+LYbwTA9A5Yc9pq9UYPqffKpW2ObuwX5A==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "des.js": "^1.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "browserify-rsa": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/browserify-rsa/-/browserify-rsa-4.0.1.tgz", - "integrity": "sha1-IeCr+vbyApzy+vsTNWenAdQTVSQ=", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "randombytes": "^2.0.1" - } - }, - "browserify-sign": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/browserify-sign/-/browserify-sign-4.0.4.tgz", - "integrity": "sha1-qk62jl17ZYuqa/alfmMMvXqT0pg=", - "dev": true, - "requires": { - "bn.js": "^4.1.1", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.2", - "elliptic": "^6.0.0", - "inherits": "^2.0.1", - "parse-asn1": "^5.0.0" - } - }, - "browserify-zlib": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/browserify-zlib/-/browserify-zlib-0.2.0.tgz", - "integrity": "sha512-Z942RysHXmJrhqk88FmKBVq/v5tqmSkDz7p54G/MGyjMnCFFnC79XWNbg+Vta8W6Wb2qtSZTSxIGkJrRpCFEiA==", - "dev": true, - "requires": { - "pako": "~1.0.5" - } - }, - "browserslist": { - "version": "1.7.7", - "resolved": "https://registry.npmjs.org/browserslist/-/browserslist-1.7.7.tgz", - "integrity": "sha1-C9dnBCWL6CmyOYu1Dkti0aFmsLk=", - "dev": true, - "requires": { - "caniuse-db": "^1.0.30000639", - "electron-to-chromium": "^1.2.7" - } - }, - "buffer": { - "version": "4.9.1", - "resolved": "https://registry.npmjs.org/buffer/-/buffer-4.9.1.tgz", - "integrity": "sha1-bRu2AbB6TvztlwlBMgkwJ8lbwpg=", - "dev": true, - "requires": { - "base64-js": "^1.0.2", - "ieee754": "^1.1.4", - "isarray": "^1.0.0" - } - }, - "buffer-alloc": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/buffer-alloc/-/buffer-alloc-1.2.0.tgz", - "integrity": "sha512-CFsHQgjtW1UChdXgbyJGtnm+O/uLQeZdtbDo8mfUgYXCHSM1wgrVxXm6bSyrUuErEb+4sYVGCzASBRot7zyrow==", - "dev": true, - "requires": { - "buffer-alloc-unsafe": "^1.1.0", - "buffer-fill": "^1.0.0" - } - }, - "buffer-alloc-unsafe": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/buffer-alloc-unsafe/-/buffer-alloc-unsafe-1.1.0.tgz", - "integrity": "sha512-TEM2iMIEQdJ2yjPJoSIsldnleVaAk1oW3DBVUykyOLsEsFmEc9kn+SFFPz+gl54KQNxlDnAwCXosOS9Okx2xAg==", - "dev": true - }, - "buffer-fill": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/buffer-fill/-/buffer-fill-1.0.0.tgz", - "integrity": "sha1-+PeLdniYiO858gXNY39o5wISKyw=", - "dev": true - }, - "buffer-from": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/buffer-from/-/buffer-from-1.1.1.tgz", - "integrity": "sha512-MQcXEUbCKtEo7bhqEs6560Hyd4XaovZlO/k9V3hjVUF/zwW7KBVdSK4gIt/bzwS9MbR5qob+F5jusZsb0YQK2A==", - "dev": true - }, - "buffer-xor": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/buffer-xor/-/buffer-xor-1.0.3.tgz", - "integrity": "sha1-JuYe0UIvtw3ULm42cp7VHYVf6Nk=", - "dev": true - }, - "builtin-modules": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/builtin-modules/-/builtin-modules-1.1.1.tgz", - "integrity": "sha1-Jw8HbFpywC9bZaR9+Uxf46J4iS8=", - "dev": true - }, - "builtin-status-codes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/builtin-status-codes/-/builtin-status-codes-3.0.0.tgz", - "integrity": "sha1-hZgoeOIbmOHGZCXgPQF0eI9Wnug=", - "dev": true - }, - "bytes": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.1.0.tgz", - "integrity": "sha512-zauLjrfCG+xvoyaqLoV8bLVXXNGC4JqlxFCutSDWA6fJrTo2ZuvLYTqZ7aHBLZSMOopbzwv8f+wZcVzfVTI2Dg==", - "dev": true - }, - "cache-base": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/cache-base/-/cache-base-1.0.1.tgz", - "integrity": "sha512-AKcdTnFSWATd5/GCPRxr2ChwIJ85CeyrEyjRHlKxQ56d4XJMGym0uAiKn0xbLOGOl3+yRpOTi484dVCEc5AUzQ==", - "dev": true, - "requires": { - "collection-visit": "^1.0.0", - "component-emitter": "^1.2.1", - "get-value": "^2.0.6", - "has-value": "^1.0.0", - "isobject": "^3.0.1", - "set-value": "^2.0.0", - "to-object-path": "^0.3.0", - "union-value": "^1.0.0", - "unset-value": "^1.0.0" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "cache-loader": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/cache-loader/-/cache-loader-1.2.0.tgz", - "integrity": "sha512-E95knP7jxy2bF/HKuw5gCEXm06tp7/sEjewNF39ezyVBnVmNzB9bnXflEFBvrqZrswsCmgiCbiIc7xIeVXW7Gw==", - "dev": true, - "requires": { - "async": "^2.4.1", - "loader-utils": "^1.1.0", - "mkdirp": "^0.5.1", - "schema-utils": "^0.4.2" - } - }, - "callsite": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/callsite/-/callsite-1.0.0.tgz", - "integrity": "sha1-KAOY5dZkvXQDi28JBRU+borxvCA=", - "dev": true - }, - "camel-case": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camel-case/-/camel-case-3.0.0.tgz", - "integrity": "sha1-yjw2iKTpzzpM2nd9xNy8cTJJz3M=", - "dev": true, - "requires": { - "no-case": "^2.2.0", - "upper-case": "^1.1.1" - } - }, - "camelcase": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-2.1.1.tgz", - "integrity": "sha1-fB0W1nmhu+WcoCys7PsBHiAfWh8=", - "dev": true - }, - "camelcase-keys": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/camelcase-keys/-/camelcase-keys-2.1.0.tgz", - "integrity": "sha1-MIvur/3ygRkFHvodkyITyRuPkuc=", - "dev": true, - "requires": { - "camelcase": "^2.0.0", - "map-obj": "^1.0.0" - } - }, - "caniuse-api": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/caniuse-api/-/caniuse-api-1.6.1.tgz", - "integrity": "sha1-tTTnxzTE+B7F++isoq0kNUuWLGw=", - "dev": true, - "requires": { - "browserslist": "^1.3.6", - "caniuse-db": "^1.0.30000529", - "lodash.memoize": "^4.1.2", - "lodash.uniq": "^4.5.0" - } - }, - "caniuse-db": { - "version": "1.0.30000999", - "resolved": "https://registry.npmjs.org/caniuse-db/-/caniuse-db-1.0.30000999.tgz", - "integrity": "sha512-NzRdDmSmg/kp+eNIE1FT+/aXsyGy0PPoAmSrRAR4kFFOs+P19csnJWx4OeIKo6sxurr4xzlsso3rO7SkK71SGw==", - "dev": true - }, - "caseless": { - "version": "0.12.0", - "resolved": "https://registry.npmjs.org/caseless/-/caseless-0.12.0.tgz", - "integrity": "sha1-G2gcIf+EAzyCZUMJBolCDRhxUdw=", - "dev": true - }, - "center-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/center-align/-/center-align-0.1.3.tgz", - "integrity": "sha1-qg0yYptu6XIgBBHL1EYckHvCt60=", - "dev": true, - "requires": { - "align-text": "^0.1.3", - "lazy-cache": "^1.0.3" - } - }, - "chalk": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-1.1.3.tgz", - "integrity": "sha1-qBFcVeSnAv5NFQq9OHKCKn4J/Jg=", - "dev": true, - "requires": { - "ansi-styles": "^2.2.1", - "escape-string-regexp": "^1.0.2", - "has-ansi": "^2.0.0", - "strip-ansi": "^3.0.0", - "supports-color": "^2.0.0" - } - }, - "chokidar": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-1.7.0.tgz", - "integrity": "sha1-eY5ol3gVHIB2tLNg5e3SjNortGg=", - "dev": true, - "requires": { - "anymatch": "^1.3.0", - "async-each": "^1.0.0", - "fsevents": "^1.0.0", - "glob-parent": "^2.0.0", - "inherits": "^2.0.1", - "is-binary-path": "^1.0.0", - "is-glob": "^2.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.0.0" - } - }, - "cipher-base": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/cipher-base/-/cipher-base-1.0.4.tgz", - "integrity": "sha512-Kkht5ye6ZGmwv40uUDZztayT2ThLQGfnj/T71N/XzeZeo3nf8foyW7zGTsPYkEya3m5f3cAypH+qe7YOrM1U2Q==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "clap": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/clap/-/clap-1.2.3.tgz", - "integrity": "sha512-4CoL/A3hf90V3VIEjeuhSvlGFEHKzOz+Wfc2IVZc+FaUgU0ZQafJTP49fvnULipOPcAfqhyI2duwQyns6xqjYA==", - "dev": true, - "requires": { - "chalk": "^1.1.3" - } - }, - "class-utils": { - "version": "0.3.6", - "resolved": "https://registry.npmjs.org/class-utils/-/class-utils-0.3.6.tgz", - "integrity": "sha512-qOhPa/Fj7s6TY8H8esGu5QNpMMQxz79h+urzrNYN6mn+9BnxlDGf5QZ+XeCDsxSjPqsSR56XOZOJmpeurnLMeg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "define-property": "^0.2.5", - "isobject": "^3.0.0", - "static-extend": "^0.1.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "clean-css": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/clean-css/-/clean-css-4.2.1.tgz", - "integrity": "sha512-4ZxI6dy4lrY6FHzfiy1aEOXgu4LIsW2MhwG0VBKdcoGoH/XLFgaHSdLTGr4O8Be6A8r3MOphEiI8Gc1n0ecf3g==", - "dev": true, - "requires": { - "source-map": "~0.6.0" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" - } - }, - "clone": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/clone/-/clone-1.0.4.tgz", - "integrity": "sha1-2jCcwmPfFZlMaIypAheco8fNfH4=", - "dev": true - }, - "clone-deep": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/clone-deep/-/clone-deep-2.0.2.tgz", - "integrity": "sha512-SZegPTKjCgpQH63E+eN6mVEEPdQBOUzjyJm5Pora4lrwWRFS8I0QAxV/KD6vV/i0WuijHZWQC1fMsPEdxfdVCQ==", - "dev": true, - "requires": { - "for-own": "^1.0.0", - "is-plain-object": "^2.0.4", - "kind-of": "^6.0.0", - "shallow-clone": "^1.0.0" - }, - "dependencies": { - "for-own": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-1.0.0.tgz", - "integrity": "sha1-xjMy9BXO3EsE2/5wz4NklMU8tEs=", - "dev": true, - "requires": { - "for-in": "^1.0.1" - } - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "co": { - "version": "4.6.0", - "resolved": "https://registry.npmjs.org/co/-/co-4.6.0.tgz", - "integrity": "sha1-bqa989hTrlTMuOR7+gvz+QMfsYQ=", - "dev": true - }, - "coa": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/coa/-/coa-1.0.4.tgz", - "integrity": "sha1-qe8VNmDWqGqL3sAomlxoTSF0Mv0=", - "dev": true, - "requires": { - "q": "^1.1.2" - } - }, - "code-point-at": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/code-point-at/-/code-point-at-1.1.0.tgz", - "integrity": "sha1-DQcLTQQ6W+ozovGkDi7bPZpMz3c=", - "dev": true - }, - "collection-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/collection-visit/-/collection-visit-1.0.0.tgz", - "integrity": "sha1-S8A3PBZLwykbTTaMgpzxqApZ3KA=", - "dev": true, - "requires": { - "map-visit": "^1.0.0", - "object-visit": "^1.0.0" - } - }, - "color": { - "version": "0.11.4", - "resolved": "https://registry.npmjs.org/color/-/color-0.11.4.tgz", - "integrity": "sha1-bXtcdPtl6EHNSHkq0e1eB7kE12Q=", - "dev": true, - "requires": { - "clone": "^1.0.2", - "color-convert": "^1.3.0", - "color-string": "^0.3.0" - } - }, - "color-convert": { - "version": "1.9.3", - "resolved": "https://registry.npmjs.org/color-convert/-/color-convert-1.9.3.tgz", - "integrity": "sha512-QfAUtd+vFdAtFQcC8CCyYt1fYWxSqAiK2cSD6zDB8N3cpsEBAvRxp9zOGg6G/SHHJYAT88/az/IuDGALsNVbGg==", - "dev": true, - "requires": { - "color-name": "1.1.3" - } - }, - "color-name": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/color-name/-/color-name-1.1.3.tgz", - "integrity": "sha1-p9BVi9icQveV3UIyj3QIMcpTvCU=", - "dev": true - }, - "color-string": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/color-string/-/color-string-0.3.0.tgz", - "integrity": "sha1-J9RvtnAlxcL6JZk7+/V55HhBuZE=", - "dev": true, - "requires": { - "color-name": "^1.0.0" - } - }, - "colormin": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colormin/-/colormin-1.1.2.tgz", - "integrity": "sha1-6i90IKcrlogaOKrlnsEkpvcpgTM=", - "dev": true, - "requires": { - "color": "^0.11.0", - "css-color-names": "0.0.4", - "has": "^1.0.1" - } - }, - "colors": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.4.0.tgz", - "integrity": "sha512-a+UqTh4kgZg/SlGvfbzDHpgRu7AAQOmmqRHJnxhRZICKFUT91brVhNNt58CMWU9PsBbv3PDCZUHbVxuDiH2mtA==", - "dev": true - }, - "combine-lists": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/combine-lists/-/combine-lists-1.0.1.tgz", - "integrity": "sha1-RYwH4J4NkA/Ci3Cj/sLazR0st/Y=", - "dev": true, - "requires": { - "lodash": "^4.5.0" - } - }, - "combined-stream": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/combined-stream/-/combined-stream-1.0.8.tgz", - "integrity": "sha512-FQN4MRfuJeHf7cBbBMJFXhKSDq+2kAArBlmRBvcvFE5BB1HZKXtSFASDhdlz9zOYwxh8lDdnvmMOe/+5cdoEdg==", - "dev": true, - "requires": { - "delayed-stream": "~1.0.0" - } - }, - "commander": { - "version": "2.20.3", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.20.3.tgz", - "integrity": "sha512-GpVkmM8vF2vQUkj2LvZmD35JxeJOLCwJ9cUkugyk2nuhbv3+mJvpLYYt+0+USMxE+oj+ey/lJEnhZw75x/OMcQ==" - }, - "component-bind": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/component-bind/-/component-bind-1.0.0.tgz", - "integrity": "sha1-AMYIq33Nk4l8AAllGx06jh5zu9E=", - "dev": true - }, - "component-emitter": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.3.0.tgz", - "integrity": "sha512-Rd3se6QB+sO1TwqZjscQrurpEPIfO0/yYnSin6Q/rD3mOutHvUrCAhJub3r90uNb+SESBuE0QYoB90YdfatsRg==", - "dev": true - }, - "component-inherit": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/component-inherit/-/component-inherit-0.0.3.tgz", - "integrity": "sha1-ZF/ErfWLcrZJ1crmUTVhnbJv8UM=", - "dev": true - }, - "compressible": { - "version": "2.0.17", - "resolved": "https://registry.npmjs.org/compressible/-/compressible-2.0.17.tgz", - "integrity": "sha512-BGHeLCK1GV7j1bSmQQAi26X+GgWcTjLr/0tzSvMCl3LH1w1IJ4PFSPoV5316b30cneTziC+B1a+3OjoSUcQYmw==", - "dev": true, - "requires": { - "mime-db": ">= 1.40.0 < 2" - } - }, - "compression": { - "version": "1.7.4", - "resolved": "https://registry.npmjs.org/compression/-/compression-1.7.4.tgz", - "integrity": "sha512-jaSIDzP9pZVS4ZfQ+TzvtiWhdpFhE2RDHz8QJkpX9SIpLq88VueF5jJw6t+6CUQcAoA6t+x89MLrWAqpfDE8iQ==", - "dev": true, - "requires": { - "accepts": "~1.3.5", - "bytes": "3.0.0", - "compressible": "~2.0.16", - "debug": "2.6.9", - "on-headers": "~1.0.2", - "safe-buffer": "5.1.2", - "vary": "~1.1.2" - }, - "dependencies": { - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "dev": true, - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" - } - }, - "bytes": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/bytes/-/bytes-3.0.0.tgz", - "integrity": "sha1-0ygVQE1olpn4Wk6k+odV3ROpYEg=", - "dev": true - }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "dev": true - } - } - }, - "concat-map": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/concat-map/-/concat-map-0.0.1.tgz", - "integrity": "sha1-2Klr13/Wjfd5OnMDajug1UBdR3s=", - "dev": true - }, - "connect": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/connect/-/connect-3.7.0.tgz", - "integrity": "sha512-ZqRXc+tZukToSNmh5C2iWMSoV3X1YUcPbqEM4DkEG5tNQXrQUZCNVGGv3IuicnkMtPfGf3Xtp8WCXs295iQ1pQ==", - "dev": true, - "requires": { - "debug": "2.6.9", - "finalhandler": "1.1.2", - "parseurl": "~1.3.3", - "utils-merge": "1.0.1" - } - }, - "connect-history-api-fallback": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/connect-history-api-fallback/-/connect-history-api-fallback-1.6.0.tgz", - "integrity": "sha512-e54B99q/OUoH64zYYRf3HBP5z24G38h5D3qXu23JGRoigpX5Ss4r9ZnDk3g0Z8uQC2x2lPaJ+UlWBc1ZWBWdLg==", - "dev": true - }, - "console-browserify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-browserify/-/console-browserify-1.1.0.tgz", - "integrity": "sha1-8CQcRXMKn8YyOyBtvzjtx0HQuxA=", - "dev": true, - "requires": { - "date-now": "^0.1.4" - } - }, - "console-control-strings": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/console-control-strings/-/console-control-strings-1.1.0.tgz", - "integrity": "sha1-PXz0Rk22RG6mRL9LOVB/mFEAjo4=", - "dev": true - }, - "constants-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/constants-browserify/-/constants-browserify-1.0.0.tgz", - "integrity": "sha1-wguW2MYXdIqvHBYCF2DNJ/y4y3U=", - "dev": true - }, - "content-disposition": { - "version": "0.5.3", - "resolved": "https://registry.npmjs.org/content-disposition/-/content-disposition-0.5.3.tgz", - "integrity": "sha512-ExO0774ikEObIAEV9kDo50o+79VCUdEB6n6lzKgGwupcVeRlhrj3qGAfwq8G6uBJjkqLrhT0qEYFcWng8z1z0g==", - "dev": true, - "requires": { - "safe-buffer": "5.1.2" - } - }, - "content-type": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/content-type/-/content-type-1.0.4.tgz", - "integrity": "sha512-hIP3EEPs8tB9AT1L+NUqtwOAps4mk2Zob89MWXMHjHWg9milF/j4osnnQLXBCBFBk/tvIG/tUc9mOUJiPBhPXA==", - "dev": true - }, - "cookie": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.3.1.tgz", - "integrity": "sha1-5+Ch+e9DtMi6klxcWpboBtFoc7s=", - "dev": true - }, - "cookie-signature": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/cookie-signature/-/cookie-signature-1.0.6.tgz", - "integrity": "sha1-4wOogrNCzD7oylE6eZmXNNqzriw=", - "dev": true - }, - "copy-descriptor": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/copy-descriptor/-/copy-descriptor-0.1.1.tgz", - "integrity": "sha1-Z29us8OZl8LuGsOpJP1hJHSPV40=", - "dev": true - }, - "core-js": { - "version": "2.6.10", - "resolved": "https://registry.npmjs.org/core-js/-/core-js-2.6.10.tgz", - "integrity": "sha512-I39t74+4t+zau64EN1fE5v2W31Adtc/REhzWN+gWRRXg6WH5qAsZm62DHpQ1+Yhe4047T55jvzz7MUqF/dBBlA==", - "dev": true - }, - "core-util-is": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/core-util-is/-/core-util-is-1.0.2.tgz", - "integrity": "sha1-tf1UIgqivFq1eqtxQMlAdUUDwac=", - "dev": true - }, - "create-ecdh": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/create-ecdh/-/create-ecdh-4.0.3.tgz", - "integrity": "sha512-GbEHQPMOswGpKXM9kCWVrremUcBmjteUaQ01T9rkKCPDXfUHX0IoP9LpHYo2NPFampa4e+/pFDc3jQdxrxQLaw==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "elliptic": "^6.0.0" - } - }, - "create-hash": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/create-hash/-/create-hash-1.2.0.tgz", - "integrity": "sha512-z00bCGNHDG8mHAkP7CtT1qVu+bFQUPjYq/4Iv3C3kWjTFV10zIjfSoeqXo9Asws8gwSHDGj/hl2u4OGIjapeCg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.1", - "inherits": "^2.0.1", - "md5.js": "^1.3.4", - "ripemd160": "^2.0.1", - "sha.js": "^2.4.0" - } - }, - "create-hmac": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/create-hmac/-/create-hmac-1.1.7.tgz", - "integrity": "sha512-MJG9liiZ+ogc4TzUwuvbER1JRdgvUFSB5+VR/g5h82fGaIRWMWddtKBHi7/sVhfjQZ6SehlyhvQYrcYkaUIpLg==", - "dev": true, - "requires": { - "cipher-base": "^1.0.3", - "create-hash": "^1.1.0", - "inherits": "^2.0.1", - "ripemd160": "^2.0.0", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "cross-spawn": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/cross-spawn/-/cross-spawn-3.0.1.tgz", - "integrity": "sha1-ElYDfsufDF9549bvE14wdwGEuYI=", - "dev": true, - "requires": { - "lru-cache": "^4.0.1", - "which": "^1.2.9" - } - }, - "crypto-browserify": { - "version": "3.12.0", - "resolved": "https://registry.npmjs.org/crypto-browserify/-/crypto-browserify-3.12.0.tgz", - "integrity": "sha512-fz4spIh+znjO2VjL+IdhEpRJ3YN6sMzITSBijk6FK2UvTqruSQW+/cCZTSNsMiZNvUeq0CqurF+dAbyiGOY6Wg==", - "dev": true, - "requires": { - "browserify-cipher": "^1.0.0", - "browserify-sign": "^4.0.0", - "create-ecdh": "^4.0.0", - "create-hash": "^1.1.0", - "create-hmac": "^1.1.0", - "diffie-hellman": "^5.0.0", - "inherits": "^2.0.1", - "pbkdf2": "^3.0.3", - "public-encrypt": "^4.0.0", - "randombytes": "^2.0.0", - "randomfill": "^1.0.3" - } - }, - "css-color-names": { - "version": "0.0.4", - "resolved": "https://registry.npmjs.org/css-color-names/-/css-color-names-0.0.4.tgz", - "integrity": "sha1-gIrcLnnPhHOAabZGyyDsJ762KeA=", - "dev": true - }, - "css-loader": { - "version": "0.28.0", - "resolved": "https://registry.npmjs.org/css-loader/-/css-loader-0.28.0.tgz", - "integrity": "sha1-QXz6l4n4zeWaMMy/Pk2nqAaIm60=", - "dev": true, - "requires": { - "babel-code-frame": "^6.11.0", - "css-selector-tokenizer": "^0.7.0", - "cssnano": ">=2.6.1 <4", - "loader-utils": "^1.0.2", - "lodash.camelcase": "^4.3.0", - "object-assign": "^4.0.1", - "postcss": "^5.0.6", - "postcss-modules-extract-imports": "^1.0.0", - "postcss-modules-local-by-default": "^1.0.1", - "postcss-modules-scope": "^1.0.0", - "postcss-modules-values": "^1.1.0", - "source-list-map": "^0.1.7" - } - }, - "css-selector-tokenizer": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/css-selector-tokenizer/-/css-selector-tokenizer-0.7.1.tgz", - "integrity": "sha512-xYL0AMZJ4gFzJQsHUKa5jiWWi2vH77WVNg7JYRyewwj6oPh4yb/y6Y9ZCw9dsj/9UauMhtuxR+ogQd//EdEVNA==", - "dev": true, - "requires": { - "cssesc": "^0.1.0", - "fastparse": "^1.1.1", - "regexpu-core": "^1.0.0" - } - }, - "cssesc": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/cssesc/-/cssesc-0.1.0.tgz", - "integrity": "sha1-yBSQPkViM3GgR3tAEJqq++6t27Q=", - "dev": true - }, - "cssnano": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/cssnano/-/cssnano-3.10.0.tgz", - "integrity": "sha1-Tzj2zqK5sX+gFJDyPx3GjqZcHDg=", - "dev": true, - "requires": { - "autoprefixer": "^6.3.1", - "decamelize": "^1.1.2", - "defined": "^1.0.0", - "has": "^1.0.1", - "object-assign": "^4.0.1", - "postcss": "^5.0.14", - "postcss-calc": "^5.2.0", - "postcss-colormin": "^2.1.8", - "postcss-convert-values": "^2.3.4", - "postcss-discard-comments": "^2.0.4", - "postcss-discard-duplicates": "^2.0.1", - "postcss-discard-empty": "^2.0.1", - "postcss-discard-overridden": "^0.1.1", - "postcss-discard-unused": "^2.2.1", - "postcss-filter-plugins": "^2.0.0", - "postcss-merge-idents": "^2.1.5", - "postcss-merge-longhand": "^2.0.1", - "postcss-merge-rules": "^2.0.3", - "postcss-minify-font-values": "^1.0.2", - "postcss-minify-gradients": "^1.0.1", - "postcss-minify-params": "^1.0.4", - "postcss-minify-selectors": "^2.0.4", - "postcss-normalize-charset": "^1.1.0", - "postcss-normalize-url": "^3.0.7", - "postcss-ordered-values": "^2.1.0", - "postcss-reduce-idents": "^2.2.2", - "postcss-reduce-initial": "^1.0.0", - "postcss-reduce-transforms": "^1.0.3", - "postcss-svgo": "^2.1.1", - "postcss-unique-selectors": "^2.0.2", - "postcss-value-parser": "^3.2.3", - "postcss-zindex": "^2.0.1" - } - }, - "csso": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/csso/-/csso-2.3.2.tgz", - "integrity": "sha1-3dUsWHAz9J6Utx/FVWnyUuj/X4U=", - "dev": true, - "requires": { - "clap": "^1.0.9", - "source-map": "^0.5.3" - } - }, - "currently-unhandled": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/currently-unhandled/-/currently-unhandled-0.4.1.tgz", - "integrity": "sha1-mI3zP+qxke95mmE2nddsF635V+o=", - "dev": true, - "requires": { - "array-find-index": "^1.0.1" - } - }, - "custom-event": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/custom-event/-/custom-event-1.0.1.tgz", - "integrity": "sha1-XQKkaFCt8bSjF5RqOSj8y1v9BCU=", - "dev": true - }, - "d3": { - "version": "3.5.17", - "resolved": "https://registry.npmjs.org/d3/-/d3-3.5.17.tgz", - "integrity": "sha1-vEZ0gAQ3iyGjYMn8fPUjF5B2L7g=" - }, - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - }, - "d3-collection": { - "version": "1.0.7", - "resolved": "https://registry.npmjs.org/d3-collection/-/d3-collection-1.0.7.tgz", - "integrity": "sha512-ii0/r5f4sjKNTfh84Di+DpztYwqKhEyUlKoPrzUFfeSkWxjW49xU2QzO9qrPrNkpdI0XJkfzvmTu8V2Zylln6A==" - }, - "d3-color": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/d3-color/-/d3-color-1.4.0.tgz", - "integrity": "sha512-TzNPeJy2+iEepfiL92LAAB7fvnp/dV2YwANPVHdDWmYMm23qIJBYww3qT8I8C1wXrmrg4UWs7BKc2tKIgyjzHg==" - }, - "d3-contour": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/d3-contour/-/d3-contour-1.3.2.tgz", - "integrity": "sha512-hoPp4K/rJCu0ladiH6zmJUEz6+u3lgR+GSm/QdM2BBvDraU39Vr7YdDCicJcxP1z8i9B/2dJLgDC1NcvlF8WCg==", - "requires": { - "d3-array": "^1.1.1" - }, - "dependencies": { - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - } - } - }, - "d3-dispatch": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/d3-dispatch/-/d3-dispatch-1.0.5.tgz", - "integrity": "sha512-vwKx+lAqB1UuCeklr6Jh1bvC4SZgbSqbkGBLClItFBIYH4vqDJCA7qfoy14lXmJdnBOdxndAMxjCbImJYW7e6g==" - }, - "d3-dsv": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/d3-dsv/-/d3-dsv-1.1.1.tgz", - "integrity": "sha512-1EH1oRGSkeDUlDRbhsFytAXU6cAmXFzc52YUe6MRlPClmWb85MP1J5x+YJRzya4ynZWnbELdSAvATFW/MbxaXw==", - "requires": { - "commander": "2", - "iconv-lite": "0.4", - "rw": "1" - } - }, - "d3-force": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/d3-force/-/d3-force-1.2.1.tgz", - "integrity": "sha512-HHvehyaiUlVo5CxBJ0yF/xny4xoaxFxDnBXNvNcfW9adORGZfyNF1dj6DGLKyk4Yh3brP/1h3rnDzdIAwL08zg==", - "requires": { - "d3-collection": "1", - "d3-dispatch": "1", - "d3-quadtree": "1", - "d3-timer": "1" - } - }, - "d3-format": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/d3-format/-/d3-format-1.4.1.tgz", - "integrity": "sha512-TUswGe6hfguUX1CtKxyG2nymO+1lyThbkS1ifLX0Sr+dOQtAD5gkrffpHnx+yHNKUZ0Bmg5T4AjUQwugPDrm0g==" - }, - "d3-geo": { - "version": "1.11.6", - "resolved": "https://registry.npmjs.org/d3-geo/-/d3-geo-1.11.6.tgz", - "integrity": "sha512-z0J8InXR9e9wcgNtmVnPTj0TU8nhYT6lD/ak9may2PdKqXIeHUr8UbFLoCtrPYNsjv6YaLvSDQVl578k6nm7GA==", - "requires": { - "d3-array": "1" - }, - "dependencies": { - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - } - } - }, - "d3-hierarchy": { - "version": "1.1.8", - "resolved": "https://registry.npmjs.org/d3-hierarchy/-/d3-hierarchy-1.1.8.tgz", - "integrity": "sha512-L+GHMSZNwTpiq4rt9GEsNcpLa4M96lXMR8M/nMG9p5hBE0jy6C+3hWtyZMenPQdwla249iJy7Nx0uKt3n+u9+w==" - }, - "d3-interpolate": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/d3-interpolate/-/d3-interpolate-1.3.2.tgz", - "integrity": "sha512-NlNKGopqaz9qM1PXh9gBF1KSCVh+jSFErrSlD/4hybwoNX/gt1d8CDbDW+3i+5UOHhjC6s6nMvRxcuoMVNgL2w==", - "requires": { - "d3-color": "1" - } - }, - "d3-path": { - "version": "1.0.8", - "resolved": "https://registry.npmjs.org/d3-path/-/d3-path-1.0.8.tgz", - "integrity": "sha512-J6EfUNwcMQ+aM5YPOB8ZbgAZu6wc82f/0WFxrxwV6Ll8wBwLaHLKCqQ5Imub02JriCVVdPjgI+6P3a4EWJCxAg==" - }, - "d3-quadtree": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/d3-quadtree/-/d3-quadtree-1.0.6.tgz", - "integrity": "sha512-NUgeo9G+ENQCQ1LsRr2qJg3MQ4DJvxcDNCiohdJGHt5gRhBW6orIB5m5FJ9kK3HNL8g9F4ERVoBzcEwQBfXWVA==" - }, - "d3-request": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/d3-request/-/d3-request-1.0.6.tgz", - "integrity": "sha512-FJj8ySY6GYuAJHZMaCQ83xEYE4KbkPkmxZ3Hu6zA1xxG2GD+z6P+Lyp+zjdsHf0xEbp2xcluDI50rCS855EQ6w==", - "requires": { - "d3-collection": "1", - "d3-dispatch": "1", - "d3-dsv": "1", - "xmlhttprequest": "1" - } - }, - "d3-scale": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/d3-scale/-/d3-scale-2.2.2.tgz", - "integrity": "sha512-LbeEvGgIb8UMcAa0EATLNX0lelKWGYDQiPdHj+gLblGVhGLyNbaCn3EvrJf0A3Y/uOOU5aD6MTh5ZFCdEwGiCw==", - "requires": { - "d3-array": "^1.2.0", - "d3-collection": "1", - "d3-format": "1", - "d3-interpolate": "1", - "d3-time": "1", - "d3-time-format": "2" - }, - "dependencies": { - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - } - } - }, - "d3-scale-chromatic": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/d3-scale-chromatic/-/d3-scale-chromatic-1.5.0.tgz", - "integrity": "sha512-ACcL46DYImpRFMBcpk9HhtIyC7bTBR4fNOPxwVSl0LfulDAwyiHyPOTqcDG1+t5d4P9W7t/2NAuWu59aKko/cg==", - "requires": { - "d3-color": "1", - "d3-interpolate": "1" - } - }, - "d3-shape": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/d3-shape/-/d3-shape-1.3.5.tgz", - "integrity": "sha512-VKazVR3phgD+MUCldapHD7P9kcrvPcexeX/PkMJmkUov4JM8IxsSg1DvbYoYich9AtdTsa5nNk2++ImPiDiSxg==", - "requires": { - "d3-path": "1" - } - }, - "d3-time": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/d3-time/-/d3-time-1.1.0.tgz", - "integrity": "sha512-Xh0isrZ5rPYYdqhAVk8VLnMEidhz5aP7htAADH6MfzgmmicPkTo8LhkLxci61/lCB7n7UmE3bN0leRt+qvkLxA==" - }, - "d3-time-format": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/d3-time-format/-/d3-time-format-2.1.3.tgz", - "integrity": "sha512-6k0a2rZryzGm5Ihx+aFMuO1GgelgIz+7HhB4PH4OEndD5q2zGn1mDfRdNrulspOfR6JXkb2sThhDK41CSK85QA==", - "requires": { - "d3-time": "1" - } - }, - "d3-timer": { - "version": "1.0.9", - "resolved": "https://registry.npmjs.org/d3-timer/-/d3-timer-1.0.9.tgz", - "integrity": "sha512-rT34J5HnQUHhcLvhSB9GjCkN0Ddd5Y8nCwDBG2u6wQEeYxT/Lf51fTFFkldeib/sE/J0clIe0pnCfs6g/lRbyg==" - }, - "d3-voronoi": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/d3-voronoi/-/d3-voronoi-1.1.4.tgz", - "integrity": "sha512-dArJ32hchFsrQ8uMiTBLq256MpnZjeuBtdHpaDlYuQyjU0CVzCJl/BVW+SkszaAeH95D/8gxqAhgx0ouAWAfRg==" - }, - "dashdash": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/dashdash/-/dashdash-1.14.1.tgz", - "integrity": "sha1-hTz6D3y+L+1d4gMmuN1YEDX24vA=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "date-now": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/date-now/-/date-now-0.1.4.tgz", - "integrity": "sha1-6vQ5/U1ISK105cx9vvIAZyueNFs=", - "dev": true - }, - "debug": { - "version": "2.6.9", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.6.9.tgz", - "integrity": "sha512-bC7ElrdJaJnPbAP+1EotYvqZsb3ecl5wi6Bfi6BJTUcNowp6cvspg0jXznRTKDjm/E7AdgFBVeAPVMNcKGsHMA==", - "dev": true, - "requires": { - "ms": "2.0.0" - } - }, - "decamelize": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/decamelize/-/decamelize-1.2.0.tgz", - "integrity": "sha1-9lNNFRSCabIDUue+4m9QH5oZEpA=", - "dev": true - }, - "decode-uri-component": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/decode-uri-component/-/decode-uri-component-0.2.0.tgz", - "integrity": "sha1-6zkTMzRYd1y4TNGh+uBiEGu4dUU=", - "dev": true - }, - "define-property": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-2.0.2.tgz", - "integrity": "sha512-jwK2UV4cnPpbcG7+VRARKTZPUWowwXA8bzH5NP6ud0oeAxyYPuGZUAC7hMugpCdz4BeSZl2Dl9k66CHJ/46ZYQ==", - "dev": true, - "requires": { - "is-descriptor": "^1.0.2", - "isobject": "^3.0.1" - }, - "dependencies": { - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "defined": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/defined/-/defined-1.0.0.tgz", - "integrity": "sha1-yY2bzvdWdBiOEQlpFRGZ45sfppM=", - "dev": true - }, - "delayed-stream": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delayed-stream/-/delayed-stream-1.0.0.tgz", - "integrity": "sha1-3zrhmayt+31ECqrgsp4icrJOxhk=", - "dev": true - }, - "delegates": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/delegates/-/delegates-1.0.0.tgz", - "integrity": "sha1-hMbhWbgZBP3KWaDvRM2HDTElD5o=", - "dev": true - }, - "depd": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/depd/-/depd-1.1.2.tgz", - "integrity": "sha1-m81S4UwJd2PnSbJ0xDRu0uVgtak=", - "dev": true - }, - "des.js": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/des.js/-/des.js-1.0.0.tgz", - "integrity": "sha1-wHTS4qpqipoH29YfmhXCzYPsjsw=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0" - } - }, - "destroy": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/destroy/-/destroy-1.0.4.tgz", - "integrity": "sha1-l4hXRCxEdJ5CBmE+N5RiBYJqvYA=", - "dev": true - }, - "detect-node": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/detect-node/-/detect-node-2.0.4.tgz", - "integrity": "sha512-ZIzRpLJrOj7jjP2miAtgqIfmzbxa4ZOr5jJc601zklsfEx9oTzmmj2nVpIPRpNlRTIh8lc1kyViIY7BWSGNmKw==", - "dev": true - }, - "di": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/di/-/di-0.0.1.tgz", - "integrity": "sha1-gGZJMmzqp8qjMG112YXqJ0i6kTw=", - "dev": true - }, - "diff": { - "version": "3.5.0", - "resolved": "https://registry.npmjs.org/diff/-/diff-3.5.0.tgz", - "integrity": "sha512-A46qtFgd+g7pDZinpnwiRJtxbC1hpgf0uzP3iG89scHk0AUC7A1TGxf5OiiOUv/JMZR8GOt8hL900hV0bOy5xA==", - "dev": true - }, - "diffie-hellman": { - "version": "5.0.3", - "resolved": "https://registry.npmjs.org/diffie-hellman/-/diffie-hellman-5.0.3.tgz", - "integrity": "sha512-kqag/Nl+f3GwyK25fhUMYj81BUOrZ9IuJsjIcDE5icNM9FJHAVm3VcUDxdLPoQtTuUylWm6ZIknYJwwaPxsUzg==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "miller-rabin": "^4.0.0", - "randombytes": "^2.0.0" - } - }, - "dom-serialize": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/dom-serialize/-/dom-serialize-2.2.1.tgz", - "integrity": "sha1-ViromZ9Evl6jB29UGdzVnrQ6yVs=", - "dev": true, - "requires": { - "custom-event": "~1.0.0", - "ent": "~2.2.0", - "extend": "^3.0.0", - "void-elements": "^2.0.0" - } - }, - "domain-browser": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/domain-browser/-/domain-browser-1.2.0.tgz", - "integrity": "sha512-jnjyiM6eRyZl2H+W8Q/zLMA481hzi0eszAaBUzIVnmYVDBbnLxVNnfu1HgEBvCbL+71FrxMl3E6lpKH7Ge3OXA==", - "dev": true - }, - "ecc-jsbn": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/ecc-jsbn/-/ecc-jsbn-0.1.2.tgz", - "integrity": "sha1-OoOpBOVDUyh4dMVkt1SThoSamMk=", - "dev": true, - "requires": { - "jsbn": "~0.1.0", - "safer-buffer": "^2.1.0" - } - }, - "ee-first": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/ee-first/-/ee-first-1.1.1.tgz", - "integrity": "sha1-WQxhFWsK4vTwJVcyoViyZrxWsh0=", - "dev": true - }, - "electron-to-chromium": { - "version": "1.3.283", - "resolved": "https://registry.npmjs.org/electron-to-chromium/-/electron-to-chromium-1.3.283.tgz", - "integrity": "sha512-CqRYkrJlmcr7gD6Gp1jFy1hkdBZMId1OUlrkQGsaaFJMljQ59UqYlbaG8S7d3yQTbD80uzFWK5b5zHkL9dfVeQ==", - "dev": true - }, - "elliptic": { - "version": "6.5.1", - "resolved": "https://registry.npmjs.org/elliptic/-/elliptic-6.5.1.tgz", - "integrity": "sha512-xvJINNLbTeWQjrl6X+7eQCrIy/YPv5XCpKW6kB5mKvtnGILoLDcySuwomfdzt0BMdLNVnuRNTuzKNHj0bva1Cg==", - "dev": true, - "requires": { - "bn.js": "^4.4.0", - "brorand": "^1.0.1", - "hash.js": "^1.0.0", - "hmac-drbg": "^1.0.0", - "inherits": "^2.0.1", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.0" - } - }, - "emojis-list": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/emojis-list/-/emojis-list-2.1.0.tgz", - "integrity": "sha1-TapNnbAPmBmIDHn6RXrlsJof04k=", - "dev": true - }, - "encodeurl": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/encodeurl/-/encodeurl-1.0.2.tgz", - "integrity": "sha1-rT/0yG7C0CkyL1oCw6mmBslbP1k=", - "dev": true - }, - "engine.io": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/engine.io/-/engine.io-1.8.3.tgz", - "integrity": "sha1-jef5eJXSDTm4X4ju7nd7K9QrE9Q=", - "dev": true, - "requires": { - "accepts": "1.3.3", - "base64id": "1.0.0", - "cookie": "0.3.1", - "debug": "2.3.3", - "engine.io-parser": "1.3.2", - "ws": "1.1.2" - }, - "dependencies": { - "debug": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz", - "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=", - "dev": true, - "requires": { - "ms": "0.7.2" - } - }, - "ms": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz", - "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=", - "dev": true - } - } - }, - "engine.io-client": { - "version": "1.8.3", - "resolved": "https://registry.npmjs.org/engine.io-client/-/engine.io-client-1.8.3.tgz", - "integrity": "sha1-F5jtk0USRkU9TG9jXXogH+lA1as=", - "dev": true, - "requires": { - "component-emitter": "1.2.1", - "component-inherit": "0.0.3", - "debug": "2.3.3", - "engine.io-parser": "1.3.2", - "has-cors": "1.1.0", - "indexof": "0.0.1", - "parsejson": "0.0.3", - "parseqs": "0.0.5", - "parseuri": "0.0.5", - "ws": "1.1.2", - "xmlhttprequest-ssl": "1.5.3", - "yeast": "0.1.2" - }, - "dependencies": { - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", - "dev": true - }, - "debug": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz", - "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=", - "dev": true, - "requires": { - "ms": "0.7.2" - } - }, - "ms": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz", - "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=", - "dev": true - } - } - }, - "engine.io-parser": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/engine.io-parser/-/engine.io-parser-1.3.2.tgz", - "integrity": "sha1-k3sHnwAH0Ik+xW1GyyILjLQ1Igo=", - "dev": true, - "requires": { - "after": "0.8.2", - "arraybuffer.slice": "0.0.6", - "base64-arraybuffer": "0.1.5", - "blob": "0.0.4", - "has-binary": "0.1.7", - "wtf-8": "1.0.0" - } - }, - "enhanced-resolve": { - "version": "3.4.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-3.4.1.tgz", - "integrity": "sha1-BCHjOf1xQZs9oT0Smzl5BAIwR24=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.4.0", - "object-assign": "^4.0.1", - "tapable": "^0.2.7" - } - }, - "ent": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/ent/-/ent-2.2.0.tgz", - "integrity": "sha1-6WQhkyWiHQX0RGai9obtbOX13R0=", - "dev": true - }, - "errno": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/errno/-/errno-0.1.7.tgz", - "integrity": "sha512-MfrRBDWzIWifgq6tJj60gkAwtLNb6sQPlcFrSOflcP1aFmmruKQ2wRnze/8V6kgyz7H3FF8Npzv78mZ7XLLflg==", - "dev": true, - "requires": { - "prr": "~1.0.1" - } - }, - "error-ex": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/error-ex/-/error-ex-1.3.2.tgz", - "integrity": "sha512-7dFHNmqeFSEt2ZBsCriorKnn3Z2pj+fd9kmI6QoWw4//DL+icEBfc0U7qJCisqrTsKTjw4fNFy2pW9OqStD84g==", - "dev": true, - "requires": { - "is-arrayish": "^0.2.1" - } - }, - "es6-templates": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/es6-templates/-/es6-templates-0.2.3.tgz", - "integrity": "sha1-XLmsn7He1usSOTQrgdeSu7QHjuQ=", - "dev": true, - "requires": { - "recast": "~0.11.12", - "through": "~2.3.6" - } - }, - "escape-html": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/escape-html/-/escape-html-1.0.3.tgz", - "integrity": "sha1-Aljq5NPQwJdN4cFpGI7wBR0dGYg=", - "dev": true - }, - "escape-string-regexp": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/escape-string-regexp/-/escape-string-regexp-1.0.5.tgz", - "integrity": "sha1-G2HAViGQqN/2rjuyzwIAyhMLhtQ=", - "dev": true - }, - "esprima": { - "version": "2.7.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-2.7.3.tgz", - "integrity": "sha1-luO3DVd59q1JzQMmc9HDEnZ7pYE=", - "dev": true - }, - "esutils": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/esutils/-/esutils-2.0.3.tgz", - "integrity": "sha512-kVscqXk4OCp68SZ0dkgEKVi6/8ij300KBWTJq32P/dYeWTSwK41WyTxalN1eRmA5Z9UU/LX9D7FWSmV9SAYx6g==", - "dev": true - }, - "etag": { - "version": "1.8.1", - "resolved": "https://registry.npmjs.org/etag/-/etag-1.8.1.tgz", - "integrity": "sha1-Qa4u62XvpiJorr/qg6x9eSmbCIc=", - "dev": true - }, - "eventemitter3": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/eventemitter3/-/eventemitter3-4.0.0.tgz", - "integrity": "sha512-qerSRB0p+UDEssxTtm6EDKcE7W4OaoisfIMl4CngyEhjpYglocpNg6UEqCvemdGhosAsg4sO2dXJOdyBifPGCg==", - "dev": true - }, - "events": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/events/-/events-3.0.0.tgz", - "integrity": "sha512-Dc381HFWJzEOhQ+d8pkNon++bk9h6cdAoAj4iE6Q4y6xgTzySWXlKn05/TVNpjnfRqi/X0EpJEJohPjNI3zpVA==", - "dev": true - }, - "eventsource": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/eventsource/-/eventsource-0.1.6.tgz", - "integrity": "sha1-Cs7ehJ7X3RzMMsgRuxG5RNTykjI=", - "dev": true, - "requires": { - "original": ">=0.0.5" - } - }, - "evp_bytestokey": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/evp_bytestokey/-/evp_bytestokey-1.0.3.tgz", - "integrity": "sha512-/f2Go4TognH/KvCISP7OUsHn85hT9nUkxxA9BEWxFn+Oj9o8ZNLm/40hdlgSLyuOimsrTKLUMEorQexp/aPQeA==", - "dev": true, - "requires": { - "md5.js": "^1.3.4", - "safe-buffer": "^5.1.1" - } - }, - "exit": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/exit/-/exit-0.1.2.tgz", - "integrity": "sha1-BjJjj42HfMghB9MKD/8aF8uhzQw=", - "dev": true - }, - "expand-braces": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/expand-braces/-/expand-braces-0.1.2.tgz", - "integrity": "sha1-SIsdHSRRyz06axks/AMPRMWFX+o=", - "dev": true, - "requires": { - "array-slice": "^0.2.3", - "array-unique": "^0.2.1", - "braces": "^0.1.2" - }, - "dependencies": { - "braces": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/braces/-/braces-0.1.5.tgz", - "integrity": "sha1-wIVxEIUpHYt1/ddOqw+FlygHEeY=", - "dev": true, - "requires": { - "expand-range": "^0.1.0" - } - }, - "expand-range": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-0.1.1.tgz", - "integrity": "sha1-TLjtoJk8pW+k9B/ELzy7TMrf8EQ=", - "dev": true, - "requires": { - "is-number": "^0.1.1", - "repeat-string": "^0.2.2" - } - }, - "is-number": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-0.1.1.tgz", - "integrity": "sha1-aaevEWlj1HIG7JvZtIoUIW8eOAY=", - "dev": true - }, - "repeat-string": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-0.2.2.tgz", - "integrity": "sha1-x6jTI2BoNiBZp+RlH8aITosftK4=", - "dev": true - } - } - }, - "expand-brackets": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-0.1.5.tgz", - "integrity": "sha1-3wcoTjQqgHzXM6xa9yQR5YHRF3s=", - "dev": true, - "requires": { - "is-posix-bracket": "^0.1.0" - } - }, - "expand-range": { - "version": "1.8.2", - "resolved": "https://registry.npmjs.org/expand-range/-/expand-range-1.8.2.tgz", - "integrity": "sha1-opnv/TNf4nIeuujiV+x5ZE/IUzc=", - "dev": true, - "requires": { - "fill-range": "^2.1.0" - } - }, - "express": { - "version": "4.17.1", - "resolved": "https://registry.npmjs.org/express/-/express-4.17.1.tgz", - "integrity": "sha512-mHJ9O79RqluphRrcw2X/GTh3k9tVv8YcoyY4Kkh4WDMUYKRZUq0h1o0w2rrrxBqM7VoeUVqgb27xlEMXTnYt4g==", - "dev": true, - "requires": { - "accepts": "~1.3.7", - "array-flatten": "1.1.1", - "body-parser": "1.19.0", - "content-disposition": "0.5.3", - "content-type": "~1.0.4", - "cookie": "0.4.0", - "cookie-signature": "1.0.6", - "debug": "2.6.9", - "depd": "~1.1.2", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "finalhandler": "~1.1.2", - "fresh": "0.5.2", - "merge-descriptors": "1.0.1", - "methods": "~1.1.2", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "path-to-regexp": "0.1.7", - "proxy-addr": "~2.0.5", - "qs": "6.7.0", - "range-parser": "~1.2.1", - "safe-buffer": "5.1.2", - "send": "0.17.1", - "serve-static": "1.14.1", - "setprototypeof": "1.1.1", - "statuses": "~1.5.0", - "type-is": "~1.6.18", - "utils-merge": "1.0.1", - "vary": "~1.1.2" - }, - "dependencies": { - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "dev": true, - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" - } - }, - "cookie": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/cookie/-/cookie-0.4.0.tgz", - "integrity": "sha512-+Hp8fLp57wnUSt0tY0tHEXh4voZRDnoIrZPqlo3DPiI4y9lwg/jqx+1Om94/W6ZaPDOUbnjOt/99w66zk+l1Xg==", - "dev": true - }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "dev": true - } - } - }, - "extend": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend/-/extend-3.0.2.tgz", - "integrity": "sha512-fjquC59cD7CyW6urNXK0FBufkZcoiGG80wTuPujX590cB5Ttln20E2UB4S/WARVqhXffZl2LNgS+gQdPIIim/g==", - "dev": true - }, - "extend-shallow": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-3.0.2.tgz", - "integrity": "sha1-Jqcarwc7OfshJxcnRhMcJwQCjbg=", - "dev": true, - "requires": { - "assign-symbols": "^1.0.0", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "extglob": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-0.3.2.tgz", - "integrity": "sha1-Lhj/PS9JqydlzskCPwEdqo2DSaE=", - "dev": true, - "requires": { - "is-extglob": "^1.0.0" - } - }, - "extract-loader": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/extract-loader/-/extract-loader-0.1.0.tgz", - "integrity": "sha1-ocFGkVJBzEhtUpImPHVV1aoZdm4=", - "dev": true, - "requires": { - "loader-utils": "^0.2.16" - }, - "dependencies": { - "big.js": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", - "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", - "dev": true - }, - "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", - "dev": true - }, - "loader-utils": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", - "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", - "dev": true, - "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0", - "object-assign": "^4.0.1" - } - } - } - }, - "extract-text-webpack-plugin": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/extract-text-webpack-plugin/-/extract-text-webpack-plugin-2.1.0.tgz", - "integrity": "sha1-aTFbiF+Hbb+W04Gfap8cynrr8Vk=", - "dev": true, - "requires": { - "ajv": "^4.11.2", - "async": "^2.1.2", - "loader-utils": "^1.0.2", - "webpack-sources": "^0.1.0" - }, - "dependencies": { - "ajv": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", - "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", - "dev": true, - "requires": { - "co": "^4.6.0", - "json-stable-stringify": "^1.0.1" - } - } - } - }, - "extsprintf": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/extsprintf/-/extsprintf-1.3.0.tgz", - "integrity": "sha1-lpGEQOMEGnpBT4xS48V06zw+HgU=", - "dev": true - }, - "fast-deep-equal": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/fast-deep-equal/-/fast-deep-equal-2.0.1.tgz", - "integrity": "sha1-ewUhjd+WZ79/Nwv3/bLLFf3Qqkk=", - "dev": true - }, - "fast-json-stable-stringify": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/fast-json-stable-stringify/-/fast-json-stable-stringify-2.0.0.tgz", - "integrity": "sha1-1RQsDK7msRifh9OnYREGT4bIu/I=", - "dev": true - }, - "fastparse": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/fastparse/-/fastparse-1.1.2.tgz", - "integrity": "sha512-483XLLxTVIwWK3QTrMGRqUfUpoOs/0hbQrl2oz4J0pAcm3A3bu84wxTFqGqkJzewCLdME38xJLJAxBABfQT8sQ==", - "dev": true - }, - "faye-websocket": { - "version": "0.10.0", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.10.0.tgz", - "integrity": "sha1-TkkvjQTftviQA1B/btvy1QHnxvQ=", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - }, - "file-loader": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/file-loader/-/file-loader-0.11.1.tgz", - "integrity": "sha1-azKO4SNKcp5OR9Njdd1tNcDh24Q=", - "dev": true, - "requires": { - "loader-utils": "^1.0.2" - } - }, - "filename-regex": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/filename-regex/-/filename-regex-2.0.1.tgz", - "integrity": "sha1-wcS5vuPglyXdsQa3XB4wH+LxiyY=", - "dev": true - }, - "fill-range": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-2.2.4.tgz", - "integrity": "sha512-cnrcCbj01+j2gTG921VZPnHbjmdAf8oQV/iGeV2kZxGSyfYjjTyY79ErsK1WJWMpw6DaApEX72binqJE+/d+5Q==", - "dev": true, - "requires": { - "is-number": "^2.1.0", - "isobject": "^2.0.0", - "randomatic": "^3.0.0", - "repeat-element": "^1.1.2", - "repeat-string": "^1.5.2" - } - }, - "finalhandler": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/finalhandler/-/finalhandler-1.1.2.tgz", - "integrity": "sha512-aAWcW57uxVNrQZqFXjITpW3sIUQmHGG3qSb9mUah9MgMC4NeWhNOlNjXEYq3HjRAvL6arUviZGGJsBg6z0zsWA==", - "dev": true, - "requires": { - "debug": "2.6.9", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "on-finished": "~2.3.0", - "parseurl": "~1.3.3", - "statuses": "~1.5.0", - "unpipe": "~1.0.0" - } - }, - "find-up": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/find-up/-/find-up-1.1.2.tgz", - "integrity": "sha1-ay6YIrGizgpgq2TWEOzK1TyyTQ8=", - "dev": true, - "requires": { - "path-exists": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "flatten": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/flatten/-/flatten-1.0.2.tgz", - "integrity": "sha1-2uRqnXj74lKSJYzB54CkHZXAN4I=", - "dev": true - }, - "follow-redirects": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/follow-redirects/-/follow-redirects-1.9.0.tgz", - "integrity": "sha512-CRcPzsSIbXyVDl0QI01muNDu69S8trU4jArW9LpOt2WtC6LyUJetcIrmfHsRBx7/Jb6GHJUiuqyYxPooFfNt6A==", - "dev": true, - "requires": { - "debug": "^3.0.0" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } - }, - "font-awesome": { - "version": "4.7.0", - "resolved": "https://registry.npmjs.org/font-awesome/-/font-awesome-4.7.0.tgz", - "integrity": "sha1-j6jPBBGhoxr9B7BtKQK7n8gVoTM=" - }, - "for-in": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-1.0.2.tgz", - "integrity": "sha1-gQaNKVqBQuwKxybG4iAMMPttXoA=", - "dev": true - }, - "for-own": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/for-own/-/for-own-0.1.5.tgz", - "integrity": "sha1-UmXGgaTylNq78XyVCbZ2OqhFEM4=", - "dev": true, - "requires": { - "for-in": "^1.0.1" - } - }, - "forever-agent": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/forever-agent/-/forever-agent-0.6.1.tgz", - "integrity": "sha1-+8cfDEGt6zf5bFd60e1C2P2sypE=", - "dev": true - }, - "fork-ts-checker-webpack-plugin": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/fork-ts-checker-webpack-plugin/-/fork-ts-checker-webpack-plugin-0.4.1.tgz", - "integrity": "sha512-UckdUYL51F5t9t/2Uqk0xatxz8Cf75a1THNIrDYajjcAcg2Q64SXNP7BTQPxXm0bU1chzjR3brXIaianbFqI3Q==", - "dev": true, - "requires": { - "babel-code-frame": "^6.22.0", - "chalk": "^1.1.3", - "chokidar": "^1.7.0", - "lodash.endswith": "^4.2.1", - "lodash.isfunction": "^3.0.8", - "lodash.isstring": "^4.0.1", - "lodash.startswith": "^4.2.1", - "minimatch": "^3.0.4", - "resolve": "^1.5.0", - "tapable": "^1.0.0", - "vue-parser": "^1.1.5" - }, - "dependencies": { - "tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", - "dev": true - } - } - }, - "form-data": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/form-data/-/form-data-2.3.3.tgz", - "integrity": "sha512-1lLKB2Mu3aGP1Q/2eCOx0fNbRMe7XdwktwOruhfqqd0rIJWwN4Dh+E3hrPSlDCXnSR7UtZ1N38rVXm+6+MEhJQ==", - "dev": true, - "requires": { - "asynckit": "^0.4.0", - "combined-stream": "^1.0.6", - "mime-types": "^2.1.12" - } - }, - "forwarded": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/forwarded/-/forwarded-0.1.2.tgz", - "integrity": "sha1-mMI9qxF1ZXuMBXPozszZGw/xjIQ=", - "dev": true - }, - "fragment-cache": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/fragment-cache/-/fragment-cache-0.2.1.tgz", - "integrity": "sha1-QpD60n8T6Jvn8zeZxrxaCr//DRk=", - "dev": true, - "requires": { - "map-cache": "^0.2.2" - } - }, - "fresh": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/fresh/-/fresh-0.5.2.tgz", - "integrity": "sha1-PYyt2Q2XZWn6g1qx+OSyOhBWBac=", - "dev": true - }, - "fs-access": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/fs-access/-/fs-access-1.0.1.tgz", - "integrity": "sha1-1qh/JiJxzv6+wwxVNAf7mV2od3o=", - "dev": true, - "requires": { - "null-check": "^1.0.0" - } - }, - "fs-extra": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/fs-extra/-/fs-extra-5.0.0.tgz", - "integrity": "sha512-66Pm4RYbjzdyeuqudYqhFiNBbCIuI9kgRqLPSHIlXHidW8NIQtVdkM1yeZ4lXwuhbTETv3EUGMNHAAw6hiundQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "jsonfile": "^4.0.0", - "universalify": "^0.1.0" - } - }, - "fs.realpath": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/fs.realpath/-/fs.realpath-1.0.0.tgz", - "integrity": "sha1-FQStJSMVjKpA20onh8sBQRmU6k8=", - "dev": true - }, - "fsevents": { - "version": "1.2.9", - "resolved": "https://registry.npmjs.org/fsevents/-/fsevents-1.2.9.tgz", - "integrity": "sha512-oeyj2H3EjjonWcFjD5NvZNE9Rqe4UW+nQBU2HNeKw0koVLEFIhtyETyAakeAM3de7Z/SW5kcA+fZUait9EApnw==", - "dev": true, - "optional": true, - "requires": { - "nan": "^2.12.1", - "node-pre-gyp": "^0.12.0" - }, - "dependencies": { - "abbrev": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "ansi-regex": { - "version": "2.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "aproba": { - "version": "1.2.0", - "bundled": true, - "dev": true, - "optional": true - }, - "are-we-there-yet": { - "version": "1.1.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "delegates": "^1.0.0", - "readable-stream": "^2.0.6" - } - }, - "balanced-match": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "brace-expansion": { - "version": "1.1.11", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "balanced-match": "^1.0.0", - "concat-map": "0.0.1" - } - }, - "chownr": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "code-point-at": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "optional": true - }, - "concat-map": { - "version": "0.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "console-control-strings": { - "version": "1.1.0", - "bundled": true, - "dev": true, - "optional": true - }, - "core-util-is": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "debug": { - "version": "4.1.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ms": "^2.1.1" - } - }, - "deep-extend": { - "version": "0.6.0", - "bundled": true, - "dev": true, - "optional": true - }, - "delegates": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "detect-libc": { - "version": "1.0.3", - "bundled": true, - "dev": true, - "optional": true - }, - "fs-minipass": { - "version": "1.2.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "fs.realpath": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "gauge": { - "version": "2.7.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "glob": { - "version": "7.1.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "has-unicode": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "iconv-lite": { - "version": "0.4.24", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "ignore-walk": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minimatch": "^3.0.4" - } - }, - "inflight": { - "version": "1.0.6", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.3", - "bundled": true, - "dev": true, - "optional": true - }, - "ini": { - "version": "1.3.5", - "bundled": true, - "dev": true, - "optional": true - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "isarray": { - "version": "1.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "minimatch": { - "version": "3.0.4", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "0.0.8", - "bundled": true, - "dev": true, - "optional": true - }, - "minipass": { - "version": "2.3.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safe-buffer": "^5.1.2", - "yallist": "^3.0.0" - } - }, - "minizlib": { - "version": "1.2.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minipass": "^2.2.1" - } - }, - "mkdirp": { - "version": "0.5.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "minimist": "0.0.8" - } - }, - "ms": { - "version": "2.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "needle": { - "version": "2.3.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "debug": "^4.1.0", - "iconv-lite": "^0.4.4", - "sax": "^1.2.4" - } - }, - "node-pre-gyp": { - "version": "0.12.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "detect-libc": "^1.0.2", - "mkdirp": "^0.5.1", - "needle": "^2.2.1", - "nopt": "^4.0.1", - "npm-packlist": "^1.1.6", - "npmlog": "^4.0.2", - "rc": "^1.2.7", - "rimraf": "^2.6.1", - "semver": "^5.3.0", - "tar": "^4" - } - }, - "nopt": { - "version": "4.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "abbrev": "1", - "osenv": "^0.1.4" - } - }, - "npm-bundled": { - "version": "1.0.6", - "bundled": true, - "dev": true, - "optional": true - }, - "npm-packlist": { - "version": "1.4.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ignore-walk": "^3.0.1", - "npm-bundled": "^1.0.1" - } - }, - "npmlog": { - "version": "4.1.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "number-is-nan": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "object-assign": { - "version": "4.1.1", - "bundled": true, - "dev": true, - "optional": true - }, - "once": { - "version": "1.4.0", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "wrappy": "1" - } - }, - "os-homedir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "os-tmpdir": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "osenv": { - "version": "0.1.5", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "process-nextick-args": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "rc": { - "version": "1.2.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "deep-extend": "^0.6.0", - "ini": "~1.3.0", - "minimist": "^1.2.0", - "strip-json-comments": "~2.0.1" - }, - "dependencies": { - "minimist": { - "version": "1.2.0", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "readable-stream": { - "version": "2.3.6", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "rimraf": { - "version": "2.6.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "glob": "^7.1.3" - } - }, - "safe-buffer": { - "version": "5.1.2", - "bundled": true, - "dev": true, - "optional": true - }, - "safer-buffer": { - "version": "2.1.2", - "bundled": true, - "dev": true, - "optional": true - }, - "sax": { - "version": "1.2.4", - "bundled": true, - "dev": true, - "optional": true - }, - "semver": { - "version": "5.7.0", - "bundled": true, - "dev": true, - "optional": true - }, - "set-blocking": { - "version": "2.0.0", - "bundled": true, - "dev": true, - "optional": true - }, - "signal-exit": { - "version": "3.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "string-width": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-json-comments": { - "version": "2.0.1", - "bundled": true, - "dev": true, - "optional": true - }, - "tar": { - "version": "4.4.8", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "chownr": "^1.1.1", - "fs-minipass": "^1.2.5", - "minipass": "^2.3.4", - "minizlib": "^1.1.1", - "mkdirp": "^0.5.0", - "safe-buffer": "^5.1.2", - "yallist": "^3.0.2" - } - }, - "util-deprecate": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "wide-align": { - "version": "1.1.3", - "bundled": true, - "dev": true, - "optional": true, - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "wrappy": { - "version": "1.0.2", - "bundled": true, - "dev": true, - "optional": true - }, - "yallist": { - "version": "3.0.3", - "bundled": true, - "dev": true, - "optional": true - } - } - }, - "fstream": { - "version": "1.0.12", - "resolved": "https://registry.npmjs.org/fstream/-/fstream-1.0.12.tgz", - "integrity": "sha512-WvJ193OHa0GHPEL+AycEJgxvBEwyfRkN1vhjca23OaPVMCaLCXTd5qAu82AjTcgP1UJmytkOKb63Ypde7raDIg==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "inherits": "~2.0.0", - "mkdirp": ">=0.5 0", - "rimraf": "2" - } - }, - "function-bind": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/function-bind/-/function-bind-1.1.1.tgz", - "integrity": "sha512-yIovAzMX49sF8Yl58fSCWJ5svSLuaibPxXQJFLmBObTuCr0Mf1KiPopGM9NiFjiYBCbfaa2Fh6breQ6ANVTI0A==", - "dev": true - }, - "gauge": { - "version": "2.7.4", - "resolved": "https://registry.npmjs.org/gauge/-/gauge-2.7.4.tgz", - "integrity": "sha1-LANAXHU4w51+s3sxcCLjJfsBi/c=", - "dev": true, - "requires": { - "aproba": "^1.0.3", - "console-control-strings": "^1.0.0", - "has-unicode": "^2.0.0", - "object-assign": "^4.1.0", - "signal-exit": "^3.0.0", - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wide-align": "^1.1.0" - } - }, - "gaze": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/gaze/-/gaze-1.1.3.tgz", - "integrity": "sha512-BRdNm8hbWzFzWHERTrejLqwHDfS4GibPoq5wjTPIoJHoBtKGPg3xAFfxmM+9ztbXelxcf2hwQcaz1PtmFeue8g==", - "dev": true, - "requires": { - "globule": "^1.0.0" - } - }, - "get-caller-file": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/get-caller-file/-/get-caller-file-1.0.3.tgz", - "integrity": "sha512-3t6rVToeoZfYSGd8YoLFR2DJkiQrIiUrGcjvFX2mDw3bn6k2OtwHN0TNCLbBO+w8qTvimhDkv+LSscbJY1vE6w==", - "dev": true - }, - "get-stdin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/get-stdin/-/get-stdin-4.0.1.tgz", - "integrity": "sha1-uWjGsKBDhDJJAui/Gl3zJXmkUP4=", - "dev": true - }, - "get-value": { - "version": "2.0.6", - "resolved": "https://registry.npmjs.org/get-value/-/get-value-2.0.6.tgz", - "integrity": "sha1-3BXKHGcjh8p2vTesCjlbogQqLCg=", - "dev": true - }, - "getpass": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/getpass/-/getpass-0.1.7.tgz", - "integrity": "sha1-Xv+OPmhNVprkyysSgmBOi6YhSfo=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0" - } - }, - "glob": { - "version": "7.1.4", - "resolved": "https://registry.npmjs.org/glob/-/glob-7.1.4.tgz", - "integrity": "sha512-hkLPepehmnKk41pUGm3sYxoFs/umurYfYJCerbXEyFIWcAzvpipAgVkBqqT9RBKMGjnq6kMuyYwha6csxbiM1A==", - "dev": true, - "requires": { - "fs.realpath": "^1.0.0", - "inflight": "^1.0.4", - "inherits": "2", - "minimatch": "^3.0.4", - "once": "^1.3.0", - "path-is-absolute": "^1.0.0" - } - }, - "glob-base": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/glob-base/-/glob-base-0.3.0.tgz", - "integrity": "sha1-27Fk9iIbHAscz4Kuoyi0l98Oo8Q=", - "dev": true, - "requires": { - "glob-parent": "^2.0.0", - "is-glob": "^2.0.0" - } - }, - "glob-parent": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-2.0.0.tgz", - "integrity": "sha1-gTg9ctsFT8zPUzbaqQLxgvbtuyg=", - "dev": true, - "requires": { - "is-glob": "^2.0.0" - } - }, - "globule": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/globule/-/globule-1.2.1.tgz", - "integrity": "sha512-g7QtgWF4uYSL5/dn71WxubOrS7JVGCnFPEnoeChJmBnyR9Mw8nGoEwOgJL/RC2Te0WhbsEUCejfH8SZNJ+adYQ==", - "dev": true, - "requires": { - "glob": "~7.1.1", - "lodash": "~4.17.10", - "minimatch": "~3.0.2" - } - }, - "graceful-fs": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/graceful-fs/-/graceful-fs-4.2.2.tgz", - "integrity": "sha512-IItsdsea19BoLC7ELy13q1iJFNmd7ofZH5+X/pJr90/nRoPEX0DJo1dHDbgtYWOhJhcCgMDTOw84RZ72q6lB+Q==", - "dev": true - }, - "handle-thing": { - "version": "1.2.5", - "resolved": "https://registry.npmjs.org/handle-thing/-/handle-thing-1.2.5.tgz", - "integrity": "sha1-/Xqtcmvxpf0W38KbL3pmAdJxOcQ=", - "dev": true - }, - "handlebars": { - "version": "4.4.3", - "resolved": "https://registry.npmjs.org/handlebars/-/handlebars-4.4.3.tgz", - "integrity": "sha512-B0W4A2U1ww3q7VVthTKfh+epHx+q4mCt6iK+zEAzbMBpWQAwxCeKxEGpj/1oQTpzPXDNSOG7hmG14TsISH50yw==", - "dev": true, - "requires": { - "neo-async": "^2.6.0", - "optimist": "^0.6.1", - "source-map": "^0.6.1", - "uglify-js": "^3.1.4" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "har-schema": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/har-schema/-/har-schema-2.0.0.tgz", - "integrity": "sha1-qUwiJOvKwEeCoNkDVSHyRzW37JI=", - "dev": true - }, - "har-validator": { - "version": "5.1.3", - "resolved": "https://registry.npmjs.org/har-validator/-/har-validator-5.1.3.tgz", - "integrity": "sha512-sNvOCzEQNr/qrvJgc3UG/kD4QtlHycrzwS+6mfTrrSq97BvaYcPZZI1ZSqGSPR73Cxn4LKTD4PttRwfU7jWq5g==", - "dev": true, - "requires": { - "ajv": "^6.5.5", - "har-schema": "^2.0.0" - } - }, - "has": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/has/-/has-1.0.3.tgz", - "integrity": "sha512-f2dvO0VU6Oej7RkWJGrehjbzMAjFp5/VKPp5tTpWIV4JHHZK1/BxbFRtf/siA2SWTe09caDmVtYYzWEIbBS4zw==", - "dev": true, - "requires": { - "function-bind": "^1.1.1" - } - }, - "has-ansi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/has-ansi/-/has-ansi-2.0.0.tgz", - "integrity": "sha1-NPUEnOHs3ysGSa8+8k5F7TVBbZE=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "has-binary": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/has-binary/-/has-binary-0.1.7.tgz", - "integrity": "sha1-aOYesWIQyVRaClzOBqhzkS/h5ow=", - "dev": true, - "requires": { - "isarray": "0.0.1" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - } - } - }, - "has-cors": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/has-cors/-/has-cors-1.1.0.tgz", - "integrity": "sha1-XkdHk/fqmEPRu5nCPu9J/xJv/zk=", - "dev": true - }, - "has-flag": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-1.0.0.tgz", - "integrity": "sha1-nZ55MWXOAXoA8AQYxD+UKnsdEfo=", - "dev": true - }, - "has-unicode": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/has-unicode/-/has-unicode-2.0.1.tgz", - "integrity": "sha1-4Ob+aijPUROIVeCG0Wkedx3iqLk=", - "dev": true - }, - "has-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-1.0.0.tgz", - "integrity": "sha1-GLKB2lhbHFxR3vJMkw7SmgvmsXc=", - "dev": true, - "requires": { - "get-value": "^2.0.6", - "has-values": "^1.0.0", - "isobject": "^3.0.0" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "has-values": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-1.0.0.tgz", - "integrity": "sha1-lbC2P+whRmGab+V/51Yo1aOe/k8=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "kind-of": "^4.0.0" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "kind-of": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-4.0.0.tgz", - "integrity": "sha1-IIE989cSkosgc3hpGkUGb65y3Vc=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "hash-base": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/hash-base/-/hash-base-3.0.4.tgz", - "integrity": "sha1-X8hoaEfs1zSZQDMZprCj8/auSRg=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "hash.js": { - "version": "1.1.7", - "resolved": "https://registry.npmjs.org/hash.js/-/hash.js-1.1.7.tgz", - "integrity": "sha512-taOaskGt4z4SOANNseOviYDvjEJinIkRgmp7LbKP2YTTmVxWBl87s/uzK9r+44BclBSp2X7K1hqeNfz9JbBeXA==", - "dev": true, - "requires": { - "inherits": "^2.0.3", - "minimalistic-assert": "^1.0.1" - } - }, - "he": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/he/-/he-1.2.0.tgz", - "integrity": "sha512-F/1DnUGPopORZi0ni+CvrCgHQ5FyEAHRLSApuYWMmrbSwoN2Mn/7k+Gl38gJnR7yyDZk6WLXwiGod1JOWNDKGw==", - "dev": true - }, - "highlight.js": { - "version": "9.15.10", - "resolved": "https://registry.npmjs.org/highlight.js/-/highlight.js-9.15.10.tgz", - "integrity": "sha512-RoV7OkQm0T3os3Dd2VHLNMoaoDVx77Wygln3n9l5YV172XonWG6rgQD3XnF/BuFFZw9A0TJgmMSO8FEWQgvcXw==", - "dev": true - }, - "hmac-drbg": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/hmac-drbg/-/hmac-drbg-1.0.1.tgz", - "integrity": "sha1-0nRXAQJabHdabFRXk+1QL8DGSaE=", - "dev": true, - "requires": { - "hash.js": "^1.0.3", - "minimalistic-assert": "^1.0.0", - "minimalistic-crypto-utils": "^1.0.1" - } - }, - "hosted-git-info": { - "version": "2.8.5", - "resolved": "https://registry.npmjs.org/hosted-git-info/-/hosted-git-info-2.8.5.tgz", - "integrity": "sha512-kssjab8CvdXfcXMXVcvsXum4Hwdq9XGtRD3TteMEvEbq0LXyiNQr6AprqKqfeaDXze7SxWvRxdpwE6ku7ikLkg==", - "dev": true - }, - "hpack.js": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/hpack.js/-/hpack.js-2.1.6.tgz", - "integrity": "sha1-h3dMCUnlE/QuhFdbPEVoH63ioLI=", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "obuf": "^1.0.0", - "readable-stream": "^2.0.1", - "wbuf": "^1.1.0" - } - }, - "html-comment-regex": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/html-comment-regex/-/html-comment-regex-1.1.2.tgz", - "integrity": "sha512-P+M65QY2JQ5Y0G9KKdlDpo0zK+/OHptU5AaBwUfAIDJZk1MYf32Frm84EcOytfJE0t5JvkAnKlmjsXDnWzCJmQ==", - "dev": true - }, - "html-entities": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/html-entities/-/html-entities-1.2.1.tgz", - "integrity": "sha1-DfKTUfByEWNRXfueVUPl9u7VFi8=", - "dev": true - }, - "html-loader": { - "version": "0.4.5", - "resolved": "https://registry.npmjs.org/html-loader/-/html-loader-0.4.5.tgz", - "integrity": "sha1-X7zYfNY6XEmn/OL+VvQl4Fcpxow=", - "dev": true, - "requires": { - "es6-templates": "^0.2.2", - "fastparse": "^1.1.1", - "html-minifier": "^3.0.1", - "loader-utils": "^1.0.2", - "object-assign": "^4.1.0" - } - }, - "html-minifier": { - "version": "3.5.21", - "resolved": "https://registry.npmjs.org/html-minifier/-/html-minifier-3.5.21.tgz", - "integrity": "sha512-LKUKwuJDhxNa3uf/LPR/KVjm/l3rBqtYeCOAekvG8F1vItxMUpueGd94i/asDDr8/1u7InxzFA5EeGjhhG5mMA==", - "dev": true, - "requires": { - "camel-case": "3.0.x", - "clean-css": "4.2.x", - "commander": "2.17.x", - "he": "1.2.x", - "param-case": "2.1.x", - "relateurl": "0.2.x", - "uglify-js": "3.4.x" - }, - "dependencies": { - "commander": { - "version": "2.17.1", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.17.1.tgz", - "integrity": "sha512-wPMUt6FnH2yzG95SA6mzjQOEKUU3aLaDEmzs1ti+1E9h+CsrZghRlqEM/EJ4KscsQVG8uNN4uVreUeT8+drlgg==", - "dev": true - } - } - }, - "http-deceiver": { - "version": "1.2.7", - "resolved": "https://registry.npmjs.org/http-deceiver/-/http-deceiver-1.2.7.tgz", - "integrity": "sha1-+nFolEq5pRnTN8sL7HKE3D5yPYc=", - "dev": true - }, - "http-errors": { - "version": "1.7.2", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.7.2.tgz", - "integrity": "sha512-uUQBt3H/cSIVfch6i1EuPNy/YsRSOUBXTVfZ+yR7Zjez3qjBz6i9+i4zjNaoqcoFVI4lQJ5plg63TvGfRSDCRg==", - "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.1", - "statuses": ">= 1.5.0 < 2", - "toidentifier": "1.0.0" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - } - } - }, - "http-parser-js": { - "version": "0.4.10", - "resolved": "https://registry.npmjs.org/http-parser-js/-/http-parser-js-0.4.10.tgz", - "integrity": "sha1-ksnBN0w1CF912zWexWzCV8u5P6Q=", - "dev": true - }, - "http-proxy": { - "version": "1.18.0", - "resolved": "https://registry.npmjs.org/http-proxy/-/http-proxy-1.18.0.tgz", - "integrity": "sha512-84I2iJM/n1d4Hdgc6y2+qY5mDaz2PUVjlg9znE9byl+q0uC3DeByqBGReQu5tpLK0TAqTIXScRUV+dg7+bUPpQ==", - "dev": true, - "requires": { - "eventemitter3": "^4.0.0", - "follow-redirects": "^1.0.0", - "requires-port": "^1.0.0" - } - }, - "http-proxy-middleware": { - "version": "0.17.4", - "resolved": "https://registry.npmjs.org/http-proxy-middleware/-/http-proxy-middleware-0.17.4.tgz", - "integrity": "sha1-ZC6ISIUdZvCdTxJJEoRtuutBuDM=", - "dev": true, - "requires": { - "http-proxy": "^1.16.2", - "is-glob": "^3.1.0", - "lodash": "^4.17.2", - "micromatch": "^2.3.11" - }, - "dependencies": { - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "http-signature": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/http-signature/-/http-signature-1.2.0.tgz", - "integrity": "sha1-muzZJRFHcvPZW2WmCruPfBj7rOE=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "jsprim": "^1.2.2", - "sshpk": "^1.7.0" - } - }, - "https-browserify": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/https-browserify/-/https-browserify-1.0.0.tgz", - "integrity": "sha1-7AbBDgo0wPL68Zn3/X/Hj//QPHM=", - "dev": true - }, - "iconv-lite": { - "version": "0.4.24", - "resolved": "https://registry.npmjs.org/iconv-lite/-/iconv-lite-0.4.24.tgz", - "integrity": "sha512-v3MXnZAcvnywkTUEZomIActle7RXXeedOR31wwl7VlyoXO4Qi9arvSenNQWne1TcRwhCL1HwLI21bEqdpj8/rA==", - "requires": { - "safer-buffer": ">= 2.1.2 < 3" - } - }, - "icss-replace-symbols": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/icss-replace-symbols/-/icss-replace-symbols-1.1.0.tgz", - "integrity": "sha1-Bupvg2ead0njhs/h/oEq5dsiPe0=", - "dev": true - }, - "ieee754": { - "version": "1.1.13", - "resolved": "https://registry.npmjs.org/ieee754/-/ieee754-1.1.13.tgz", - "integrity": "sha512-4vf7I2LYV/HaWerSo3XmlMkp5eZ83i+/CDluXi/IGTs/O1sejBNhTtnxzmRZfvOUqj7lZjqHkeTvpgSFDlWZTg==", - "dev": true - }, - "ifdef-loader": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ifdef-loader/-/ifdef-loader-2.0.0.tgz", - "integrity": "sha512-Yl6VoCrMnMUEy9lIXYc+hVqgnWmP5hM7lM94nNxt4SjjqKdeCv+IrGOtQhsms2D2+JFdQWQL3KM9JD6fKk7Ehw==", - "dev": true, - "requires": { - "loader-utils": "^1.1.0" - } - }, - "imports-loader": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/imports-loader/-/imports-loader-0.7.1.tgz", - "integrity": "sha1-8gS180cCoywdt9SNidXoZ6BEElM=", - "dev": true, - "requires": { - "loader-utils": "^1.0.2", - "source-map": "^0.5.6" - } - }, - "in-publish": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/in-publish/-/in-publish-2.0.0.tgz", - "integrity": "sha1-4g/146KvwmkDILbcVSaCqcf631E=", - "dev": true - }, - "indent-string": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/indent-string/-/indent-string-2.1.0.tgz", - "integrity": "sha1-ji1INIdCEhtKghi3oTfppSBJ3IA=", - "dev": true, - "requires": { - "repeating": "^2.0.0" - } - }, - "indexes-of": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/indexes-of/-/indexes-of-1.0.1.tgz", - "integrity": "sha1-8w9xbI4r00bHtn0985FVZqfAVgc=", - "dev": true - }, - "indexof": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/indexof/-/indexof-0.0.1.tgz", - "integrity": "sha1-gtwzbSMrkGIXnQWrMpOmYFn9Q10=", - "dev": true - }, - "inflight": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/inflight/-/inflight-1.0.6.tgz", - "integrity": "sha1-Sb1jMdfQLQwJvJEKEHW6gWW1bfk=", - "dev": true, - "requires": { - "once": "^1.3.0", - "wrappy": "1" - } - }, - "inherits": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.4.tgz", - "integrity": "sha512-k/vGaX4/Yla3WzyMCvTQOXYeIHvqOKtnqBduzTHpzpQZzAskKMhZ2K+EnBiSM9zGSoIFeMpXKxa4dYeZIQqewQ==", - "dev": true - }, - "interpret": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/interpret/-/interpret-1.2.0.tgz", - "integrity": "sha512-mT34yGKMNceBQUoVn7iCDKDntA7SC6gycMAWzGx1z/CMCTV7b2AAtXlo3nRyHZ1FelRkQbQjprHSYGwzLtkVbw==", - "dev": true - }, - "invert-kv": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/invert-kv/-/invert-kv-1.0.0.tgz", - "integrity": "sha1-EEqOSqym09jNFXqO+L+rLXo//bY=", - "dev": true - }, - "ipaddr.js": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/ipaddr.js/-/ipaddr.js-1.9.0.tgz", - "integrity": "sha512-M4Sjn6N/+O6/IXSJseKqHoFc+5FdGJ22sXqnjTpdZweHK64MzEPAyQZyEU3R/KRv2GLoa7nNtg/C2Ev6m7z+eA==", - "dev": true - }, - "is-absolute-url": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-absolute-url/-/is-absolute-url-2.1.0.tgz", - "integrity": "sha1-UFMN+4T8yap9vnhS6Do3uTufKqY=", - "dev": true - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-arrayish": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-arrayish/-/is-arrayish-0.2.1.tgz", - "integrity": "sha1-d8mYQFJ6qOyxqLppe4BkWnqSap0=", - "dev": true - }, - "is-binary-path": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-binary-path/-/is-binary-path-1.0.1.tgz", - "integrity": "sha1-dfFmQrSA8YenEcgUFh/TpKdlWJg=", - "dev": true, - "requires": { - "binary-extensions": "^1.0.0" - } - }, - "is-buffer": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/is-buffer/-/is-buffer-1.1.6.tgz", - "integrity": "sha512-NcdALwpXkTm5Zvvbk7owOUSvVvBKDgKP5/ewfXEznmQFfs4ZRmanOeKBTjRVjka3QFoN6XJ+9F3USqfHqTaU5w==", - "dev": true - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "is-dotfile": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/is-dotfile/-/is-dotfile-1.0.3.tgz", - "integrity": "sha1-pqLzL/0t+wT1yiXs0Pa4PPeYoeE=", - "dev": true - }, - "is-equal-shallow": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/is-equal-shallow/-/is-equal-shallow-0.1.3.tgz", - "integrity": "sha1-IjgJj8Ih3gvPpdnqxMRdY4qhxTQ=", - "dev": true, - "requires": { - "is-primitive": "^2.0.0" - } - }, - "is-extendable": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-0.1.1.tgz", - "integrity": "sha1-YrEQ4omkcUGOPsNqYX1HLjAd/Ik=", - "dev": true - }, - "is-extglob": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-1.0.0.tgz", - "integrity": "sha1-rEaBd8SUNAWgkvyPKXYMb/xiBsA=", - "dev": true - }, - "is-finite": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-finite/-/is-finite-1.0.2.tgz", - "integrity": "sha1-zGZ3aVYCvlUO8R6LSqYwU0K20Ko=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "is-fullwidth-code-point": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-fullwidth-code-point/-/is-fullwidth-code-point-1.0.0.tgz", - "integrity": "sha1-754xOG8DGn8NZDr4L95QxFfvAMs=", - "dev": true, - "requires": { - "number-is-nan": "^1.0.0" - } - }, - "is-glob": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-2.0.1.tgz", - "integrity": "sha1-0Jb5JqPe1WAPP9/ZEZjLCIjC2GM=", - "dev": true, - "requires": { - "is-extglob": "^1.0.0" - } - }, - "is-number": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-2.1.0.tgz", - "integrity": "sha1-Afy7s5NGOlSPL0ZszhbezknbkI8=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "is-plain-obj": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/is-plain-obj/-/is-plain-obj-1.1.0.tgz", - "integrity": "sha1-caUMhCnfync8kqOQpKA7OfzVHT4=", - "dev": true - }, - "is-plain-object": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/is-plain-object/-/is-plain-object-2.0.4.tgz", - "integrity": "sha512-h5PpgXkWitc38BBMYawTYMWJHFZJVnBquFE57xFpjB8pJFiF6gZ+bU+WyI/yqXiFR5mdLsgYNaPe8uao6Uv9Og==", - "dev": true, - "requires": { - "isobject": "^3.0.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "is-posix-bracket": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/is-posix-bracket/-/is-posix-bracket-0.1.1.tgz", - "integrity": "sha1-MzTceXdDaOkvAW5vvAqI9c1ua8Q=", - "dev": true - }, - "is-primitive": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/is-primitive/-/is-primitive-2.0.0.tgz", - "integrity": "sha1-IHurkWOEmcB7Kt8kCkGochADRXU=", - "dev": true - }, - "is-svg": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/is-svg/-/is-svg-2.1.0.tgz", - "integrity": "sha1-z2EJDaDZ77yrhyLeum8DIgjbsOk=", - "dev": true, - "requires": { - "html-comment-regex": "^1.1.0" - } - }, - "is-typedarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-typedarray/-/is-typedarray-1.0.0.tgz", - "integrity": "sha1-5HnICFjfDBsR3dppQPlgEfzaSpo=", - "dev": true - }, - "is-utf8": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/is-utf8/-/is-utf8-0.2.1.tgz", - "integrity": "sha1-Sw2hRCEE0bM2NA6AeX6GXPOffXI=", - "dev": true - }, - "is-windows": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-windows/-/is-windows-1.0.2.tgz", - "integrity": "sha512-eXK1UInq2bPmjyX6e3VHIzMLobc4J94i4AWn+Hpq3OU5KkrRC96OAcR3PRJ/pGu6m8TRnBHP9dkXQVsT/COVIA==", - "dev": true - }, - "isarray": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-1.0.0.tgz", - "integrity": "sha1-u5NdSFgsuhaMBoNJV6VKPgcSTxE=", - "dev": true - }, - "isbinaryfile": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/isbinaryfile/-/isbinaryfile-3.0.3.tgz", - "integrity": "sha512-8cJBL5tTd2OS0dM4jz07wQd5g0dCCqIhUxPIGtZfa5L6hWlvV5MHTITy/DBAsF+Oe2LS1X3krBUhNwaGUWpWxw==", - "dev": true, - "requires": { - "buffer-alloc": "^1.2.0" - } - }, - "isexe": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/isexe/-/isexe-2.0.0.tgz", - "integrity": "sha1-6PvzdNxVb/iUehDcsFctYz8s+hA=", - "dev": true - }, - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - }, - "isstream": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/isstream/-/isstream-0.1.2.tgz", - "integrity": "sha1-R+Y/evVa+m+S4VAOaQ64uFKcCZo=", - "dev": true - }, - "jasmine": { - "version": "2.5.3", - "resolved": "https://registry.npmjs.org/jasmine/-/jasmine-2.5.3.tgz", - "integrity": "sha1-VEHyVOH8Imnesd/ZPg5X1WX/TSI=", - "dev": true, - "requires": { - "exit": "^0.1.2", - "glob": "^7.0.6", - "jasmine-core": "~2.5.2" - } - }, - "jasmine-core": { - "version": "2.5.2", - "resolved": "https://registry.npmjs.org/jasmine-core/-/jasmine-core-2.5.2.tgz", - "integrity": "sha1-b2G9eQYeJ/Q+b5NV5Es8bKtv8pc=", - "dev": true - }, - "jquery": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/jquery/-/jquery-3.1.1.tgz", - "integrity": "sha1-NHwcIcfgBBFeCk2jLOzgQfrTyKM=" - }, - "jquery-mousewheel": { - "version": "3.1.13", - "resolved": "https://registry.npmjs.org/jquery-mousewheel/-/jquery-mousewheel-3.1.13.tgz", - "integrity": "sha1-BvAzXxbjU6aV5yBr9QUDy1I6buU=" - }, - "js-base64": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/js-base64/-/js-base64-2.5.1.tgz", - "integrity": "sha512-M7kLczedRMYX4L8Mdh4MzyAMM9O5osx+4FcOQuTvr3A9F2D9S5JXheN0ewNbrvK2UatkTRhL5ejGmGSjNMiZuw==", - "dev": true - }, - "js-tokens": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/js-tokens/-/js-tokens-3.0.2.tgz", - "integrity": "sha1-mGbfOVECEw449/mWvOtlRDIJwls=", - "dev": true - }, - "js-yaml": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/js-yaml/-/js-yaml-3.7.0.tgz", - "integrity": "sha1-XJZ93YN6m/3KXy3oQlOr6KHAO4A=", - "dev": true, - "requires": { - "argparse": "^1.0.7", - "esprima": "^2.6.0" - } - }, - "jsbn": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/jsbn/-/jsbn-0.1.1.tgz", - "integrity": "sha1-peZUwuWi3rXyAdls77yoDA7y9RM=", - "dev": true - }, - "jsesc": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/jsesc/-/jsesc-0.5.0.tgz", - "integrity": "sha1-597mbjXW/Bb3EP6R1c9p9w8IkR0=", - "dev": true - }, - "json-format": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-format/-/json-format-1.0.1.tgz", - "integrity": "sha1-FD9n5irxKda//tKIpGJl6iPQ3ww=", - "dev": true - }, - "json-loader": { - "version": "0.5.4", - "resolved": "https://registry.npmjs.org/json-loader/-/json-loader-0.5.4.tgz", - "integrity": "sha1-i6oTZaYy9Yo8RtIBdfxgAsluN94=", - "dev": true - }, - "json-schema": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/json-schema/-/json-schema-0.2.3.tgz", - "integrity": "sha1-tIDIkuWaLwWVTOcnvT8qTogvnhM=", - "dev": true - }, - "json-schema-traverse": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/json-schema-traverse/-/json-schema-traverse-0.4.1.tgz", - "integrity": "sha512-xbbCH5dCYU5T8LcEhhuh7HJ88HXuW3qsI3Y0zOZFKfZEHcpWiHU/Jxzk629Brsab/mMiHQti9wMP+845RPe3Vg==", - "dev": true - }, - "json-stable-stringify": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json-stable-stringify/-/json-stable-stringify-1.0.1.tgz", - "integrity": "sha1-mnWdOcXy/1A/1TAGRu1EX4jE+a8=", - "dev": true, - "requires": { - "jsonify": "~0.0.0" - } - }, - "json-stringify-safe": { - "version": "5.0.1", - "resolved": "https://registry.npmjs.org/json-stringify-safe/-/json-stringify-safe-5.0.1.tgz", - "integrity": "sha1-Epai1Y/UXxmg9s4B1lcB4sc1tus=", - "dev": true - }, - "json3": { - "version": "3.3.2", - "resolved": "https://registry.npmjs.org/json3/-/json3-3.3.2.tgz", - "integrity": "sha1-PAQ0dD35Pi9cQq7nsZvLSDV19OE=", - "dev": true - }, - "json5": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-1.0.1.tgz", - "integrity": "sha512-aKS4WQjPenRxiQsC93MNfjx+nbF4PAdYzmd/1JIj8HYzqfbu86beTuNgXDzPknWk0n0uARlyewZo4s++ES36Ow==", - "dev": true, - "requires": { - "minimist": "^1.2.0" - } - }, - "jsonfile": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/jsonfile/-/jsonfile-4.0.0.tgz", - "integrity": "sha1-h3Gq4HmbZAdrdmQPygWPnBDjPss=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.6" - } - }, - "jsonify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/jsonify/-/jsonify-0.0.0.tgz", - "integrity": "sha1-LHS27kHZPKUbe1qu6PUDYx0lKnM=", - "dev": true - }, - "jsprim": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/jsprim/-/jsprim-1.4.1.tgz", - "integrity": "sha1-MT5mvB5cwG5Di8G3SZwuXFastqI=", - "dev": true, - "requires": { - "assert-plus": "1.0.0", - "extsprintf": "1.3.0", - "json-schema": "0.2.3", - "verror": "1.10.0" - } - }, - "karma": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/karma/-/karma-1.5.0.tgz", - "integrity": "sha1-nEwU8EAL7ywEyOjmv/WTcQJcwAk=", - "dev": true, - "requires": { - "bluebird": "^3.3.0", - "body-parser": "^1.16.1", - "chokidar": "^1.4.1", - "colors": "^1.1.0", - "combine-lists": "^1.0.0", - "connect": "^3.6.0", - "core-js": "^2.2.0", - "di": "^0.0.1", - "dom-serialize": "^2.2.0", - "expand-braces": "^0.1.1", - "glob": "^7.1.1", - "graceful-fs": "^4.1.2", - "http-proxy": "^1.13.0", - "isbinaryfile": "^3.0.0", - "lodash": "^3.8.0", - "log4js": "^0.6.31", - "mime": "^1.3.4", - "minimatch": "^3.0.0", - "optimist": "^0.6.1", - "qjobs": "^1.1.4", - "range-parser": "^1.2.0", - "rimraf": "^2.6.0", - "safe-buffer": "^5.0.1", - "socket.io": "1.7.3", - "source-map": "^0.5.3", - "tmp": "0.0.31", - "useragent": "^2.1.12" - }, - "dependencies": { - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - } - } - }, - "karma-chrome-launcher": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/karma-chrome-launcher/-/karma-chrome-launcher-2.0.0.tgz", - "integrity": "sha1-wnkMWjKxVXfQ//Wk1aJwOztDnCU=", - "dev": true, - "requires": { - "fs-access": "^1.0.0", - "which": "^1.2.1" - } - }, - "karma-firefox-launcher": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/karma-firefox-launcher/-/karma-firefox-launcher-1.0.1.tgz", - "integrity": "sha1-zlj0fCATqIFW1VpdYTN8CZz1u1E=", - "dev": true - }, - "karma-jasmine": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/karma-jasmine/-/karma-jasmine-1.1.0.tgz", - "integrity": "sha1-IuTAa/mhguUpTR9wXjczgRuBCs8=", - "dev": true - }, - "karma-junit-reporter": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/karma-junit-reporter/-/karma-junit-reporter-2.0.0.tgz", - "integrity": "sha1-+EYp4OHvKN0pd8lvNGwz1b+T4Vk=", - "dev": true, - "requires": { - "path-is-absolute": "^1.0.0", - "xmlbuilder": "3.1.0" - } - }, - "karma-sourcemap-loader": { - "version": "0.3.7", - "resolved": "https://registry.npmjs.org/karma-sourcemap-loader/-/karma-sourcemap-loader-0.3.7.tgz", - "integrity": "sha1-kTIsd/jxPUb+0GKwQuEAnUxFBdg=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2" - } - }, - "karma-webpack": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/karma-webpack/-/karma-webpack-2.0.3.tgz", - "integrity": "sha1-Oc6/XKJYATmyf5rmm3iBa5yC+uY=", - "dev": true, - "requires": { - "async": "~0.9.0", - "loader-utils": "^0.2.5", - "lodash": "^3.8.0", - "source-map": "^0.1.41", - "webpack-dev-middleware": "^1.0.11" - }, - "dependencies": { - "async": { - "version": "0.9.2", - "resolved": "https://registry.npmjs.org/async/-/async-0.9.2.tgz", - "integrity": "sha1-rqdNXmHB+JlhO/ZL2mbUx48v0X0=", - "dev": true - }, - "big.js": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", - "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", - "dev": true - }, - "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", - "dev": true - }, - "loader-utils": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", - "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", - "dev": true, - "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0", - "object-assign": "^4.0.1" - } - }, - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - }, - "source-map": { - "version": "0.1.43", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.1.43.tgz", - "integrity": "sha1-wkvBRspRfBRx9drL4lcbK3+eM0Y=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - }, - "lazy-cache": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/lazy-cache/-/lazy-cache-1.0.4.tgz", - "integrity": "sha1-odePw6UEdMuAhF07O24dpJpEbo4=", - "dev": true - }, - "lcid": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/lcid/-/lcid-1.0.0.tgz", - "integrity": "sha1-MIrMr6C8SDo4Z7S28rlQYlHRuDU=", - "dev": true, - "requires": { - "invert-kv": "^1.0.0" - } - }, - "load-json-file": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/load-json-file/-/load-json-file-1.1.0.tgz", - "integrity": "sha1-lWkFcI1YtLq0wiYbBPWfMcmTdMA=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "parse-json": "^2.2.0", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0", - "strip-bom": "^2.0.0" - } - }, - "loader-runner": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/loader-runner/-/loader-runner-2.4.0.tgz", - "integrity": "sha512-Jsmr89RcXGIwivFY21FcRrisYZfvLMTWx5kOLc+JTxtpBOG6xML0vzbc6SEQG2FO9/4Fc3wW4LVcB5DmGflaRw==", - "dev": true - }, - "loader-utils": { - "version": "1.2.3", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-1.2.3.tgz", - "integrity": "sha512-fkpz8ejdnEMG3s37wGL07iSBDg99O9D5yflE9RGNH3hRdx9SOwYfnGYdZOUIZitN8E+E2vkq3MUMYMvPYl5ZZA==", - "dev": true, - "requires": { - "big.js": "^5.2.2", - "emojis-list": "^2.0.0", - "json5": "^1.0.1" - } - }, - "lodash": { - "version": "4.17.15", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-4.17.15.tgz", - "integrity": "sha512-8xOcRHvCjnocdS5cpwXQXVzmmh5e5+saE2QGoeQmbKmRS6J3VQppPOIt0MnmE+4xlZoumy0GPG0D0MVIQbNA1A==", - "dev": true - }, - "lodash.camelcase": { - "version": "4.3.0", - "resolved": "https://registry.npmjs.org/lodash.camelcase/-/lodash.camelcase-4.3.0.tgz", - "integrity": "sha1-soqmKIorn8ZRA1x3EfZathkDMaY=", - "dev": true - }, - "lodash.endswith": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.endswith/-/lodash.endswith-4.2.1.tgz", - "integrity": "sha1-/tWawXOO0+I27dcGTsRWRIs3vAk=", - "dev": true - }, - "lodash.isfunction": { - "version": "3.0.9", - "resolved": "https://registry.npmjs.org/lodash.isfunction/-/lodash.isfunction-3.0.9.tgz", - "integrity": "sha512-AirXNj15uRIMMPihnkInB4i3NHeb4iBtNg9WRWuK2o31S+ePwwNmDPaTL3o7dTJ+VXNZim7rFs4rxN4YU1oUJw==", - "dev": true - }, - "lodash.isstring": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/lodash.isstring/-/lodash.isstring-4.0.1.tgz", - "integrity": "sha1-1SfftUVuynzJu5XV2ur4i6VKVFE=", - "dev": true - }, - "lodash.memoize": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/lodash.memoize/-/lodash.memoize-4.1.2.tgz", - "integrity": "sha1-vMbEmkKihA7Zl/Mj6tpezRguC/4=", - "dev": true - }, - "lodash.startswith": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/lodash.startswith/-/lodash.startswith-4.2.1.tgz", - "integrity": "sha1-xZjErc4YiiflMUVzHNxsDnF3YAw=", - "dev": true - }, - "lodash.tail": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/lodash.tail/-/lodash.tail-4.1.1.tgz", - "integrity": "sha1-0jM6NtnncXyK0vfKyv7HwytERmQ=", - "dev": true - }, - "lodash.uniq": { - "version": "4.5.0", - "resolved": "https://registry.npmjs.org/lodash.uniq/-/lodash.uniq-4.5.0.tgz", - "integrity": "sha1-0CJTc662Uq3BvILklFM5qEJ1R3M=", - "dev": true - }, - "log4js": { - "version": "0.6.38", - "resolved": "https://registry.npmjs.org/log4js/-/log4js-0.6.38.tgz", - "integrity": "sha1-LElBFmldb7JUgJQ9P8hy5mKlIv0=", - "dev": true, - "requires": { - "readable-stream": "~1.0.2", - "semver": "~4.3.3" - }, - "dependencies": { - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - }, - "readable-stream": { - "version": "1.0.34", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-1.0.34.tgz", - "integrity": "sha1-Elgg40vIQtLyqq+v5MKRbuMsFXw=", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.1", - "isarray": "0.0.1", - "string_decoder": "~0.10.x" - } - }, - "string_decoder": { - "version": "0.10.31", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-0.10.31.tgz", - "integrity": "sha1-YuIDvEF2bGwoyfyEMB2rHFMQ+pQ=", - "dev": true - } - } - }, - "longest": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/longest/-/longest-1.0.1.tgz", - "integrity": "sha1-MKCy2jj3N3DoKUoNIuZiXtd9AJc=", - "dev": true - }, - "loud-rejection": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/loud-rejection/-/loud-rejection-1.6.0.tgz", - "integrity": "sha1-W0b4AUft7leIcPCG0Eghz5mOVR8=", - "dev": true, - "requires": { - "currently-unhandled": "^0.4.1", - "signal-exit": "^3.0.0" - } - }, - "lower-case": { - "version": "1.1.4", - "resolved": "https://registry.npmjs.org/lower-case/-/lower-case-1.1.4.tgz", - "integrity": "sha1-miyr0bno4K6ZOkv31YdcOcQujqw=", - "dev": true - }, - "lru-cache": { - "version": "4.1.5", - "resolved": "https://registry.npmjs.org/lru-cache/-/lru-cache-4.1.5.tgz", - "integrity": "sha512-sWZlbEP2OsHNkXrMl5GYk/jKk70MBng6UU4YI/qGDYbgf6YbP4EvmqISbXCoJiRKs+1bSpFHVgQxvJ17F2li5g==", - "dev": true, - "requires": { - "pseudomap": "^1.0.2", - "yallist": "^2.1.2" - } - }, - "map-cache": { - "version": "0.2.2", - "resolved": "https://registry.npmjs.org/map-cache/-/map-cache-0.2.2.tgz", - "integrity": "sha1-wyq9C9ZSXZsFFkW7TyasXcmKDb8=", - "dev": true - }, - "map-obj": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/map-obj/-/map-obj-1.0.1.tgz", - "integrity": "sha1-2TPOuSBdgr3PSIb2dCvcK03qFG0=", - "dev": true - }, - "map-visit": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/map-visit/-/map-visit-1.0.0.tgz", - "integrity": "sha1-7Nyo8TFE5mDxtb1B8S80edmN+48=", - "dev": true, - "requires": { - "object-visit": "^1.0.0" - } - }, - "marked": { - "version": "0.3.9", - "resolved": "https://registry.npmjs.org/marked/-/marked-0.3.9.tgz", - "integrity": "sha512-nW5u0dxpXxHfkHzzrveY45gCbi+R4PaO4WRZYqZNl+vB0hVGeqlFn0aOg1c8AKL63TrNFn9Bm2UP4AdiZ9TPLw==" - }, - "math-expression-evaluator": { - "version": "1.2.17", - "resolved": "https://registry.npmjs.org/math-expression-evaluator/-/math-expression-evaluator-1.2.17.tgz", - "integrity": "sha1-3oGf282E3M2PrlnGrreWFbnSZqw=", - "dev": true - }, - "math-random": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/math-random/-/math-random-1.0.4.tgz", - "integrity": "sha512-rUxjysqif/BZQH2yhd5Aaq7vXMSx9NdEsQcyA07uEzIvxgI7zIr33gGsh+RU0/XjmQpCW7RsVof1vlkvQVCK5A==", - "dev": true - }, - "md5.js": { - "version": "1.3.5", - "resolved": "https://registry.npmjs.org/md5.js/-/md5.js-1.3.5.tgz", - "integrity": "sha512-xitP+WxNPcTTOgnTJcrhM0xvdPepipPSf3I8EIpGKeFLjt3PlJLIDG3u8EX53ZIubkb+5U2+3rELYpEhHhzdkg==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "media-typer": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/media-typer/-/media-typer-0.3.0.tgz", - "integrity": "sha1-hxDXrwqmJvj/+hzgAWhUUmMlV0g=", - "dev": true - }, - "memory-fs": { - "version": "0.4.1", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.4.1.tgz", - "integrity": "sha1-OpoguEYlI+RHz7x+i7gO1me/xVI=", - "dev": true, - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "meow": { - "version": "3.7.0", - "resolved": "https://registry.npmjs.org/meow/-/meow-3.7.0.tgz", - "integrity": "sha1-cstmi0JSKCkKu/qFaJJYcwioAfs=", - "dev": true, - "requires": { - "camelcase-keys": "^2.0.0", - "decamelize": "^1.1.2", - "loud-rejection": "^1.0.0", - "map-obj": "^1.0.1", - "minimist": "^1.1.3", - "normalize-package-data": "^2.3.4", - "object-assign": "^4.0.1", - "read-pkg-up": "^1.0.1", - "redent": "^1.0.0", - "trim-newlines": "^1.0.0" - } - }, - "merge-descriptors": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/merge-descriptors/-/merge-descriptors-1.0.1.tgz", - "integrity": "sha1-sAqqVW3YtEVoFQ7J0blT8/kMu2E=", - "dev": true - }, - "methods": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/methods/-/methods-1.1.2.tgz", - "integrity": "sha1-VSmk1nZUE07cxSZmVoNbD4Ua/O4=", - "dev": true - }, - "micromatch": { - "version": "2.3.11", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-2.3.11.tgz", - "integrity": "sha1-hmd8l9FyCzY0MdBNDRUpO9OMFWU=", - "dev": true, - "requires": { - "arr-diff": "^2.0.0", - "array-unique": "^0.2.1", - "braces": "^1.8.2", - "expand-brackets": "^0.1.4", - "extglob": "^0.3.1", - "filename-regex": "^2.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.1", - "kind-of": "^3.0.2", - "normalize-path": "^2.0.1", - "object.omit": "^2.0.0", - "parse-glob": "^3.0.4", - "regex-cache": "^0.4.2" - } - }, - "miller-rabin": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/miller-rabin/-/miller-rabin-4.0.1.tgz", - "integrity": "sha512-115fLhvZVqWwHPbClyntxEVfVDfl9DLLTuJvq3g2O/Oxi8AiNouAHvDSzHS0viUJc+V5vm3eq91Xwqn9dp4jRA==", - "dev": true, - "requires": { - "bn.js": "^4.0.0", - "brorand": "^1.0.1" - } - }, - "mime": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.6.0.tgz", - "integrity": "sha512-x0Vn8spI+wuJ1O6S7gnbaQg8Pxh4NNHb7KSINmEWKiPE4RKOplvijn+NkmYmmRgP68mc70j2EbeTFRsrswaQeg==", - "dev": true - }, - "mime-db": { - "version": "1.40.0", - "resolved": "https://registry.npmjs.org/mime-db/-/mime-db-1.40.0.tgz", - "integrity": "sha512-jYdeOMPy9vnxEqFRRo6ZvTZ8d9oPb+k18PKoYNYUe2stVEBPPwsln/qWzdbmaIvnhZ9v2P+CuecK+fpUfsV2mA==", - "dev": true - }, - "mime-types": { - "version": "2.1.24", - "resolved": "https://registry.npmjs.org/mime-types/-/mime-types-2.1.24.tgz", - "integrity": "sha512-WaFHS3MCl5fapm3oLxU4eYDw77IQM2ACcxQ9RIxfaC3ooc6PFuBMGZZsYpvoXS5D5QTWPieo1jjLdAm3TBP3cQ==", - "dev": true, - "requires": { - "mime-db": "1.40.0" - } - }, - "minimalistic-assert": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-assert/-/minimalistic-assert-1.0.1.tgz", - "integrity": "sha512-UtJcAD4yEaGtjPezWuO9wC4nwUnVH/8/Im3yEHQP4b67cXlD/Qr9hdITCU1xDbSEXg2XKNaP8jsReV7vQd00/A==", - "dev": true - }, - "minimalistic-crypto-utils": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/minimalistic-crypto-utils/-/minimalistic-crypto-utils-1.0.1.tgz", - "integrity": "sha1-9sAMHAsIIkblxNmd+4x8CDsrWCo=", - "dev": true - }, - "minimatch": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/minimatch/-/minimatch-3.0.4.tgz", - "integrity": "sha512-yJHVQEhyqPLUTgt9B83PXu6W3rx4MvvHvSUvToogpwoGDOUQ+yDrR0HRot+yOCdCO7u4hX3pWft6kWBBcqh0UA==", - "dev": true, - "requires": { - "brace-expansion": "^1.1.7" - } - }, - "minimist": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-1.2.0.tgz", - "integrity": "sha1-o1AIsg9BOD7sH7kU9M1d95omQoQ=", - "dev": true - }, - "mixin-deep": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/mixin-deep/-/mixin-deep-1.3.2.tgz", - "integrity": "sha512-WRoDn//mXBiJ1H40rqa3vH0toePwSsGb45iInWlTySa+Uu4k3tYUSxa2v1KqAiLtvlrSzaExqS1gtk96A9zvEA==", - "dev": true, - "requires": { - "for-in": "^1.0.2", - "is-extendable": "^1.0.1" - }, - "dependencies": { - "is-extendable": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/is-extendable/-/is-extendable-1.0.1.tgz", - "integrity": "sha512-arnXMxT1hhoKo9k1LZdmlNyJdDDfy2v0fXjFlmok4+i8ul/6WlbVge9bhM74OpNPQPMGUToDtz+KXa1PneJxOA==", - "dev": true, - "requires": { - "is-plain-object": "^2.0.4" - } - } - } - }, - "mixin-object": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/mixin-object/-/mixin-object-2.0.1.tgz", - "integrity": "sha1-T7lJRB2rGCVA8f4DW6YOGUel5X4=", - "dev": true, - "requires": { - "for-in": "^0.1.3", - "is-extendable": "^0.1.1" - }, - "dependencies": { - "for-in": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/for-in/-/for-in-0.1.8.tgz", - "integrity": "sha1-2Hc5COMSVhCZUrH9ubP6hn0ndeE=", - "dev": true - } - } - }, - "mkdirp": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/mkdirp/-/mkdirp-0.5.1.tgz", - "integrity": "sha1-MAV0OOrGz3+MR2fzhkjWaX11yQM=", - "dev": true, - "requires": { - "minimist": "0.0.8" - }, - "dependencies": { - "minimist": { - "version": "0.0.8", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.8.tgz", - "integrity": "sha1-hX/Kv8M5fSYluCKCYuhqp6ARsF0=", - "dev": true - } - } - }, - "ms": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.0.0.tgz", - "integrity": "sha1-VgiurfwAvmwpAd9fmGF4jeDVl8g=", - "dev": true - }, - "nan": { - "version": "2.14.0", - "resolved": "https://registry.npmjs.org/nan/-/nan-2.14.0.tgz", - "integrity": "sha512-INOFj37C7k3AfaNTtX8RhsTw7qRy7eLET14cROi9+5HAVbbHuIWUHEauBv5qT4Av2tWasiTY1Jw6puUNqRJXQg==", - "dev": true - }, - "nanomatch": { - "version": "1.2.13", - "resolved": "https://registry.npmjs.org/nanomatch/-/nanomatch-1.2.13.tgz", - "integrity": "sha512-fpoe2T0RbHwBTBUOftAfBPaDEi06ufaUai0mE6Yn1kacc3SnTErfb/h+X94VXzI64rKFHYImXSvdwGGCmwOqCA==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "fragment-cache": "^0.2.1", - "is-windows": "^1.0.2", - "kind-of": "^6.0.2", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "negotiator": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.1.tgz", - "integrity": "sha1-KzJxhOiZIQEXeyhWP7XnECrNDKk=", - "dev": true - }, - "neo-async": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/neo-async/-/neo-async-2.6.1.tgz", - "integrity": "sha512-iyam8fBuCUpWeKPGpaNMetEocMt364qkCsfL9JuhjXX6dRnguRVOfk2GZaDpPjcOKiiXCPINZC1GczQ7iTq3Zw==", - "dev": true - }, - "no-case": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/no-case/-/no-case-2.3.2.tgz", - "integrity": "sha512-rmTZ9kz+f3rCvK2TD1Ue/oZlns7OGoIWP4fc3llxxRXlOkHKoWPPWJOfFYpITabSow43QJbRIoHQXtt10VldyQ==", - "dev": true, - "requires": { - "lower-case": "^1.1.1" - } - }, - "node-gyp": { - "version": "3.8.0", - "resolved": "https://registry.npmjs.org/node-gyp/-/node-gyp-3.8.0.tgz", - "integrity": "sha512-3g8lYefrRRzvGeSowdJKAKyks8oUpLEd/DyPV4eMhVlhJ0aNaZqIrNUIPuEWWTAoPqyFkfGrM67MC69baqn6vA==", - "dev": true, - "requires": { - "fstream": "^1.0.0", - "glob": "^7.0.3", - "graceful-fs": "^4.1.2", - "mkdirp": "^0.5.0", - "nopt": "2 || 3", - "npmlog": "0 || 1 || 2 || 3 || 4", - "osenv": "0", - "request": "^2.87.0", - "rimraf": "2", - "semver": "~5.3.0", - "tar": "^2.0.0", - "which": "1" - }, - "dependencies": { - "semver": { - "version": "5.3.0", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.3.0.tgz", - "integrity": "sha1-myzl094C0XxgEq0yaqa00M9U+U8=", - "dev": true - } - } - }, - "node-libs-browser": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/node-libs-browser/-/node-libs-browser-2.2.1.tgz", - "integrity": "sha512-h/zcD8H9kaDZ9ALUWwlBUDo6TKF8a7qBSCSEGfjTVIYeqsioSKaAX+BN7NgiMGp6iSIXZ3PxgCu8KS3b71YK5Q==", - "dev": true, - "requires": { - "assert": "^1.1.1", - "browserify-zlib": "^0.2.0", - "buffer": "^4.3.0", - "console-browserify": "^1.1.0", - "constants-browserify": "^1.0.0", - "crypto-browserify": "^3.11.0", - "domain-browser": "^1.1.1", - "events": "^3.0.0", - "https-browserify": "^1.0.0", - "os-browserify": "^0.3.0", - "path-browserify": "0.0.1", - "process": "^0.11.10", - "punycode": "^1.2.4", - "querystring-es3": "^0.2.0", - "readable-stream": "^2.3.3", - "stream-browserify": "^2.0.1", - "stream-http": "^2.7.2", - "string_decoder": "^1.0.0", - "timers-browserify": "^2.0.4", - "tty-browserify": "0.0.0", - "url": "^0.11.0", - "util": "^0.11.0", - "vm-browserify": "^1.0.1" - }, - "dependencies": { - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true - } - } - }, - "node-sass": { - "version": "4.12.0", - "resolved": "https://registry.npmjs.org/node-sass/-/node-sass-4.12.0.tgz", - "integrity": "sha512-A1Iv4oN+Iel6EPv77/HddXErL2a+gZ4uBeZUy+a8O35CFYTXhgA8MgLCWBtwpGZdCvTvQ9d+bQxX/QC36GDPpQ==", - "dev": true, - "requires": { - "async-foreach": "^0.1.3", - "chalk": "^1.1.1", - "cross-spawn": "^3.0.0", - "gaze": "^1.0.0", - "get-stdin": "^4.0.1", - "glob": "^7.0.3", - "in-publish": "^2.0.0", - "lodash": "^4.17.11", - "meow": "^3.7.0", - "mkdirp": "^0.5.1", - "nan": "^2.13.2", - "node-gyp": "^3.8.0", - "npmlog": "^4.0.0", - "request": "^2.88.0", - "sass-graph": "^2.2.4", - "stdout-stream": "^1.4.0", - "true-case-path": "^1.0.2" - } - }, - "nopt": { - "version": "3.0.6", - "resolved": "https://registry.npmjs.org/nopt/-/nopt-3.0.6.tgz", - "integrity": "sha1-xkZdvwirzU2zWTF/eaxopkayj/k=", - "dev": true, - "requires": { - "abbrev": "1" - } - }, - "normalize-package-data": { - "version": "2.5.0", - "resolved": "https://registry.npmjs.org/normalize-package-data/-/normalize-package-data-2.5.0.tgz", - "integrity": "sha512-/5CMN3T0R4XTj4DcGaexo+roZSdSFW/0AOOTROrjxzCG1wrWXEsGbRKevjlIL+ZDE4sZlJr5ED4YW0yqmkK+eA==", - "dev": true, - "requires": { - "hosted-git-info": "^2.1.4", - "resolve": "^1.10.0", - "semver": "2 || 3 || 4 || 5", - "validate-npm-package-license": "^3.0.1" - } - }, - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - }, - "normalize-range": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/normalize-range/-/normalize-range-0.1.2.tgz", - "integrity": "sha1-LRDAa9/TEuqXd2laTShDlFa3WUI=", - "dev": true - }, - "normalize-url": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/normalize-url/-/normalize-url-1.9.1.tgz", - "integrity": "sha1-LMDWazHqIwNkWENuNiDYWVTGbDw=", - "dev": true, - "requires": { - "object-assign": "^4.0.1", - "prepend-http": "^1.0.0", - "query-string": "^4.1.0", - "sort-keys": "^1.0.0" - } - }, - "npm-force-resolutions": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/npm-force-resolutions/-/npm-force-resolutions-0.0.2.tgz", - "integrity": "sha512-2F1FxxDvoatn+OwBxrUGahnEECOpr5RDuF/jqfyy5dI87KmHI3zmb+cCcKDnhR7wnhaTH54/KyPlLTtUTL0Qpw==", - "dev": true, - "requires": { - "json-format": "^1.0.1", - "source-map-support": "^0.5.5" - }, - "dependencies": { - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "source-map-support": { - "version": "0.5.13", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.5.13.tgz", - "integrity": "sha512-SHSKFHadjVA5oR4PPqhtAVdcBWwRYVd6g6cAXnIbRiIwc2EhPrTuKUBdSLvlEKyIP3GCf89fltvcZiP9MMFA1w==", - "dev": true, - "requires": { - "buffer-from": "^1.0.0", - "source-map": "^0.6.0" - } - } - } - }, - "npmlog": { - "version": "4.1.2", - "resolved": "https://registry.npmjs.org/npmlog/-/npmlog-4.1.2.tgz", - "integrity": "sha512-2uUqazuKlTaSI/dC8AzicUck7+IrEaOnN/e0jd3Xtt1KcGpwx30v50mL7oPyr/h9bL3E4aZccVwpwP+5W9Vjkg==", - "dev": true, - "requires": { - "are-we-there-yet": "~1.1.2", - "console-control-strings": "~1.1.0", - "gauge": "~2.7.3", - "set-blocking": "~2.0.0" - } - }, - "null-check": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/null-check/-/null-check-1.0.0.tgz", - "integrity": "sha1-l33/1xdgErnsMNKjnbXPcqBDnt0=", - "dev": true - }, - "null-loader": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/null-loader/-/null-loader-0.1.1.tgz", - "integrity": "sha1-F76av80/8OFRL2/Er8sfUDk3j64=", - "dev": true - }, - "num2fraction": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/num2fraction/-/num2fraction-1.2.2.tgz", - "integrity": "sha1-b2gragJ6Tp3fpFZM0lidHU5mnt4=", - "dev": true - }, - "number-is-nan": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/number-is-nan/-/number-is-nan-1.0.1.tgz", - "integrity": "sha1-CXtgK1NCKlIsGvuHkDGDNpQaAR0=", - "dev": true - }, - "oauth-sign": { - "version": "0.9.0", - "resolved": "https://registry.npmjs.org/oauth-sign/-/oauth-sign-0.9.0.tgz", - "integrity": "sha512-fexhUFFPTGV8ybAtSIGbV6gOkSv8UtRbDBnAyLQw4QPKkgNlsH2ByPGtMUqdWkos6YCRmAqViwgZrJc/mRDzZQ==", - "dev": true - }, - "object-assign": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.1.tgz", - "integrity": "sha1-IQmtx5ZYh8/AXLvUQsrIv7s2CGM=", - "dev": true - }, - "object-component": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/object-component/-/object-component-0.0.3.tgz", - "integrity": "sha1-8MaapQ78lbhmwYb0AKM3acsvEpE=", - "dev": true - }, - "object-copy": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/object-copy/-/object-copy-0.1.0.tgz", - "integrity": "sha1-fn2Fi3gb18mRpBupde04EnVOmYw=", - "dev": true, - "requires": { - "copy-descriptor": "^0.1.0", - "define-property": "^0.2.5", - "kind-of": "^3.0.3" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "object-visit": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/object-visit/-/object-visit-1.0.1.tgz", - "integrity": "sha1-95xEk68MU3e1n+OdOV5BBC3QRbs=", - "dev": true, - "requires": { - "isobject": "^3.0.0" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "object.omit": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/object.omit/-/object.omit-2.0.1.tgz", - "integrity": "sha1-Gpx0SCnznbuFjHbKNXmuKlTr0fo=", - "dev": true, - "requires": { - "for-own": "^0.1.4", - "is-extendable": "^0.1.1" - } - }, - "object.pick": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/object.pick/-/object.pick-1.3.0.tgz", - "integrity": "sha1-h6EKxMFpS9Lhy/U1kaZhQftd10c=", - "dev": true, - "requires": { - "isobject": "^3.0.1" - }, - "dependencies": { - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "obuf": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/obuf/-/obuf-1.1.2.tgz", - "integrity": "sha512-PX1wu0AmAdPqOL1mWhqmlOd8kOIZQwGZw6rh7uby9fTc5lhaOWFLX3I6R1hrF9k3zUY40e6igsLGkDXK92LJNg==", - "dev": true - }, - "on-finished": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/on-finished/-/on-finished-2.3.0.tgz", - "integrity": "sha1-IPEzZIGwg811M3mSoWlxqi2QaUc=", - "dev": true, - "requires": { - "ee-first": "1.1.1" - } - }, - "on-headers": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/on-headers/-/on-headers-1.0.2.tgz", - "integrity": "sha512-pZAE+FJLoyITytdqK0U5s+FIpjN0JP3OzFi/u8Rx+EV5/W+JTWGXG8xFzevE7AjBfDqHv/8vL8qQsIhHnqRkrA==", - "dev": true - }, - "once": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/once/-/once-1.4.0.tgz", - "integrity": "sha1-WDsap3WWHUsROsF9nFC6753Xa9E=", - "dev": true, - "requires": { - "wrappy": "1" - } - }, - "opn": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/opn/-/opn-4.0.2.tgz", - "integrity": "sha1-erwi5kTf9jsKltWrfyeQwPAavJU=", - "dev": true, - "requires": { - "object-assign": "^4.0.1", - "pinkie-promise": "^2.0.0" - } - }, - "optimist": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/optimist/-/optimist-0.6.1.tgz", - "integrity": "sha1-2j6nRob6IaGaERwybpDrFaAZZoY=", - "dev": true, - "requires": { - "minimist": "~0.0.1", - "wordwrap": "~0.0.2" - }, - "dependencies": { - "minimist": { - "version": "0.0.10", - "resolved": "https://registry.npmjs.org/minimist/-/minimist-0.0.10.tgz", - "integrity": "sha1-3j+YVD2/lggr5IrRoMfNqDYwHc8=", - "dev": true - } - } - }, - "options": { - "version": "0.0.6", - "resolved": "https://registry.npmjs.org/options/-/options-0.0.6.tgz", - "integrity": "sha1-7CLTEoBrtT5zF3Pnza788cZDEo8=", - "dev": true - }, - "original": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/original/-/original-1.0.2.tgz", - "integrity": "sha512-hyBVl6iqqUOJ8FqRe+l/gS8H+kKYjrEndd5Pm1MfBtsEKA038HkkdbAl/72EAXGyonD/PFsvmVG+EvcIpliMBg==", - "dev": true, - "requires": { - "url-parse": "^1.4.3" - } - }, - "os-browserify": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/os-browserify/-/os-browserify-0.3.0.tgz", - "integrity": "sha1-hUNzx/XCMVkU/Jv8a9gjj92h7Cc=", - "dev": true - }, - "os-homedir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-homedir/-/os-homedir-1.0.2.tgz", - "integrity": "sha1-/7xJiDNuDoM94MFox+8VISGqf7M=", - "dev": true - }, - "os-locale": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/os-locale/-/os-locale-1.4.0.tgz", - "integrity": "sha1-IPnxeuKe00XoveWDsT0gCYA8FNk=", - "dev": true, - "requires": { - "lcid": "^1.0.0" - } - }, - "os-tmpdir": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/os-tmpdir/-/os-tmpdir-1.0.2.tgz", - "integrity": "sha1-u+Z0BseaqFxc/sdm/lc0VV36EnQ=", - "dev": true - }, - "osenv": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/osenv/-/osenv-0.1.5.tgz", - "integrity": "sha512-0CWcCECdMVc2Rw3U5w9ZjqX6ga6ubk1xDVKxtBQPK7wis/0F2r9T6k4ydGYhecl7YUBxBVxhL5oisPsNxAPe2g==", - "dev": true, - "requires": { - "os-homedir": "^1.0.0", - "os-tmpdir": "^1.0.0" - } - }, - "pako": { - "version": "1.0.10", - "resolved": "https://registry.npmjs.org/pako/-/pako-1.0.10.tgz", - "integrity": "sha512-0DTvPVU3ed8+HNXOu5Bs+o//Mbdj9VNQMUOe9oKCwh8l0GNwpTDMKCWbRjgtD291AWnkAgkqA/LOnQS8AmS1tw==", - "dev": true - }, - "param-case": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/param-case/-/param-case-2.1.1.tgz", - "integrity": "sha1-35T9jPZTHs915r75oIWPvHK+Ikc=", - "dev": true, - "requires": { - "no-case": "^2.2.0" - } - }, - "parse-asn1": { - "version": "5.1.5", - "resolved": "https://registry.npmjs.org/parse-asn1/-/parse-asn1-5.1.5.tgz", - "integrity": "sha512-jkMYn1dcJqF6d5CpU689bq7w/b5ALS9ROVSpQDPrZsqqesUJii9qutvoT5ltGedNXMO2e16YUWIghG9KxaViTQ==", - "dev": true, - "requires": { - "asn1.js": "^4.0.0", - "browserify-aes": "^1.0.0", - "create-hash": "^1.1.0", - "evp_bytestokey": "^1.0.0", - "pbkdf2": "^3.0.3", - "safe-buffer": "^5.1.1" - } - }, - "parse-glob": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/parse-glob/-/parse-glob-3.0.4.tgz", - "integrity": "sha1-ssN2z7EfNVE7rdFz7wu246OIORw=", - "dev": true, - "requires": { - "glob-base": "^0.3.0", - "is-dotfile": "^1.0.0", - "is-extglob": "^1.0.0", - "is-glob": "^2.0.0" - } - }, - "parse-json": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/parse-json/-/parse-json-2.2.0.tgz", - "integrity": "sha1-9ID0BDTvgHQfhGkJn43qGPVaTck=", - "dev": true, - "requires": { - "error-ex": "^1.2.0" - } - }, - "parse5": { - "version": "3.0.3", - "resolved": "https://registry.npmjs.org/parse5/-/parse5-3.0.3.tgz", - "integrity": "sha512-rgO9Zg5LLLkfJF9E6CCmXlSE4UVceloys8JrFqCcHloC3usd/kJCyPDwH2SOlzix2j3xaP9sUX3e8+kvkuleAA==", - "dev": true, - "requires": { - "@types/node": "*" - } - }, - "parsejson": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/parsejson/-/parsejson-0.0.3.tgz", - "integrity": "sha1-q343WfIJ7OmUN5c/fQ8fZK4OZKs=", - "dev": true, - "requires": { - "better-assert": "~1.0.0" - } - }, - "parseqs": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/parseqs/-/parseqs-0.0.5.tgz", - "integrity": "sha1-1SCKNzjkZ2bikbouoXNoSSGouJ0=", - "dev": true, - "requires": { - "better-assert": "~1.0.0" - } - }, - "parseuri": { - "version": "0.0.5", - "resolved": "https://registry.npmjs.org/parseuri/-/parseuri-0.0.5.tgz", - "integrity": "sha1-gCBKUNTbt3m/3G6+J3jZDkvOMgo=", - "dev": true, - "requires": { - "better-assert": "~1.0.0" - } - }, - "parseurl": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/parseurl/-/parseurl-1.3.3.tgz", - "integrity": "sha512-CiyeOxFT/JZyN5m0z9PfXw4SCBJ6Sygz1Dpl0wqjlhDEGGBP1GnsUVEL0p63hoG1fcj3fHynXi9NYO4nWOL+qQ==", - "dev": true - }, - "pascalcase": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/pascalcase/-/pascalcase-0.1.1.tgz", - "integrity": "sha1-s2PlXoAGym/iF4TS2yK9FdeRfxQ=", - "dev": true - }, - "path-browserify": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/path-browserify/-/path-browserify-0.0.1.tgz", - "integrity": "sha512-BapA40NHICOS+USX9SN4tyhq+A2RrN/Ws5F0Z5aMHDp98Fl86lX8Oti8B7uN93L4Ifv4fHOEA+pQw87gmMO/lQ==", - "dev": true - }, - "path-dirname": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/path-dirname/-/path-dirname-1.0.2.tgz", - "integrity": "sha1-zDPSTVJeCZpTiMAzbG4yuRYGCeA=", - "dev": true - }, - "path-exists": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/path-exists/-/path-exists-2.1.0.tgz", - "integrity": "sha1-D+tsZPD8UY2adU3V77YscCJ2H0s=", - "dev": true, - "requires": { - "pinkie-promise": "^2.0.0" - } - }, - "path-is-absolute": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/path-is-absolute/-/path-is-absolute-1.0.1.tgz", - "integrity": "sha1-F0uSaHNVNP+8es5r9TpanhtcX18=", - "dev": true - }, - "path-parse": { - "version": "1.0.6", - "resolved": "https://registry.npmjs.org/path-parse/-/path-parse-1.0.6.tgz", - "integrity": "sha512-GSmOT2EbHrINBf9SR7CDELwlJ8AENk3Qn7OikK4nFYAu3Ote2+JYNVvkpAEQm3/TLNEJFD/xZJjzyxg3KBWOzw==", - "dev": true - }, - "path-to-regexp": { - "version": "0.1.7", - "resolved": "https://registry.npmjs.org/path-to-regexp/-/path-to-regexp-0.1.7.tgz", - "integrity": "sha1-32BBeABfUi8V60SQ5yR6G/qmf4w=", - "dev": true - }, - "path-type": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/path-type/-/path-type-1.1.0.tgz", - "integrity": "sha1-WcRPfuSR2nBNpBXaWkBwuk+P5EE=", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "pify": "^2.0.0", - "pinkie-promise": "^2.0.0" - } - }, - "pbkdf2": { - "version": "3.0.17", - "resolved": "https://registry.npmjs.org/pbkdf2/-/pbkdf2-3.0.17.tgz", - "integrity": "sha512-U/il5MsrZp7mGg3mSQfn742na2T+1/vHDCG5/iTI3X9MKUuYUZVLQhyRsg06mCgDBTd57TxzgZt7P+fYfjRLtA==", - "dev": true, - "requires": { - "create-hash": "^1.1.2", - "create-hmac": "^1.1.4", - "ripemd160": "^2.0.1", - "safe-buffer": "^5.0.1", - "sha.js": "^2.4.8" - } - }, - "performance-now": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/performance-now/-/performance-now-2.1.0.tgz", - "integrity": "sha1-Ywn04OX6kT7BxpMHrjZLSzd8nns=", - "dev": true - }, - "phovea_clue": { - "version": "github:phovea/phovea_clue#thinkh/provenance_retrieval", - "from": "github:phovea/phovea_clue#thinkh/provenance_retrieval", - "requires": { - "@types/d3": "3.5.36", - "@types/jquery": "2.0.33", - "@types/marked": "0.3.0", - "@types/select2": "4.0.41", - "d3": "3.5.17", - "jquery": "3.1.1", - "marked": "0.3.9", - "phovea_core": "phovea_core@github:phovea/phovea_core#thinkh/provenance_retrieval", - "phovea_security_flask": "^2.3.0", - "phovea_ui": "^2.1.3", - "select2": "4.0.4", - "select2-bootstrap-theme": "0.1.0-beta.9" - }, - "dependencies": { - "phovea_core": { - "version": "github:phovea/phovea_core#thinkh/provenance_retrieval", - "from": "phovea_core@github:phovea/phovea_core#thinkh/provenance_retrieval", - "requires": { - "@types/handlebars": "4.0.33", - "@types/whatwg-fetch": "0.0.33", - "@types/whatwg-streams": "0.0.4", - "tslib": "1.9.0" - } - } - } - }, - "phovea_core": { - "version": "github:phovea/phovea_core#thinkh/provenance_retrieval", - "from": "github:phovea/phovea_core#thinkh/provenance_retrieval", - "requires": { - "@types/handlebars": "4.0.33", - "@types/whatwg-fetch": "0.0.33", - "@types/whatwg-streams": "0.0.4", - "tslib": "1.9.0" - } - }, - "phovea_security_flask": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/phovea_security_flask/-/phovea_security_flask-2.3.0.tgz", - "integrity": "sha512-0hXQuSbWqc1sULu8q1LY5zSs6E413Zu+wz667ZvxHx6Ry+AKpeMasN7uHjeKhx5zQegmpcNX1gwv3wjwiTkg9g==", - "requires": { - "phovea_core": "^2.1.2" - }, - "dependencies": { - "phovea_core": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/phovea_core/-/phovea_core-2.2.0.tgz", - "integrity": "sha512-ScD8jXLQSgUMkhImU3tJNpV6Ec8DfZphn2TPRoMA/v1QEN+HD56S32ElL/KtOhqYeTHkC+tHe9jWuZHp4USyag==", - "requires": { - "@types/handlebars": "4.0.33", - "@types/whatwg-fetch": "0.0.33", - "@types/whatwg-streams": "0.0.4", - "tslib": "1.9.0" - } - } - } - }, - "phovea_ui": { - "version": "2.1.3", - "resolved": "https://registry.npmjs.org/phovea_ui/-/phovea_ui-2.1.3.tgz", - "integrity": "sha512-cPllygDErTDazOsUOB+LhfWVOvjcifxaD3rmDEG42ivccMMGjTTr/J0T2Q22P4eNmIo1cyN1JnT2Cye3rw/BmQ==", - "requires": { - "@types/bootstrap": "3.3.32", - "@types/jquery": "2.0.33", - "bootstrap-sass": "3.3.7", - "font-awesome": "4.7.0", - "jquery": "3.1.1", - "phovea_core": "^2.2.0" - }, - "dependencies": { - "phovea_core": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/phovea_core/-/phovea_core-2.2.0.tgz", - "integrity": "sha512-ScD8jXLQSgUMkhImU3tJNpV6Ec8DfZphn2TPRoMA/v1QEN+HD56S32ElL/KtOhqYeTHkC+tHe9jWuZHp4USyag==", - "requires": { - "@types/handlebars": "4.0.33", - "@types/whatwg-fetch": "0.0.33", - "@types/whatwg-streams": "0.0.4", - "tslib": "1.9.0" - } - } - } - }, - "pify": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-2.3.0.tgz", - "integrity": "sha1-7RQaasBDqEnqWISY59yosVMw6Qw=", - "dev": true - }, - "pinkie": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/pinkie/-/pinkie-2.0.4.tgz", - "integrity": "sha1-clVrgM+g1IqXToDnckjoDtT3+HA=", - "dev": true - }, - "pinkie-promise": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/pinkie-promise/-/pinkie-promise-2.0.1.tgz", - "integrity": "sha1-ITXW36ejWMBprJsXh3YogihFD/o=", - "dev": true, - "requires": { - "pinkie": "^2.0.0" - } - }, - "portfinder": { - "version": "1.0.25", - "resolved": "https://registry.npmjs.org/portfinder/-/portfinder-1.0.25.tgz", - "integrity": "sha512-6ElJnHBbxVA1XSLgBp7G1FiCkQdlqGzuF7DswL5tcea+E8UpuvPU7beVAjjRwCioTS9ZluNbu+ZyRvgTsmqEBg==", - "dev": true, - "requires": { - "async": "^2.6.2", - "debug": "^3.1.1", - "mkdirp": "^0.5.1" - }, - "dependencies": { - "debug": { - "version": "3.2.6", - "resolved": "https://registry.npmjs.org/debug/-/debug-3.2.6.tgz", - "integrity": "sha512-mel+jf7nrtEl5Pn1Qx46zARXKDpBbvzezse7p7LqINmdoIk8PYP5SySaxEmYv6TZ0JyEKA1hsCId6DIhgITtWQ==", - "dev": true, - "requires": { - "ms": "^2.1.1" - } - }, - "ms": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.2.tgz", - "integrity": "sha512-sGkPx+VjMtmA6MX27oA4FBFELFCZZ4S4XqeGOXCv68tT+jb3vk/RyaKWP0PTKyWtmLSM0b+adUTEvbs1PEaH2w==", - "dev": true - } - } - }, - "posix-character-classes": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/posix-character-classes/-/posix-character-classes-0.1.1.tgz", - "integrity": "sha1-AerA/jta9xoqbAL+q7jB/vfgDqs=", - "dev": true - }, - "postcss": { - "version": "5.2.18", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-5.2.18.tgz", - "integrity": "sha512-zrUjRRe1bpXKsX1qAJNJjqZViErVuyEkMTRrwu4ud4sbTtIBRmtaYDrHmcGgmrbsW3MHfmtIf+vJumgQn+PrXg==", - "dev": true, - "requires": { - "chalk": "^1.1.3", - "js-base64": "^2.1.9", - "source-map": "^0.5.6", - "supports-color": "^3.2.3" - }, - "dependencies": { - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "dev": true, - "requires": { - "has-flag": "^1.0.0" - } - } - } - }, - "postcss-calc": { - "version": "5.3.1", - "resolved": "https://registry.npmjs.org/postcss-calc/-/postcss-calc-5.3.1.tgz", - "integrity": "sha1-d7rnypKK2FcW4v2kLyYb98HWW14=", - "dev": true, - "requires": { - "postcss": "^5.0.2", - "postcss-message-helpers": "^2.0.0", - "reduce-css-calc": "^1.2.6" - } - }, - "postcss-colormin": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/postcss-colormin/-/postcss-colormin-2.2.2.tgz", - "integrity": "sha1-ZjFBfV8OkJo9fsJrJMio0eT5bks=", - "dev": true, - "requires": { - "colormin": "^1.0.5", - "postcss": "^5.0.13", - "postcss-value-parser": "^3.2.3" - } - }, - "postcss-convert-values": { - "version": "2.6.1", - "resolved": "https://registry.npmjs.org/postcss-convert-values/-/postcss-convert-values-2.6.1.tgz", - "integrity": "sha1-u9hZPFwf0uPRwyK7kl3K6Nrk1i0=", - "dev": true, - "requires": { - "postcss": "^5.0.11", - "postcss-value-parser": "^3.1.2" - } - }, - "postcss-discard-comments": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/postcss-discard-comments/-/postcss-discard-comments-2.0.4.tgz", - "integrity": "sha1-vv6J+v1bPazlzM5Rt2uBUUvgDj0=", - "dev": true, - "requires": { - "postcss": "^5.0.14" - } - }, - "postcss-discard-duplicates": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-duplicates/-/postcss-discard-duplicates-2.1.0.tgz", - "integrity": "sha1-uavye4isGIFYpesSq8riAmO5GTI=", - "dev": true, - "requires": { - "postcss": "^5.0.4" - } - }, - "postcss-discard-empty": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/postcss-discard-empty/-/postcss-discard-empty-2.1.0.tgz", - "integrity": "sha1-0rS9nVztXr2Nyt52QMfXzX9PkrU=", - "dev": true, - "requires": { - "postcss": "^5.0.14" - } - }, - "postcss-discard-overridden": { - "version": "0.1.1", - "resolved": "https://registry.npmjs.org/postcss-discard-overridden/-/postcss-discard-overridden-0.1.1.tgz", - "integrity": "sha1-ix6vVU9ob7KIzYdMVWZ7CqNmjVg=", - "dev": true, - "requires": { - "postcss": "^5.0.16" - } - }, - "postcss-discard-unused": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-discard-unused/-/postcss-discard-unused-2.2.3.tgz", - "integrity": "sha1-vOMLLMWR/8Y0Mitfs0ZLbZNPRDM=", - "dev": true, - "requires": { - "postcss": "^5.0.14", - "uniqs": "^2.0.0" - } - }, - "postcss-filter-plugins": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/postcss-filter-plugins/-/postcss-filter-plugins-2.0.3.tgz", - "integrity": "sha512-T53GVFsdinJhgwm7rg1BzbeBRomOg9y5MBVhGcsV0CxurUdVj1UlPdKtn7aqYA/c/QVkzKMjq2bSV5dKG5+AwQ==", - "dev": true, - "requires": { - "postcss": "^5.0.4" - } - }, - "postcss-merge-idents": { - "version": "2.1.7", - "resolved": "https://registry.npmjs.org/postcss-merge-idents/-/postcss-merge-idents-2.1.7.tgz", - "integrity": "sha1-TFUwMTwI4dWzu/PSu8dH4njuonA=", - "dev": true, - "requires": { - "has": "^1.0.1", - "postcss": "^5.0.10", - "postcss-value-parser": "^3.1.1" - } - }, - "postcss-merge-longhand": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-merge-longhand/-/postcss-merge-longhand-2.0.2.tgz", - "integrity": "sha1-I9kM0Sewp3mUkVMyc5A0oaTz1lg=", - "dev": true, - "requires": { - "postcss": "^5.0.4" - } - }, - "postcss-merge-rules": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/postcss-merge-rules/-/postcss-merge-rules-2.1.2.tgz", - "integrity": "sha1-0d9d+qexrMO+VT8OnhDofGG19yE=", - "dev": true, - "requires": { - "browserslist": "^1.5.2", - "caniuse-api": "^1.5.2", - "postcss": "^5.0.4", - "postcss-selector-parser": "^2.2.2", - "vendors": "^1.0.0" - } - }, - "postcss-message-helpers": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/postcss-message-helpers/-/postcss-message-helpers-2.0.0.tgz", - "integrity": "sha1-pPL0+rbk/gAvCu0ABHjN9S+bpg4=", - "dev": true - }, - "postcss-minify-font-values": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/postcss-minify-font-values/-/postcss-minify-font-values-1.0.5.tgz", - "integrity": "sha1-S1jttWZB66fIR0qzUmyv17vey2k=", - "dev": true, - "requires": { - "object-assign": "^4.0.1", - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.2" - } - }, - "postcss-minify-gradients": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/postcss-minify-gradients/-/postcss-minify-gradients-1.0.5.tgz", - "integrity": "sha1-Xb2hE3NwP4PPtKPqOIHY11/15uE=", - "dev": true, - "requires": { - "postcss": "^5.0.12", - "postcss-value-parser": "^3.3.0" - } - }, - "postcss-minify-params": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/postcss-minify-params/-/postcss-minify-params-1.2.2.tgz", - "integrity": "sha1-rSzgcTc7lDs9kwo/pZo1jCjW8fM=", - "dev": true, - "requires": { - "alphanum-sort": "^1.0.1", - "postcss": "^5.0.2", - "postcss-value-parser": "^3.0.2", - "uniqs": "^2.0.0" - } - }, - "postcss-minify-selectors": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/postcss-minify-selectors/-/postcss-minify-selectors-2.1.1.tgz", - "integrity": "sha1-ssapjAByz5G5MtGkllCBFDEXNb8=", - "dev": true, - "requires": { - "alphanum-sort": "^1.0.2", - "has": "^1.0.1", - "postcss": "^5.0.14", - "postcss-selector-parser": "^2.0.0" - } - }, - "postcss-modules-extract-imports": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/postcss-modules-extract-imports/-/postcss-modules-extract-imports-1.2.1.tgz", - "integrity": "sha512-6jt9XZwUhwmRUhb/CkyJY020PYaPJsCyt3UjbaWo6XEbH/94Hmv6MP7fG2C5NDU/BcHzyGYxNtHvM+LTf9HrYw==", - "dev": true, - "requires": { - "postcss": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss-modules-local-by-default": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/postcss-modules-local-by-default/-/postcss-modules-local-by-default-1.2.0.tgz", - "integrity": "sha1-99gMOYxaOT+nlkRmvRlQCn1hwGk=", - "dev": true, - "requires": { - "css-selector-tokenizer": "^0.7.0", - "postcss": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss-modules-scope": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/postcss-modules-scope/-/postcss-modules-scope-1.1.0.tgz", - "integrity": "sha1-1upkmUx5+XtipytCb75gVqGUu5A=", - "dev": true, - "requires": { - "css-selector-tokenizer": "^0.7.0", - "postcss": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss-modules-values": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/postcss-modules-values/-/postcss-modules-values-1.3.0.tgz", - "integrity": "sha1-7P+p1+GSUYOJ9CrQ6D9yrsRW6iA=", - "dev": true, - "requires": { - "icss-replace-symbols": "^1.1.0", - "postcss": "^6.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "postcss": { - "version": "6.0.23", - "resolved": "https://registry.npmjs.org/postcss/-/postcss-6.0.23.tgz", - "integrity": "sha512-soOk1h6J3VMTZtVeVpv15/Hpdl2cBLX3CAw4TAbkpTJiNPk9YP/zWcD1ND+xEtvyuuvKzbxliTOIyvkSeSJ6ag==", - "dev": true, - "requires": { - "chalk": "^2.4.1", - "source-map": "^0.6.1", - "supports-color": "^5.4.0" - } - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "postcss-normalize-charset": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/postcss-normalize-charset/-/postcss-normalize-charset-1.1.1.tgz", - "integrity": "sha1-757nEhLX/nWceO0WL2HtYrXLk/E=", - "dev": true, - "requires": { - "postcss": "^5.0.5" - } - }, - "postcss-normalize-url": { - "version": "3.0.8", - "resolved": "https://registry.npmjs.org/postcss-normalize-url/-/postcss-normalize-url-3.0.8.tgz", - "integrity": "sha1-EI90s/L82viRov+j6kWSJ5/HgiI=", - "dev": true, - "requires": { - "is-absolute-url": "^2.0.0", - "normalize-url": "^1.4.0", - "postcss": "^5.0.14", - "postcss-value-parser": "^3.2.3" - } - }, - "postcss-ordered-values": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-ordered-values/-/postcss-ordered-values-2.2.3.tgz", - "integrity": "sha1-7sbCpntsQSqNsgQud/6NpD+VwR0=", - "dev": true, - "requires": { - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.1" - } - }, - "postcss-reduce-idents": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/postcss-reduce-idents/-/postcss-reduce-idents-2.4.0.tgz", - "integrity": "sha1-wsbSDMlYKE9qv75j92Cb9AkFmtM=", - "dev": true, - "requires": { - "postcss": "^5.0.4", - "postcss-value-parser": "^3.0.2" - } - }, - "postcss-reduce-initial": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/postcss-reduce-initial/-/postcss-reduce-initial-1.0.1.tgz", - "integrity": "sha1-aPgGlfBF0IJjqHmtJA343WT2ROo=", - "dev": true, - "requires": { - "postcss": "^5.0.4" - } - }, - "postcss-reduce-transforms": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/postcss-reduce-transforms/-/postcss-reduce-transforms-1.0.4.tgz", - "integrity": "sha1-/3b02CEkN7McKYpC0uFEQCV3GuE=", - "dev": true, - "requires": { - "has": "^1.0.1", - "postcss": "^5.0.8", - "postcss-value-parser": "^3.0.1" - } - }, - "postcss-selector-parser": { - "version": "2.2.3", - "resolved": "https://registry.npmjs.org/postcss-selector-parser/-/postcss-selector-parser-2.2.3.tgz", - "integrity": "sha1-+UN3iGBsPJrO4W/+jYsWKX8nu5A=", - "dev": true, - "requires": { - "flatten": "^1.0.2", - "indexes-of": "^1.0.1", - "uniq": "^1.0.1" - } - }, - "postcss-svgo": { - "version": "2.1.6", - "resolved": "https://registry.npmjs.org/postcss-svgo/-/postcss-svgo-2.1.6.tgz", - "integrity": "sha1-tt8YqmE7Zm4TPwittSGcJoSsEI0=", - "dev": true, - "requires": { - "is-svg": "^2.0.0", - "postcss": "^5.0.14", - "postcss-value-parser": "^3.2.3", - "svgo": "^0.7.0" - } - }, - "postcss-unique-selectors": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/postcss-unique-selectors/-/postcss-unique-selectors-2.0.2.tgz", - "integrity": "sha1-mB1X0p3csz57Hf4f1DuGSfkzyh0=", - "dev": true, - "requires": { - "alphanum-sort": "^1.0.1", - "postcss": "^5.0.4", - "uniqs": "^2.0.0" - } - }, - "postcss-value-parser": { - "version": "3.3.1", - "resolved": "https://registry.npmjs.org/postcss-value-parser/-/postcss-value-parser-3.3.1.tgz", - "integrity": "sha512-pISE66AbVkp4fDQ7VHBwRNXzAAKJjw4Vw7nWI/+Q3vuly7SNfgYXvm6i5IgFylHGK5sP/xHAbB7N49OS4gWNyQ==", - "dev": true - }, - "postcss-zindex": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/postcss-zindex/-/postcss-zindex-2.2.0.tgz", - "integrity": "sha1-0hCd3AVbka9n/EyzsCWUZjnSryI=", - "dev": true, - "requires": { - "has": "^1.0.1", - "postcss": "^5.0.4", - "uniqs": "^2.0.0" - } - }, - "prepend-http": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/prepend-http/-/prepend-http-1.0.4.tgz", - "integrity": "sha1-1PRWKwzjaW5BrFLQ4ALlemNdxtw=", - "dev": true - }, - "preserve": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/preserve/-/preserve-0.2.0.tgz", - "integrity": "sha1-gV7R9uvGWSb4ZbMQwHE7yzMVzks=", - "dev": true - }, - "private": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/private/-/private-0.1.8.tgz", - "integrity": "sha512-VvivMrbvd2nKkiG38qjULzlc+4Vx4wm/whI9pQD35YrARNnhxeiRktSOhSukRLFNlzg6Br/cJPet5J/u19r/mg==", - "dev": true - }, - "process": { - "version": "0.11.10", - "resolved": "https://registry.npmjs.org/process/-/process-0.11.10.tgz", - "integrity": "sha1-czIwDoQBYb2j5podHZGn1LwW8YI=", - "dev": true - }, - "process-nextick-args": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/process-nextick-args/-/process-nextick-args-2.0.1.tgz", - "integrity": "sha512-3ouUOpQhtgrbOa17J7+uxOTpITYWaGP7/AhoR3+A+/1e9skrzelGi/dXzEYyvbxubEF6Wn2ypscTKiKJFFn1ag==", - "dev": true - }, - "progress": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/progress/-/progress-2.0.3.tgz", - "integrity": "sha512-7PiHtLll5LdnKIMw100I+8xJXR5gW2QwWYkT6iJva0bXitZKa/XMrSbdmg3r2Xnaidz9Qumd0VPaMrZlF9V9sA==", - "dev": true - }, - "proxy-addr": { - "version": "2.0.5", - "resolved": "https://registry.npmjs.org/proxy-addr/-/proxy-addr-2.0.5.tgz", - "integrity": "sha512-t/7RxHXPH6cJtP0pRG6smSr9QJidhB+3kXu0KgXnbGYMgzEnUxRQ4/LDdfOwZEMyIh3/xHb8PX3t+lfL9z+YVQ==", - "dev": true, - "requires": { - "forwarded": "~0.1.2", - "ipaddr.js": "1.9.0" - } - }, - "prr": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/prr/-/prr-1.0.1.tgz", - "integrity": "sha1-0/wRS6BplaRexok/SEzrHXj19HY=", - "dev": true - }, - "pseudomap": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/pseudomap/-/pseudomap-1.0.2.tgz", - "integrity": "sha1-8FKijacOYYkX7wqKw0wa5aaChrM=", - "dev": true - }, - "psl": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/psl/-/psl-1.4.0.tgz", - "integrity": "sha512-HZzqCGPecFLyoRj5HLfuDSKYTJkAfB5thKBIkRHtGjWwY7p1dAyveIbXIq4tO0KYfDF2tHqPUgY9SDnGm00uFw==", - "dev": true - }, - "public-encrypt": { - "version": "4.0.3", - "resolved": "https://registry.npmjs.org/public-encrypt/-/public-encrypt-4.0.3.tgz", - "integrity": "sha512-zVpa8oKZSz5bTMTFClc1fQOnyyEzpl5ozpi1B5YcvBrdohMjH2rfsBtyXcuNuwjsDIXmBYlF2N5FlJYhR29t8Q==", - "dev": true, - "requires": { - "bn.js": "^4.1.0", - "browserify-rsa": "^4.0.0", - "create-hash": "^1.1.0", - "parse-asn1": "^5.0.0", - "randombytes": "^2.0.1", - "safe-buffer": "^5.1.2" - } - }, - "punycode": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-2.1.1.tgz", - "integrity": "sha512-XRsRjdf+j5ml+y/6GKHPZbrF/8p2Yga0JPtdqTIY2Xe5ohJPD9saDJJLPvp9+NSBprVvevdXZybnj2cv8OEd0A==", - "dev": true - }, - "q": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/q/-/q-1.5.1.tgz", - "integrity": "sha1-fjL3W0E4EpHQRhHxvxQQmsAGUdc=", - "dev": true - }, - "qjobs": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/qjobs/-/qjobs-1.2.0.tgz", - "integrity": "sha512-8YOJEHtxpySA3fFDyCRxA+UUV+fA+rTWnuWvylOK/NCjhY+b4ocCtmu8TtsWb+mYeU+GCHf/S66KZF/AsteKHg==", - "dev": true - }, - "qs": { - "version": "6.7.0", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.7.0.tgz", - "integrity": "sha512-VCdBRNFTX1fyE7Nb6FYoURo/SPe62QCaAyzJvUjwRaIsc+NePBEniHlvxFmmX56+HZphIGtV0XeCirBtpDrTyQ==", - "dev": true - }, - "query-string": { - "version": "4.3.4", - "resolved": "https://registry.npmjs.org/query-string/-/query-string-4.3.4.tgz", - "integrity": "sha1-u7aTucqRXCMlFbIosaArYJBD2+s=", - "dev": true, - "requires": { - "object-assign": "^4.1.0", - "strict-uri-encode": "^1.0.0" - } - }, - "querystring": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/querystring/-/querystring-0.2.0.tgz", - "integrity": "sha1-sgmEkgO7Jd+CDadW50cAWHhSFiA=", - "dev": true - }, - "querystring-es3": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/querystring-es3/-/querystring-es3-0.2.1.tgz", - "integrity": "sha1-nsYfeQSYdXB9aUFFlv2Qek1xHnM=", - "dev": true - }, - "querystringify": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/querystringify/-/querystringify-2.1.1.tgz", - "integrity": "sha512-w7fLxIRCRT7U8Qu53jQnJyPkYZIaR4n5151KMfcJlO/A9397Wxb1amJvROTK6TOnp7PfoAmg/qXiNHI+08jRfA==", - "dev": true - }, - "randomatic": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/randomatic/-/randomatic-3.1.1.tgz", - "integrity": "sha512-TuDE5KxZ0J461RVjrJZCJc+J+zCkTb1MbH9AQUq68sMhOMcy9jLcb3BrZKgp9q9Ncltdg4QVqWrH02W2EFFVYw==", - "dev": true, - "requires": { - "is-number": "^4.0.0", - "kind-of": "^6.0.0", - "math-random": "^1.0.1" - }, - "dependencies": { - "is-number": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-4.0.0.tgz", - "integrity": "sha512-rSklcAIlf1OmFdyAqbnWTLVelsQ58uvZ66S/ZyawjWqIviTWCjg2PzVGw8WUA+nNuPTqb4wgA+NszrJ+08LlgQ==", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "randombytes": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/randombytes/-/randombytes-2.1.0.tgz", - "integrity": "sha512-vYl3iOX+4CKUWuxGi9Ukhie6fsqXqS9FE2Zaic4tNFD2N2QQaXOMFbuKK4QmDHC0JO6B1Zp41J0LpT0oR68amQ==", - "dev": true, - "requires": { - "safe-buffer": "^5.1.0" - } - }, - "randomfill": { - "version": "1.0.4", - "resolved": "https://registry.npmjs.org/randomfill/-/randomfill-1.0.4.tgz", - "integrity": "sha512-87lcbR8+MhcWcUiQ+9e+Rwx8MyR2P7qnt15ynUlbm3TU/fjbgz4GsvfSUDTemtCCtVCqb4ZcEFlyPNTh9bBTLw==", - "dev": true, - "requires": { - "randombytes": "^2.0.5", - "safe-buffer": "^5.1.0" - } - }, - "range-parser": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/range-parser/-/range-parser-1.2.1.tgz", - "integrity": "sha512-Hrgsx+orqoygnmhFbKaHE6c296J+HTAQXoxEF6gNupROmmGJRoyzfG3ccAveqCBrwr/2yxQ5BVd/GTl5agOwSg==", - "dev": true - }, - "raw-body": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/raw-body/-/raw-body-2.4.0.tgz", - "integrity": "sha512-4Oz8DUIwdvoa5qMJelxipzi/iJIi40O5cGV1wNYp5hvZP8ZN0T+jiNkL0QepXs+EsQ9XJ8ipEDoiH70ySUJP3Q==", - "dev": true, - "requires": { - "bytes": "3.1.0", - "http-errors": "1.7.2", - "iconv-lite": "0.4.24", - "unpipe": "1.0.0" - } - }, - "raw-loader": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/raw-loader/-/raw-loader-0.5.1.tgz", - "integrity": "sha1-DD0L6u2KAclm2Xh793goElKpeao=", - "dev": true - }, - "read-pkg": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/read-pkg/-/read-pkg-1.1.0.tgz", - "integrity": "sha1-9f+qXs0pyzHAR0vKfXVra7KePyg=", - "dev": true, - "requires": { - "load-json-file": "^1.0.0", - "normalize-package-data": "^2.3.2", - "path-type": "^1.0.0" - } - }, - "read-pkg-up": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/read-pkg-up/-/read-pkg-up-1.0.1.tgz", - "integrity": "sha1-nWPBMnbAZZGNV/ACpX9AobZD+wI=", - "dev": true, - "requires": { - "find-up": "^1.0.0", - "read-pkg": "^1.0.0" - } - }, - "readable-stream": { - "version": "2.3.6", - "resolved": "https://registry.npmjs.org/readable-stream/-/readable-stream-2.3.6.tgz", - "integrity": "sha512-tQtKA9WIAhBF3+VLAseyMqZeBjW0AHJoxOtYqSUZNJxauErmLbVm2FW1y+J/YA9dUrAC39ITejlZWhVIwawkKw==", - "dev": true, - "requires": { - "core-util-is": "~1.0.0", - "inherits": "~2.0.3", - "isarray": "~1.0.0", - "process-nextick-args": "~2.0.0", - "safe-buffer": "~5.1.1", - "string_decoder": "~1.1.1", - "util-deprecate": "~1.0.1" - } - }, - "readdirp": { - "version": "2.2.1", - "resolved": "https://registry.npmjs.org/readdirp/-/readdirp-2.2.1.tgz", - "integrity": "sha512-1JU/8q+VgFZyxwrJ+SVIOsh+KywWGpds3NTqikiKpDMZWScmAYyKIgqkO+ARvNWJfXeXR1zxz7aHF4u4CyH6vQ==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.11", - "micromatch": "^3.1.10", - "readable-stream": "^2.0.2" - }, - "dependencies": { - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - } - } - }, - "recast": { - "version": "0.11.23", - "resolved": "https://registry.npmjs.org/recast/-/recast-0.11.23.tgz", - "integrity": "sha1-RR/TAEqx5N+bTktmN2sqIZEkYtM=", - "dev": true, - "requires": { - "ast-types": "0.9.6", - "esprima": "~3.1.0", - "private": "~0.1.5", - "source-map": "~0.5.0" - }, - "dependencies": { - "esprima": { - "version": "3.1.3", - "resolved": "https://registry.npmjs.org/esprima/-/esprima-3.1.3.tgz", - "integrity": "sha1-/cpRzuYTOJXjyI1TXOSdv/YqRjM=", - "dev": true - } - } - }, - "rechoir": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/rechoir/-/rechoir-0.6.2.tgz", - "integrity": "sha1-hSBLVNuoLVdC4oyWdW70OvUOM4Q=", - "dev": true, - "requires": { - "resolve": "^1.1.6" - } - }, - "redent": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/redent/-/redent-1.0.0.tgz", - "integrity": "sha1-z5Fqsf1fHxbfsggi3W7H9zDCr94=", - "dev": true, - "requires": { - "indent-string": "^2.1.0", - "strip-indent": "^1.0.1" - } - }, - "reduce-css-calc": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/reduce-css-calc/-/reduce-css-calc-1.3.0.tgz", - "integrity": "sha1-dHyRTgSWFKTJz7umKYca0dKSdxY=", - "dev": true, - "requires": { - "balanced-match": "^0.4.2", - "math-expression-evaluator": "^1.2.14", - "reduce-function-call": "^1.0.1" - } - }, - "reduce-function-call": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/reduce-function-call/-/reduce-function-call-1.0.3.tgz", - "integrity": "sha512-Hl/tuV2VDgWgCSEeWMLwxLZqX7OK59eU1guxXsRKTAyeYimivsKdtcV4fu3r710tpG5GmDKDhQ0HSZLExnNmyQ==", - "dev": true, - "requires": { - "balanced-match": "^1.0.0" - }, - "dependencies": { - "balanced-match": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/balanced-match/-/balanced-match-1.0.0.tgz", - "integrity": "sha1-ibTRmasr7kneFk6gK4nORi1xt2c=", - "dev": true - } - } - }, - "regenerate": { - "version": "1.4.0", - "resolved": "https://registry.npmjs.org/regenerate/-/regenerate-1.4.0.tgz", - "integrity": "sha512-1G6jJVDWrt0rK99kBjvEtziZNCICAuvIPkSiUFIQxVP06RCVpq3dmDo2oi6ABpYaDYaTRr67BEhL8r1wgEZZKg==", - "dev": true - }, - "regex-cache": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/regex-cache/-/regex-cache-0.4.4.tgz", - "integrity": "sha512-nVIZwtCjkC9YgvWkpM55B5rBhBYRZhAaJbgcFYXXsHnbZ9UZI9nnVWYZpBlCqv9ho2eZryPnWrZGsOdPwVWXWQ==", - "dev": true, - "requires": { - "is-equal-shallow": "^0.1.3" - } - }, - "regex-not": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/regex-not/-/regex-not-1.0.2.tgz", - "integrity": "sha512-J6SDjUgDxQj5NusnOtdFxDwN/+HWykR8GELwctJ7mdqhcyy1xEc4SRFHUXvxTp661YaVKAjfRLZ9cCqS6tn32A==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.2", - "safe-regex": "^1.1.0" - } - }, - "regexpu-core": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/regexpu-core/-/regexpu-core-1.0.0.tgz", - "integrity": "sha1-hqdj9Y7k18L2sQLkdkBQ3n7ZDGs=", - "dev": true, - "requires": { - "regenerate": "^1.2.1", - "regjsgen": "^0.2.0", - "regjsparser": "^0.1.4" - } - }, - "regjsgen": { - "version": "0.2.0", - "resolved": "https://registry.npmjs.org/regjsgen/-/regjsgen-0.2.0.tgz", - "integrity": "sha1-bAFq3qxVT3WCP+N6wFuS1aTtsfc=", - "dev": true - }, - "regjsparser": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/regjsparser/-/regjsparser-0.1.5.tgz", - "integrity": "sha1-fuj4Tcb6eS0/0K4ijSS9lJ6tIFw=", - "dev": true, - "requires": { - "jsesc": "~0.5.0" - } - }, - "relateurl": { - "version": "0.2.7", - "resolved": "https://registry.npmjs.org/relateurl/-/relateurl-0.2.7.tgz", - "integrity": "sha1-VNvzd+UUQKypCkzSdGANP/LYiKk=", - "dev": true - }, - "remove-trailing-separator": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/remove-trailing-separator/-/remove-trailing-separator-1.1.0.tgz", - "integrity": "sha1-wkvOKig62tW8P1jg1IJJuSN52O8=", - "dev": true - }, - "repeat-element": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/repeat-element/-/repeat-element-1.1.3.tgz", - "integrity": "sha512-ahGq0ZnV5m5XtZLMb+vP76kcAM5nkLqk0lpqAuojSKGgQtn4eRi4ZZGm2olo2zKFH+sMsWaqOCW1dqAnOru72g==", - "dev": true - }, - "repeat-string": { - "version": "1.6.1", - "resolved": "https://registry.npmjs.org/repeat-string/-/repeat-string-1.6.1.tgz", - "integrity": "sha1-jcrkcOHIirwtYA//Sndihtp15jc=", - "dev": true - }, - "repeating": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/repeating/-/repeating-2.0.1.tgz", - "integrity": "sha1-UhTFOpJtNVJwdSf7q0FdvAjQbdo=", - "dev": true, - "requires": { - "is-finite": "^1.0.0" - } - }, - "request": { - "version": "2.88.0", - "resolved": "https://registry.npmjs.org/request/-/request-2.88.0.tgz", - "integrity": "sha512-NAqBSrijGLZdM0WZNsInLJpkJokL72XYjUpnB0iwsRgxh7dB6COrHnTBNwN0E+lHDAJzu7kLAkDeY08z2/A0hg==", - "dev": true, - "requires": { - "aws-sign2": "~0.7.0", - "aws4": "^1.8.0", - "caseless": "~0.12.0", - "combined-stream": "~1.0.6", - "extend": "~3.0.2", - "forever-agent": "~0.6.1", - "form-data": "~2.3.2", - "har-validator": "~5.1.0", - "http-signature": "~1.2.0", - "is-typedarray": "~1.0.0", - "isstream": "~0.1.2", - "json-stringify-safe": "~5.0.1", - "mime-types": "~2.1.19", - "oauth-sign": "~0.9.0", - "performance-now": "^2.1.0", - "qs": "~6.5.2", - "safe-buffer": "^5.1.2", - "tough-cookie": "~2.4.3", - "tunnel-agent": "^0.6.0", - "uuid": "^3.3.2" - }, - "dependencies": { - "qs": { - "version": "6.5.2", - "resolved": "https://registry.npmjs.org/qs/-/qs-6.5.2.tgz", - "integrity": "sha512-N5ZAX4/LxJmF+7wN74pUD6qAh9/wnvdQcjq9TZjevvXzSUo7bfmw91saqMjzGS2xq91/odN2dW/WOl7qQHNDGA==", - "dev": true - } - } - }, - "require-directory": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/require-directory/-/require-directory-2.1.1.tgz", - "integrity": "sha1-jGStX9MNqxyXbiNE/+f3kqam30I=", - "dev": true - }, - "require-main-filename": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/require-main-filename/-/require-main-filename-1.0.1.tgz", - "integrity": "sha1-l/cXtp1IeE9fUmpsWqj/3aBVpNE=", - "dev": true - }, - "requires-port": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/requires-port/-/requires-port-1.0.0.tgz", - "integrity": "sha1-kl0mAdOaxIXgkc8NpcbmlNw9yv8=", - "dev": true - }, - "resolve": { - "version": "1.12.0", - "resolved": "https://registry.npmjs.org/resolve/-/resolve-1.12.0.tgz", - "integrity": "sha512-B/dOmuoAik5bKcD6s6nXDCjzUKnaDvdkRyAk6rsmsKLipWj4797iothd7jmmUhWTfinVMU+wc56rYKsit2Qy4w==", - "dev": true, - "requires": { - "path-parse": "^1.0.6" - } - }, - "resolve-url": { - "version": "0.2.1", - "resolved": "https://registry.npmjs.org/resolve-url/-/resolve-url-0.2.1.tgz", - "integrity": "sha1-LGN/53yJOv0qZj/iGqkIAGjiBSo=", - "dev": true - }, - "ret": { - "version": "0.1.15", - "resolved": "https://registry.npmjs.org/ret/-/ret-0.1.15.tgz", - "integrity": "sha512-TTlYpa+OL+vMMNG24xSlQGEJ3B/RzEfUlLct7b5G/ytav+wPrplCpVMFuwzXbkecJrb6IYo1iFb0S9v37754mg==", - "dev": true - }, - "right-align": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/right-align/-/right-align-0.1.3.tgz", - "integrity": "sha1-YTObci/mo1FWiSENJOFMlhSGE+8=", - "dev": true, - "requires": { - "align-text": "^0.1.1" - } - }, - "rimraf": { - "version": "2.7.1", - "resolved": "https://registry.npmjs.org/rimraf/-/rimraf-2.7.1.tgz", - "integrity": "sha512-uWjbaKIK3T1OSVptzX7Nl6PvQ3qAGtKEtVRjRuazjfL3Bx5eI409VZSqgND+4UNnmzLVdPj9FqFJNPqBZFve4w==", - "dev": true, - "requires": { - "glob": "^7.1.3" - } - }, - "ripemd160": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/ripemd160/-/ripemd160-2.0.2.tgz", - "integrity": "sha512-ii4iagi25WusVoiC4B4lq7pbXfAp3D9v5CwfkY33vffw2+pkDjY1D8GaN7spsxvCSx8dkPqOZCEZyfxcmJG2IA==", - "dev": true, - "requires": { - "hash-base": "^3.0.0", - "inherits": "^2.0.1" - } - }, - "rw": { - "version": "1.3.3", - "resolved": "https://registry.npmjs.org/rw/-/rw-1.3.3.tgz", - "integrity": "sha1-P4Yt+pGrdmsUiF700BEkv9oHT7Q=" - }, - "safe-buffer": { - "version": "5.1.2", - "resolved": "https://registry.npmjs.org/safe-buffer/-/safe-buffer-5.1.2.tgz", - "integrity": "sha512-Gd2UZBJDkXlY7GbJxfsE8/nvKkUEU1G38c1siN6QP6a9PT9MmHB8GnpscSmMJSoF8LOIrt8ud/wPtojys4G6+g==", - "dev": true - }, - "safe-regex": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/safe-regex/-/safe-regex-1.1.0.tgz", - "integrity": "sha1-QKNmnzsHfR6UPURinhV91IAjvy4=", - "dev": true, - "requires": { - "ret": "~0.1.10" - } - }, - "safer-buffer": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/safer-buffer/-/safer-buffer-2.1.2.tgz", - "integrity": "sha512-YZo3K82SD7Riyi0E1EQPojLz7kpepnSQI9IyPbHHg1XXXevb5dJI7tpyN2ADxGcQbHG7vcyRHk0cbwqcQriUtg==" - }, - "sass-graph": { - "version": "2.2.4", - "resolved": "https://registry.npmjs.org/sass-graph/-/sass-graph-2.2.4.tgz", - "integrity": "sha1-E/vWPNHK8JCLn9k0dq1DpR0eC0k=", - "dev": true, - "requires": { - "glob": "^7.0.0", - "lodash": "^4.0.0", - "scss-tokenizer": "^0.2.3", - "yargs": "^7.0.0" - } - }, - "sass-loader": { - "version": "6.0.7", - "resolved": "https://registry.npmjs.org/sass-loader/-/sass-loader-6.0.7.tgz", - "integrity": "sha512-JoiyD00Yo1o61OJsoP2s2kb19L1/Y2p3QFcCdWdF6oomBGKVYuZyqHWemRBfQ2uGYsk+CH3eCguXNfpjzlcpaA==", - "dev": true, - "requires": { - "clone-deep": "^2.0.1", - "loader-utils": "^1.0.1", - "lodash.tail": "^4.1.1", - "neo-async": "^2.5.0", - "pify": "^3.0.0" - }, - "dependencies": { - "pify": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/pify/-/pify-3.0.0.tgz", - "integrity": "sha1-5aSs0sEB/fPZpNB/DbxNtJ3SgXY=", - "dev": true - } - } - }, - "sax": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/sax/-/sax-1.2.4.tgz", - "integrity": "sha512-NqVDv9TpANUjFm0N8uM5GxL36UgKi9/atZw+x7YFnQ8ckwFGKrl4xX4yWtrey3UJm5nP1kUbnYgLopqWNSRhWw==", - "dev": true - }, - "schema-utils": { - "version": "0.4.7", - "resolved": "https://registry.npmjs.org/schema-utils/-/schema-utils-0.4.7.tgz", - "integrity": "sha512-v/iwU6wvwGK8HbU9yi3/nhGzP0yGSuhQMzL6ySiec1FSrZZDkhm4noOSWzrNFo/jEc+SJY6jRTwuwbSXJPDUnQ==", - "dev": true, - "requires": { - "ajv": "^6.1.0", - "ajv-keywords": "^3.1.0" - } - }, - "scss-tokenizer": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/scss-tokenizer/-/scss-tokenizer-0.2.3.tgz", - "integrity": "sha1-jrBtualyMzOCTT9VMGQRSYR85dE=", - "dev": true, - "requires": { - "js-base64": "^2.1.8", - "source-map": "^0.4.2" - }, - "dependencies": { - "source-map": { - "version": "0.4.4", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.4.4.tgz", - "integrity": "sha1-66T12pwNyZneaAMti092FzZSA2s=", - "dev": true, - "requires": { - "amdefine": ">=0.0.4" - } - } - } - }, - "select-hose": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/select-hose/-/select-hose-2.0.0.tgz", - "integrity": "sha1-Yl2GWPhlr0Psliv8N2o3NZpJlMo=", - "dev": true - }, - "select2": { - "version": "4.0.4", - "resolved": "https://registry.npmjs.org/select2/-/select2-4.0.4.tgz", - "integrity": "sha1-oYpih4X5jROZmXGuldjX5XJoB2s=", - "requires": { - "almond": "~0.3.1", - "jquery-mousewheel": "~3.1.13" - } - }, - "select2-bootstrap-theme": { - "version": "0.1.0-beta.9", - "resolved": "https://registry.npmjs.org/select2-bootstrap-theme/-/select2-bootstrap-theme-0.1.0-beta.9.tgz", - "integrity": "sha1-zrXRVbeJ7fQVEDPwcULfiJi2Ax0=" - }, - "semver": { - "version": "4.3.6", - "resolved": "https://registry.npmjs.org/semver/-/semver-4.3.6.tgz", - "integrity": "sha1-MAvG4OhjdPe6YQaLWx7NV/xlMto=", - "dev": true - }, - "send": { - "version": "0.17.1", - "resolved": "https://registry.npmjs.org/send/-/send-0.17.1.tgz", - "integrity": "sha512-BsVKsiGcQMFwT8UxypobUKyv7irCNRHk1T0G680vk88yf6LBByGcZJOTJCrTP2xVN6yI+XjPJcNuE3V4fT9sAg==", - "dev": true, - "requires": { - "debug": "2.6.9", - "depd": "~1.1.2", - "destroy": "~1.0.4", - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "etag": "~1.8.1", - "fresh": "0.5.2", - "http-errors": "~1.7.2", - "mime": "1.6.0", - "ms": "2.1.1", - "on-finished": "~2.3.0", - "range-parser": "~1.2.1", - "statuses": "~1.5.0" - }, - "dependencies": { - "ms": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-2.1.1.tgz", - "integrity": "sha512-tgp+dl5cGk28utYktBsrFqA7HKgrhgPsg6Z/EfhWI4gl1Hwq8B/GmY/0oXZ6nF8hDVesS/FpnYaD/kOWhYQvyg==", - "dev": true - } - } - }, - "serve-index": { - "version": "1.9.1", - "resolved": "https://registry.npmjs.org/serve-index/-/serve-index-1.9.1.tgz", - "integrity": "sha1-03aNabHn2C5c4FD/9bRTvqEqkjk=", - "dev": true, - "requires": { - "accepts": "~1.3.4", - "batch": "0.6.1", - "debug": "2.6.9", - "escape-html": "~1.0.3", - "http-errors": "~1.6.2", - "mime-types": "~2.1.17", - "parseurl": "~1.3.2" - }, - "dependencies": { - "accepts": { - "version": "1.3.7", - "resolved": "https://registry.npmjs.org/accepts/-/accepts-1.3.7.tgz", - "integrity": "sha512-Il80Qs2WjYlJIBNzNkK6KYqlVMTbZLXgHx2oT0pU/fjRHyEp+PEfEPY0R3WCwAGVOtauxh1hOxNgIf5bv7dQpA==", - "dev": true, - "requires": { - "mime-types": "~2.1.24", - "negotiator": "0.6.2" - } - }, - "http-errors": { - "version": "1.6.3", - "resolved": "https://registry.npmjs.org/http-errors/-/http-errors-1.6.3.tgz", - "integrity": "sha1-i1VoC7S+KDoLW/TqLjhYC+HZMg0=", - "dev": true, - "requires": { - "depd": "~1.1.2", - "inherits": "2.0.3", - "setprototypeof": "1.1.0", - "statuses": ">= 1.4.0 < 2" - } - }, - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - }, - "negotiator": { - "version": "0.6.2", - "resolved": "https://registry.npmjs.org/negotiator/-/negotiator-0.6.2.tgz", - "integrity": "sha512-hZXc7K2e+PgeI1eDBe/10Ard4ekbfrrqG8Ep+8Jmf4JID2bNg7NvCPOZN+kfF574pFQI7mum2AUqDidoKqcTOw==", - "dev": true - }, - "setprototypeof": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.0.tgz", - "integrity": "sha512-BvE/TwpZX4FXExxOxZyRGQQv651MSwmWKZGqvmPcRIjDqWub67kTKuIMx43cZZrS/cBBzwBcNDWoFxt2XEFIpQ==", - "dev": true - } - } - }, - "serve-static": { - "version": "1.14.1", - "resolved": "https://registry.npmjs.org/serve-static/-/serve-static-1.14.1.tgz", - "integrity": "sha512-JMrvUwE54emCYWlTI+hGrGv5I8dEwmco/00EvkzIIsR7MqrHonbD9pO2MOfFnpFntl7ecpZs+3mW+XbQZu9QCg==", - "dev": true, - "requires": { - "encodeurl": "~1.0.2", - "escape-html": "~1.0.3", - "parseurl": "~1.3.3", - "send": "0.17.1" - } - }, - "set-blocking": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/set-blocking/-/set-blocking-2.0.0.tgz", - "integrity": "sha1-BF+XgtARrppoA93TgrJDkrPYkPc=", - "dev": true - }, - "set-value": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/set-value/-/set-value-2.0.1.tgz", - "integrity": "sha512-JxHc1weCN68wRY0fhCoXpyK55m/XPHafOmK4UWD7m2CI14GMcFypt4w/0+NV5f/ZMby2F6S2wwA7fgynh9gWSw==", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-extendable": "^0.1.1", - "is-plain-object": "^2.0.3", - "split-string": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "setimmediate": { - "version": "1.0.5", - "resolved": "https://registry.npmjs.org/setimmediate/-/setimmediate-1.0.5.tgz", - "integrity": "sha1-KQy7Iy4waULX1+qbg3Mqt4VvgoU=", - "dev": true - }, - "setprototypeof": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/setprototypeof/-/setprototypeof-1.1.1.tgz", - "integrity": "sha512-JvdAWfbXeIGaZ9cILp38HntZSFSo3mWg6xGcJJsd+d4aRMOqauag1C63dJfDw7OaMYwEbHMOxEZ1lqVRYP2OAw==", - "dev": true - }, - "sha.js": { - "version": "2.4.11", - "resolved": "https://registry.npmjs.org/sha.js/-/sha.js-2.4.11.tgz", - "integrity": "sha512-QMEp5B7cftE7APOjk5Y6xgrbWu+WkLVQwk8JNjZ8nKRciZaByEW6MubieAiToS7+dwvrjGhH8jRXz3MVd0AYqQ==", - "dev": true, - "requires": { - "inherits": "^2.0.1", - "safe-buffer": "^5.0.1" - } - }, - "shallow-clone": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/shallow-clone/-/shallow-clone-1.0.0.tgz", - "integrity": "sha512-oeXreoKR/SyNJtRJMAKPDSvd28OqEwG4eR/xc856cRGBII7gX9lvAqDxusPm0846z/w/hWYjI1NpKwJ00NHzRA==", - "dev": true, - "requires": { - "is-extendable": "^0.1.1", - "kind-of": "^5.0.0", - "mixin-object": "^2.0.1" - }, - "dependencies": { - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "shelljs": { - "version": "0.8.3", - "resolved": "https://registry.npmjs.org/shelljs/-/shelljs-0.8.3.tgz", - "integrity": "sha512-fc0BKlAWiLpwZljmOvAOTE/gXawtCoNrP5oaY7KIaQbbyHeQVg01pSEuEGvGh3HEdBU4baCD7wQBwADmM/7f7A==", - "dev": true, - "requires": { - "glob": "^7.0.0", - "interpret": "^1.0.0", - "rechoir": "^0.6.2" - } - }, - "signal-exit": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/signal-exit/-/signal-exit-3.0.2.tgz", - "integrity": "sha1-tf3AjxKH6hF4Yo5BXiUTK3NkbG0=", - "dev": true - }, - "snapdragon": { - "version": "0.8.2", - "resolved": "https://registry.npmjs.org/snapdragon/-/snapdragon-0.8.2.tgz", - "integrity": "sha512-FtyOnWN/wCHTVXOMwvSv26d+ko5vWlIDD6zoUJ7LW8vh+ZBC8QdljveRP+crNrtBwioEUWy/4dMtbBjA4ioNlg==", - "dev": true, - "requires": { - "base": "^0.11.1", - "debug": "^2.2.0", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "map-cache": "^0.2.2", - "source-map": "^0.5.6", - "source-map-resolve": "^0.5.0", - "use": "^3.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "snapdragon-node": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/snapdragon-node/-/snapdragon-node-2.1.1.tgz", - "integrity": "sha512-O27l4xaMYt/RSQ5TR3vpWCAB5Kb/czIcqUFOM/C4fYcLnbZUc1PkjTAMjof2pBWaSTwOUd6qUHcFGVGj7aIwnw==", - "dev": true, - "requires": { - "define-property": "^1.0.0", - "isobject": "^3.0.0", - "snapdragon-util": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - } - } - }, - "snapdragon-util": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/snapdragon-util/-/snapdragon-util-3.0.1.tgz", - "integrity": "sha512-mbKkMdQKsjX4BAL4bRYTj21edOf8cN7XHdYUJEe+Zn99hVEYcMvKPct1IqNe7+AZPirn8BCDOQBHQZknqmKlZQ==", - "dev": true, - "requires": { - "kind-of": "^3.2.0" - } - }, - "socket.io": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/socket.io/-/socket.io-1.7.3.tgz", - "integrity": "sha1-uK+cq6AJSeVo42nxMn6pvp6iRhs=", - "dev": true, - "requires": { - "debug": "2.3.3", - "engine.io": "1.8.3", - "has-binary": "0.1.7", - "object-assign": "4.1.0", - "socket.io-adapter": "0.5.0", - "socket.io-client": "1.7.3", - "socket.io-parser": "2.3.1" - }, - "dependencies": { - "debug": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz", - "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=", - "dev": true, - "requires": { - "ms": "0.7.2" - } - }, - "ms": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz", - "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=", - "dev": true - }, - "object-assign": { - "version": "4.1.0", - "resolved": "https://registry.npmjs.org/object-assign/-/object-assign-4.1.0.tgz", - "integrity": "sha1-ejs9DpgGPUP0wD8uiubNUahog6A=", - "dev": true - } - } - }, - "socket.io-adapter": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/socket.io-adapter/-/socket.io-adapter-0.5.0.tgz", - "integrity": "sha1-y21LuL7IHhB4uZZ3+c7QBGBmu4s=", - "dev": true, - "requires": { - "debug": "2.3.3", - "socket.io-parser": "2.3.1" - }, - "dependencies": { - "debug": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz", - "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=", - "dev": true, - "requires": { - "ms": "0.7.2" - } - }, - "ms": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz", - "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=", - "dev": true - } - } - }, - "socket.io-client": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/socket.io-client/-/socket.io-client-1.7.3.tgz", - "integrity": "sha1-sw6GqhDV7zVGYBwJzeR2Xjgdo3c=", - "dev": true, - "requires": { - "backo2": "1.0.2", - "component-bind": "1.0.0", - "component-emitter": "1.2.1", - "debug": "2.3.3", - "engine.io-client": "1.8.3", - "has-binary": "0.1.7", - "indexof": "0.0.1", - "object-component": "0.0.3", - "parseuri": "0.0.5", - "socket.io-parser": "2.3.1", - "to-array": "0.1.4" - }, - "dependencies": { - "component-emitter": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.2.1.tgz", - "integrity": "sha1-E3kY1teCg/ffemt8WmPhQOaUJeY=", - "dev": true - }, - "debug": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.3.3.tgz", - "integrity": "sha1-QMRT5n5uE8kB3ewxeviYbNqe/4w=", - "dev": true, - "requires": { - "ms": "0.7.2" - } - }, - "ms": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.2.tgz", - "integrity": "sha1-riXPJRKziFodldfwN4aNhDESR2U=", - "dev": true - } - } - }, - "socket.io-parser": { - "version": "2.3.1", - "resolved": "https://registry.npmjs.org/socket.io-parser/-/socket.io-parser-2.3.1.tgz", - "integrity": "sha1-3VMgJRA85Clpcya+/WQAX8/ltKA=", - "dev": true, - "requires": { - "component-emitter": "1.1.2", - "debug": "2.2.0", - "isarray": "0.0.1", - "json3": "3.3.2" - }, - "dependencies": { - "component-emitter": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/component-emitter/-/component-emitter-1.1.2.tgz", - "integrity": "sha1-KWWU8nU9qmOZbSrwjRWpURbJrsM=", - "dev": true - }, - "debug": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/debug/-/debug-2.2.0.tgz", - "integrity": "sha1-+HBX6ZWxofauaklgZkE3vFbwOdo=", - "dev": true, - "requires": { - "ms": "0.7.1" - } - }, - "isarray": { - "version": "0.0.1", - "resolved": "https://registry.npmjs.org/isarray/-/isarray-0.0.1.tgz", - "integrity": "sha1-ihis/Kmo9Bd+Cav8YDiTmwXR7t8=", - "dev": true - }, - "ms": { - "version": "0.7.1", - "resolved": "https://registry.npmjs.org/ms/-/ms-0.7.1.tgz", - "integrity": "sha1-nNE8A62/8ltl7/3nzoZO6VIBcJg=", - "dev": true - } - } - }, - "sockjs": { - "version": "0.3.18", - "resolved": "https://registry.npmjs.org/sockjs/-/sockjs-0.3.18.tgz", - "integrity": "sha1-2bKJMWyn33dZXvKZ4HXw+TfrQgc=", - "dev": true, - "requires": { - "faye-websocket": "^0.10.0", - "uuid": "^2.0.2" - }, - "dependencies": { - "uuid": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-2.0.3.tgz", - "integrity": "sha1-Z+LoY3lyFVMN/zGOW/nc6/1Hsho=", - "dev": true - } - } - }, - "sockjs-client": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sockjs-client/-/sockjs-client-1.1.2.tgz", - "integrity": "sha1-8CEqhVDkyUaMjM6u79LjSTwDOtU=", - "dev": true, - "requires": { - "debug": "^2.2.0", - "eventsource": "0.1.6", - "faye-websocket": "~0.11.0", - "inherits": "^2.0.1", - "json3": "^3.3.2", - "url-parse": "^1.1.1" - }, - "dependencies": { - "faye-websocket": { - "version": "0.11.3", - "resolved": "https://registry.npmjs.org/faye-websocket/-/faye-websocket-0.11.3.tgz", - "integrity": "sha512-D2y4bovYpzziGgbHYtGCMjlJM36vAl/y+xUyn1C+FVx8szd1E+86KwVw6XvYSzOP8iMpm1X0I4xJD+QtUb36OA==", - "dev": true, - "requires": { - "websocket-driver": ">=0.5.1" - } - } - } - }, - "sort-keys": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/sort-keys/-/sort-keys-1.1.2.tgz", - "integrity": "sha1-RBttTTRnmPG05J6JIK37oOVD+a0=", - "dev": true, - "requires": { - "is-plain-obj": "^1.0.0" - } - }, - "source-list-map": { - "version": "0.1.8", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-0.1.8.tgz", - "integrity": "sha1-xVCyq1Qn9rPyH1r+rYjE9Vh7IQY=", - "dev": true - }, - "source-map": { - "version": "0.5.7", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.5.7.tgz", - "integrity": "sha1-igOdLRAh0i0eoUyA2OpGi6LvP8w=", - "dev": true - }, - "source-map-resolve": { - "version": "0.5.2", - "resolved": "https://registry.npmjs.org/source-map-resolve/-/source-map-resolve-0.5.2.tgz", - "integrity": "sha512-MjqsvNwyz1s0k81Goz/9vRBe9SZdB09Bdw+/zYyO+3CuPk6fouTaxscHkgtE8jKvf01kVfl8riHzERQ/kefaSA==", - "dev": true, - "requires": { - "atob": "^2.1.1", - "decode-uri-component": "^0.2.0", - "resolve-url": "^0.2.1", - "source-map-url": "^0.4.0", - "urix": "^0.1.0" - } - }, - "source-map-support": { - "version": "0.4.18", - "resolved": "https://registry.npmjs.org/source-map-support/-/source-map-support-0.4.18.tgz", - "integrity": "sha512-try0/JqxPLF9nOjvSta7tVondkP5dwgyLDjVoyMDlmjugT2lRZ1OfsrYTkCd2hkDnJTKRbO/Rl3orm8vlsUzbA==", - "dev": true, - "requires": { - "source-map": "^0.5.6" - } - }, - "source-map-url": { - "version": "0.4.0", - "resolved": "https://registry.npmjs.org/source-map-url/-/source-map-url-0.4.0.tgz", - "integrity": "sha1-PpNdfd1zYxuXZZlW1VEo6HtQhKM=", - "dev": true - }, - "spdx-correct": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/spdx-correct/-/spdx-correct-3.1.0.tgz", - "integrity": "sha512-lr2EZCctC2BNR7j7WzJ2FpDznxky1sjfxvvYEyzxNyb6lZXHODmEoJeFu4JupYlkfha1KZpJyoqiJ7pgA1qq8Q==", - "dev": true, - "requires": { - "spdx-expression-parse": "^3.0.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-exceptions": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/spdx-exceptions/-/spdx-exceptions-2.2.0.tgz", - "integrity": "sha512-2XQACfElKi9SlVb1CYadKDXvoajPgBVPn/gOQLrTvHdElaVhr7ZEbqJaRnJLVNeaI4cMEAgVCeBMKF6MWRDCRA==", - "dev": true - }, - "spdx-expression-parse": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/spdx-expression-parse/-/spdx-expression-parse-3.0.0.tgz", - "integrity": "sha512-Yg6D3XpRD4kkOmTpdgbUiEJFKghJH03fiC1OPll5h/0sO6neh2jqRDVHOQ4o/LMea0tgCkbMgea5ip/e+MkWyg==", - "dev": true, - "requires": { - "spdx-exceptions": "^2.1.0", - "spdx-license-ids": "^3.0.0" - } - }, - "spdx-license-ids": { - "version": "3.0.5", - "resolved": "https://registry.npmjs.org/spdx-license-ids/-/spdx-license-ids-3.0.5.tgz", - "integrity": "sha512-J+FWzZoynJEXGphVIS+XEh3kFSjZX/1i9gFBaWQcB+/tmpe2qUsSBABpcxqxnAxFdiUFEgAX1bjYGQvIZmoz9Q==", - "dev": true - }, - "spdy": { - "version": "3.4.7", - "resolved": "https://registry.npmjs.org/spdy/-/spdy-3.4.7.tgz", - "integrity": "sha1-Qv9B7OXMD5mjpsKKq7c/XDsDrLw=", - "dev": true, - "requires": { - "debug": "^2.6.8", - "handle-thing": "^1.2.5", - "http-deceiver": "^1.2.7", - "safe-buffer": "^5.0.1", - "select-hose": "^2.0.0", - "spdy-transport": "^2.0.18" - } - }, - "spdy-transport": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/spdy-transport/-/spdy-transport-2.1.1.tgz", - "integrity": "sha512-q7D8c148escoB3Z7ySCASadkegMmUZW8Wb/Q1u0/XBgDKMO880rLQDj8Twiew/tYi7ghemKUi/whSYOwE17f5Q==", - "dev": true, - "requires": { - "debug": "^2.6.8", - "detect-node": "^2.0.3", - "hpack.js": "^2.1.6", - "obuf": "^1.1.1", - "readable-stream": "^2.2.9", - "safe-buffer": "^5.0.1", - "wbuf": "^1.7.2" - } - }, - "split-string": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/split-string/-/split-string-3.1.0.tgz", - "integrity": "sha512-NzNVhJDYpwceVVii8/Hu6DKfD2G+NrQHlS/V/qgv763EYudVwEcMQNxd2lh+0VrUByXN/oJkl5grOhYWvQUYiw==", - "dev": true, - "requires": { - "extend-shallow": "^3.0.0" - } - }, - "sprintf-js": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/sprintf-js/-/sprintf-js-1.0.3.tgz", - "integrity": "sha1-BOaSb2YolTVPPdAVIDYzuFcpfiw=", - "dev": true - }, - "sshpk": { - "version": "1.16.1", - "resolved": "https://registry.npmjs.org/sshpk/-/sshpk-1.16.1.tgz", - "integrity": "sha512-HXXqVUq7+pcKeLqqZj6mHFUMvXtOJt1uoUx09pFW6011inTMxqI8BA8PM95myrIyyKwdnzjdFjLiE6KBPVtJIg==", - "dev": true, - "requires": { - "asn1": "~0.2.3", - "assert-plus": "^1.0.0", - "bcrypt-pbkdf": "^1.0.0", - "dashdash": "^1.12.0", - "ecc-jsbn": "~0.1.1", - "getpass": "^0.1.1", - "jsbn": "~0.1.0", - "safer-buffer": "^2.0.2", - "tweetnacl": "~0.14.0" - } - }, - "static-extend": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/static-extend/-/static-extend-0.1.2.tgz", - "integrity": "sha1-YICcOcv/VTNyJv1eC1IPNB8ftcY=", - "dev": true, - "requires": { - "define-property": "^0.2.5", - "object-copy": "^0.1.0" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - } - } - }, - "statuses": { - "version": "1.5.0", - "resolved": "https://registry.npmjs.org/statuses/-/statuses-1.5.0.tgz", - "integrity": "sha1-Fhx9rBd2Wf2YEfQ3cfqZOBR4Yow=", - "dev": true - }, - "stdout-stream": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/stdout-stream/-/stdout-stream-1.4.1.tgz", - "integrity": "sha512-j4emi03KXqJWcIeF8eIXkjMFN1Cmb8gUlDYGeBALLPo5qdyTfA9bOtl8m33lRoC+vFMkP3gl0WsDr6+gzxbbTA==", - "dev": true, - "requires": { - "readable-stream": "^2.0.1" - } - }, - "stream-browserify": { - "version": "2.0.2", - "resolved": "https://registry.npmjs.org/stream-browserify/-/stream-browserify-2.0.2.tgz", - "integrity": "sha512-nX6hmklHs/gr2FuxYDltq8fJA1GDlxKQCz8O/IM4atRqBH8OORmBNgfvW5gG10GT/qQ9u0CzIvr2X5Pkt6ntqg==", - "dev": true, - "requires": { - "inherits": "~2.0.1", - "readable-stream": "^2.0.2" - } - }, - "stream-http": { - "version": "2.8.3", - "resolved": "https://registry.npmjs.org/stream-http/-/stream-http-2.8.3.tgz", - "integrity": "sha512-+TSkfINHDo4J+ZobQLWiMouQYB+UVYFttRA94FpEzzJ7ZdqcL4uUUQ7WkdkI4DSozGmgBUE/a47L+38PenXhUw==", - "dev": true, - "requires": { - "builtin-status-codes": "^3.0.0", - "inherits": "^2.0.1", - "readable-stream": "^2.3.6", - "to-arraybuffer": "^1.0.0", - "xtend": "^4.0.0" - } - }, - "strict-uri-encode": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/strict-uri-encode/-/strict-uri-encode-1.1.0.tgz", - "integrity": "sha1-J5siXfHVgrH1TmWt3UNS4Y+qBxM=", - "dev": true - }, - "string-width": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/string-width/-/string-width-1.0.2.tgz", - "integrity": "sha1-EYvfW4zcUaKn5w0hHgfisLmxB9M=", - "dev": true, - "requires": { - "code-point-at": "^1.0.0", - "is-fullwidth-code-point": "^1.0.0", - "strip-ansi": "^3.0.0" - } - }, - "string_decoder": { - "version": "1.1.1", - "resolved": "https://registry.npmjs.org/string_decoder/-/string_decoder-1.1.1.tgz", - "integrity": "sha512-n/ShnvDi6FHbbVfviro+WojiFzv+s8MPMHBczVePfUpDJLwoLT0ht1l4YwBCbi8pJAveEEdnkHyPyTP/mzRfwg==", - "dev": true, - "requires": { - "safe-buffer": "~5.1.0" - } - }, - "strip-ansi": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/strip-ansi/-/strip-ansi-3.0.1.tgz", - "integrity": "sha1-ajhfuIU9lS1f8F0Oiq+UJ43GPc8=", - "dev": true, - "requires": { - "ansi-regex": "^2.0.0" - } - }, - "strip-bom": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/strip-bom/-/strip-bom-2.0.0.tgz", - "integrity": "sha1-YhmoVhZSBJHzV4i9vxRHqZx+aw4=", - "dev": true, - "requires": { - "is-utf8": "^0.2.0" - } - }, - "strip-indent": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/strip-indent/-/strip-indent-1.0.1.tgz", - "integrity": "sha1-DHlipq3vp7vUrDZkYKY4VSrhoKI=", - "dev": true, - "requires": { - "get-stdin": "^4.0.1" - } - }, - "style-loader": { - "version": "0.16.1", - "resolved": "https://registry.npmjs.org/style-loader/-/style-loader-0.16.1.tgz", - "integrity": "sha1-UOMlJY1OeEId2WgGNrQehmFZXRA=", - "dev": true, - "requires": { - "loader-utils": "^1.0.2" - } - }, - "supports-color": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-2.0.0.tgz", - "integrity": "sha1-U10EXOa2Nj+kARcIRimZXp3zJMc=", - "dev": true - }, - "svgo": { - "version": "0.7.2", - "resolved": "https://registry.npmjs.org/svgo/-/svgo-0.7.2.tgz", - "integrity": "sha1-n1dyQTlSE1xv779Ar+ak+qiLS7U=", - "dev": true, - "requires": { - "coa": "~1.0.1", - "colors": "~1.1.2", - "csso": "~2.3.1", - "js-yaml": "~3.7.0", - "mkdirp": "~0.5.1", - "sax": "~1.2.1", - "whet.extend": "~0.9.9" - }, - "dependencies": { - "colors": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/colors/-/colors-1.1.2.tgz", - "integrity": "sha1-FopHAXVran9RoSzgyXv6KMCE7WM=", - "dev": true - } - } - }, - "tapable": { - "version": "0.2.9", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-0.2.9.tgz", - "integrity": "sha512-2wsvQ+4GwBvLPLWsNfLCDYGsW6xb7aeC6utq2Qh0PFwgEy7K7dsma9Jsmb2zSQj7GvYAyUGSntLtsv++GmgL1A==", - "dev": true - }, - "tar": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/tar/-/tar-2.2.2.tgz", - "integrity": "sha512-FCEhQ/4rE1zYv9rYXJw/msRqsnmlje5jHP6huWeBZ704jUTy02c5AZyWujpMR1ax6mVw9NyJMfuK2CMDWVIfgA==", - "dev": true, - "requires": { - "block-stream": "*", - "fstream": "^1.0.12", - "inherits": "2" - } - }, - "thread-loader": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/thread-loader/-/thread-loader-1.1.2.tgz", - "integrity": "sha512-FZFxv0eINrt2VmDZIX3lt2WDX2UWDWCBsCkZtOZV413IhfFfdPgeqQlG6534gBz4hgiWvUitracrI3xfVrpe0w==", - "dev": true, - "requires": { - "async": "^2.3.0", - "loader-runner": "^2.3.0", - "loader-utils": "^1.1.0" - } - }, - "through": { - "version": "2.3.8", - "resolved": "https://registry.npmjs.org/through/-/through-2.3.8.tgz", - "integrity": "sha1-DdTJ/6q8NXlgsbckEV1+Doai4fU=", - "dev": true - }, - "time-stamp": { - "version": "2.2.0", - "resolved": "https://registry.npmjs.org/time-stamp/-/time-stamp-2.2.0.tgz", - "integrity": "sha512-zxke8goJQpBeEgD82CXABeMh0LSJcj7CXEd0OHOg45HgcofF7pxNwZm9+RknpxpDhwN4gFpySkApKfFYfRQnUA==", - "dev": true - }, - "timers-browserify": { - "version": "2.0.11", - "resolved": "https://registry.npmjs.org/timers-browserify/-/timers-browserify-2.0.11.tgz", - "integrity": "sha512-60aV6sgJ5YEbzUdn9c8kYGIqOubPoUdqQCul3SBAsRCZ40s6Y5cMcrW4dt3/k/EsbLVJNl9n6Vz3fTc+k2GeKQ==", - "dev": true, - "requires": { - "setimmediate": "^1.0.4" - } - }, - "tmp": { - "version": "0.0.31", - "resolved": "https://registry.npmjs.org/tmp/-/tmp-0.0.31.tgz", - "integrity": "sha1-jzirlDjhcxXl29izZX6L+yd65Kc=", - "dev": true, - "requires": { - "os-tmpdir": "~1.0.1" - } - }, - "to-array": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/to-array/-/to-array-0.1.4.tgz", - "integrity": "sha1-F+bBH3PdTz10zaek/zI46a2b+JA=", - "dev": true - }, - "to-arraybuffer": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/to-arraybuffer/-/to-arraybuffer-1.0.1.tgz", - "integrity": "sha1-fSKbH8xjfkZsoIEYCDanqr/4P0M=", - "dev": true - }, - "to-object-path": { - "version": "0.3.0", - "resolved": "https://registry.npmjs.org/to-object-path/-/to-object-path-0.3.0.tgz", - "integrity": "sha1-KXWIt7Dn4KwI4E5nL4XB9JmeF68=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - }, - "to-regex": { - "version": "3.0.2", - "resolved": "https://registry.npmjs.org/to-regex/-/to-regex-3.0.2.tgz", - "integrity": "sha512-FWtleNAtZ/Ki2qtqej2CXTOayOH9bHDQF+Q48VpWyDXjbYxA4Yz8iDB31zXOBUlOHHKidDbqGVrTUvQMPmBGBw==", - "dev": true, - "requires": { - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "regex-not": "^1.0.2", - "safe-regex": "^1.1.0" - } - }, - "to-regex-range": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/to-regex-range/-/to-regex-range-2.1.1.tgz", - "integrity": "sha1-fIDBe53+vlmeJzZ+DU3VWQFB2zg=", - "dev": true, - "requires": { - "is-number": "^3.0.0", - "repeat-string": "^1.6.1" - }, - "dependencies": { - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - } - } - } - }, - "toidentifier": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/toidentifier/-/toidentifier-1.0.0.tgz", - "integrity": "sha512-yaOH/Pk/VEhBWWTlhI+qXxDFXlejDGcQipMlyxda9nthulaxLZUNcUqFxokp0vcYnvteJln5FNQDRrxj3YcbVw==", - "dev": true - }, - "topojson-client": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/topojson-client/-/topojson-client-3.0.1.tgz", - "integrity": "sha512-rfGGzyqefpxOaxvV9OTF9t+1g+WhjGEbAIuCcmKYrQkxr0nttjMMyzZsK+NhLW4cTl2g1bz2jQczPUtEshpbVQ==", - "requires": { - "commander": "2" - } - }, - "tough-cookie": { - "version": "2.4.3", - "resolved": "https://registry.npmjs.org/tough-cookie/-/tough-cookie-2.4.3.tgz", - "integrity": "sha512-Q5srk/4vDM54WJsJio3XNn6K2sCG+CQ8G5Wz6bZhRZoAe/+TxjWB/GlFAnYEbkYVlON9FMk/fE3h2RLpPXo4lQ==", - "dev": true, - "requires": { - "psl": "^1.1.24", - "punycode": "^1.4.1" - }, - "dependencies": { - "punycode": { - "version": "1.4.1", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.4.1.tgz", - "integrity": "sha1-wNWmOycYgArY4esPpSachN1BhF4=", - "dev": true - } - } - }, - "trim-newlines": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/trim-newlines/-/trim-newlines-1.0.0.tgz", - "integrity": "sha1-WIeWa7WCpFA6QetST301ARgVphM=", - "dev": true - }, - "true-case-path": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/true-case-path/-/true-case-path-1.0.3.tgz", - "integrity": "sha512-m6s2OdQe5wgpFMC+pAJ+q9djG82O2jcHPOI6RNg1yy9rCYR+WD6Nbpl32fDpfC56nirdRy+opFa/Vk7HYhqaew==", - "dev": true, - "requires": { - "glob": "^7.1.2" - } - }, - "ts-loader": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/ts-loader/-/ts-loader-4.0.1.tgz", - "integrity": "sha512-dzgQnkAGY4sLqVw6t4LJH8FGR8j0zsPmC1Ff2ChzKhYO+hgWJkSEyrHTlSSZqn5oWr0Po7q/IRoeq8O4SNKQ9A==", - "dev": true, - "requires": { - "chalk": "^2.3.0", - "enhanced-resolve": "^4.0.0", - "loader-utils": "^1.0.2", - "micromatch": "^3.1.4", - "semver": "^5.0.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "enhanced-resolve": { - "version": "4.1.1", - "resolved": "https://registry.npmjs.org/enhanced-resolve/-/enhanced-resolve-4.1.1.tgz", - "integrity": "sha512-98p2zE+rL7/g/DzMHMTF4zZlCgeVdJ7yr6xzEpJRYwFYrGi9ANdn5DnJURg6RpBkyk60XYDnWIv51VfIhfNGuA==", - "dev": true, - "requires": { - "graceful-fs": "^4.1.2", - "memory-fs": "^0.5.0", - "tapable": "^1.0.0" - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - }, - "memory-fs": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/memory-fs/-/memory-fs-0.5.0.tgz", - "integrity": "sha512-jA0rdU5KoQMC0e6ppoNRtpp6vjFq6+NY7r8hywnC7V+1Xj/MtHwGIbB1QaK/dunyjWteJzmkpd7ooeWg10T7GA==", - "dev": true, - "requires": { - "errno": "^0.1.3", - "readable-stream": "^2.0.1" - } - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - }, - "tapable": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/tapable/-/tapable-1.1.3.tgz", - "integrity": "sha512-4WK/bYZmj8xLr+HUCODHGF1ZFzsYffasLUgEiMBY4fgtltdO6B4WJtlSbPaDTLpYTcGVwM2qLnFTICEcNxs3kA==", - "dev": true - } - } - }, - "tslib": { - "version": "1.9.0", - "resolved": "https://registry.npmjs.org/tslib/-/tslib-1.9.0.tgz", - "integrity": "sha512-f/qGG2tUkrISBlQZEjEqoZ3B2+npJjIf04H1wuAv9iA8i04Icp+61KRXxFdha22670NJopsZCIjhC3SnjPRKrQ==" - }, - "tslint": { - "version": "5.9.1", - "resolved": "https://registry.npmjs.org/tslint/-/tslint-5.9.1.tgz", - "integrity": "sha1-ElX4ej/1frCw4fDmEKi0dIBGya4=", - "dev": true, - "requires": { - "babel-code-frame": "^6.22.0", - "builtin-modules": "^1.1.1", - "chalk": "^2.3.0", - "commander": "^2.12.1", - "diff": "^3.2.0", - "glob": "^7.1.1", - "js-yaml": "^3.7.0", - "minimatch": "^3.0.4", - "resolve": "^1.3.2", - "semver": "^5.3.0", - "tslib": "^1.8.0", - "tsutils": "^2.12.1" - }, - "dependencies": { - "ansi-styles": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/ansi-styles/-/ansi-styles-3.2.1.tgz", - "integrity": "sha512-VT0ZI6kZRdTh8YyJw3SMbYm/u+NqfsAxEpWO0Pf9sq8/e94WxxOpPKx9FR1FlyCtOVDNOQ+8ntlqFxiRc+r5qA==", - "dev": true, - "requires": { - "color-convert": "^1.9.0" - } - }, - "chalk": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/chalk/-/chalk-2.4.2.tgz", - "integrity": "sha512-Mti+f9lpJNcwF4tWV8/OrTTtF1gZi+f8FqlyAdouralcFWFQWF2+NgCHShjkCb+IFBLq9buZwE1xckQU4peSuQ==", - "dev": true, - "requires": { - "ansi-styles": "^3.2.1", - "escape-string-regexp": "^1.0.5", - "supports-color": "^5.3.0" - } - }, - "has-flag": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/has-flag/-/has-flag-3.0.0.tgz", - "integrity": "sha1-tdRU3CGZriJWmfNGfloH87lVuv0=", - "dev": true - }, - "semver": { - "version": "5.7.1", - "resolved": "https://registry.npmjs.org/semver/-/semver-5.7.1.tgz", - "integrity": "sha512-sauaDf/PZdVgrLTNYHRtpXa1iRiKcaebiKQ1BJdpQlWH2lCvexQdX55snPFyK7QzpudqbCI0qXFfOasHdyNDGQ==", - "dev": true - }, - "supports-color": { - "version": "5.5.0", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-5.5.0.tgz", - "integrity": "sha512-QjVjwdXIt408MIiAqCX4oUKsgU2EqAGzs2Ppkm4aQYbjm+ZEWEcW4SfFNTr4uMNZma0ey4f5lgLrkB0aX0QMow==", - "dev": true, - "requires": { - "has-flag": "^3.0.0" - } - } - } - }, - "tsutils": { - "version": "2.29.0", - "resolved": "https://registry.npmjs.org/tsutils/-/tsutils-2.29.0.tgz", - "integrity": "sha512-g5JVHCIJwzfISaXpXE1qvNalca5Jwob6FjI4AoPlqMusJ6ftFE7IkkFoMhVLRgK+4Kx3gkzb8UZK5t5yTTvEmA==", - "dev": true, - "requires": { - "tslib": "^1.8.1" - } - }, - "tty-browserify": { - "version": "0.0.0", - "resolved": "https://registry.npmjs.org/tty-browserify/-/tty-browserify-0.0.0.tgz", - "integrity": "sha1-oVe6QC2iTpv5V/mqadUk7tQpAaY=", - "dev": true - }, - "tunnel-agent": { - "version": "0.6.0", - "resolved": "https://registry.npmjs.org/tunnel-agent/-/tunnel-agent-0.6.0.tgz", - "integrity": "sha1-J6XeoGs2sEoKmWZ3SykIaPD8QP0=", - "dev": true, - "requires": { - "safe-buffer": "^5.0.1" - } - }, - "tweetnacl": { - "version": "0.14.5", - "resolved": "https://registry.npmjs.org/tweetnacl/-/tweetnacl-0.14.5.tgz", - "integrity": "sha1-WuaBd/GS1EViadEIr6k/+HQ/T2Q=", - "dev": true - }, - "type-is": { - "version": "1.6.18", - "resolved": "https://registry.npmjs.org/type-is/-/type-is-1.6.18.tgz", - "integrity": "sha512-TkRKr9sUTxEH8MdfuCSP7VizJyzRNMjj2J2do2Jr3Kym598JVdEksuzPQCnlFPW4ky9Q+iA+ma9BGm06XQBy8g==", - "dev": true, - "requires": { - "media-typer": "0.3.0", - "mime-types": "~2.1.24" - } - }, - "typedoc": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/typedoc/-/typedoc-0.11.1.tgz", - "integrity": "sha512-jdNIoHm5wkZqxQTe/g9AQ3LKnZyrzHXqu6A/c9GUOeJyBWLxNr7/Dm3rwFvLksuxRNwTvY/0HRDU9sJTa9WQSg==", - "dev": true, - "requires": { - "@types/fs-extra": "5.0.1", - "@types/handlebars": "4.0.36", - "@types/highlight.js": "9.12.2", - "@types/lodash": "4.14.104", - "@types/marked": "0.3.0", - "@types/minimatch": "3.0.3", - "@types/shelljs": "0.7.8", - "fs-extra": "^5.0.0", - "handlebars": "^4.0.6", - "highlight.js": "^9.0.0", - "lodash": "^4.17.5", - "marked": "^0.3.17", - "minimatch": "^3.0.0", - "progress": "^2.0.0", - "shelljs": "^0.8.1", - "typedoc-default-themes": "^0.5.0", - "typescript": "2.7.2" - }, - "dependencies": { - "@types/handlebars": { - "version": "4.0.36", - "resolved": "https://registry.npmjs.org/@types/handlebars/-/handlebars-4.0.36.tgz", - "integrity": "sha512-LjNiTX7TY7wtuC6y3QwC93hKMuqYhgV9A1uXBKNvZtVC8ZvyWAjZkJ5BvT0K7RKqORRYRLMrqCxpw5RgS+MdrQ==", - "dev": true - }, - "marked": { - "version": "0.3.19", - "resolved": "https://registry.npmjs.org/marked/-/marked-0.3.19.tgz", - "integrity": "sha512-ea2eGWOqNxPcXv8dyERdSr/6FmzvWwzjMxpfGB/sbMccXoct+xY+YukPD+QTUZwyvK7BZwcr4m21WBOW41pAkg==", - "dev": true - }, - "typescript": { - "version": "2.7.2", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.7.2.tgz", - "integrity": "sha512-p5TCYZDAO0m4G344hD+wx/LATebLWZNkkh2asWUFqSsD2OrDNhbAHuSjobrmsUmdzjJjEeZVU9g1h3O6vpstnw==", - "dev": true - } - } - }, - "typedoc-default-themes": { - "version": "0.5.0", - "resolved": "https://registry.npmjs.org/typedoc-default-themes/-/typedoc-default-themes-0.5.0.tgz", - "integrity": "sha1-bcJDPnjti+qOiHo6zeLzF4W9Yic=", - "dev": true - }, - "typescript": { - "version": "2.8.1", - "resolved": "https://registry.npmjs.org/typescript/-/typescript-2.8.1.tgz", - "integrity": "sha512-Ao/f6d/4EPLq0YwzsQz8iXflezpTkQzqAyenTiw4kCUGr1uPiFLC3+fZ+gMZz6eeI/qdRUqvC+HxIJzUAzEFdg==", - "dev": true - }, - "uglify-js": { - "version": "3.4.10", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-3.4.10.tgz", - "integrity": "sha512-Y2VsbPVs0FIshJztycsO2SfPk7/KAF/T72qzv9u5EpQ4kB2hQoHlhNQTsNyy6ul7lQtqJN/AoWeS23OzEiEFxw==", - "dev": true, - "requires": { - "commander": "~2.19.0", - "source-map": "~0.6.1" - }, - "dependencies": { - "commander": { - "version": "2.19.0", - "resolved": "https://registry.npmjs.org/commander/-/commander-2.19.0.tgz", - "integrity": "sha512-6tvAOO+D6OENvRAh524Dh9jcfKTYDQAqvqezbCW82xj5X0pSrcpxtvRKHLG0yBY6SD7PSDrJaj+0AiOcKVd1Xg==", - "dev": true - }, - "source-map": { - "version": "0.6.1", - "resolved": "https://registry.npmjs.org/source-map/-/source-map-0.6.1.tgz", - "integrity": "sha512-UjgapumWlbMhkBgzT7Ykc5YXUT46F0iKu8SGXq0bcwP5dz/h0Plj6enJqjz1Zbq2l5WaqYnrVbwWOWMyF3F47g==", - "dev": true - } - } - }, - "uglify-to-browserify": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/uglify-to-browserify/-/uglify-to-browserify-1.0.2.tgz", - "integrity": "sha1-bgkk1r2mta/jSeOabWMoUKD4grc=", - "dev": true, - "optional": true - }, - "ultron": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/ultron/-/ultron-1.0.2.tgz", - "integrity": "sha1-rOEWq1V80Zc4ak6I9GhTeMiy5Po=", - "dev": true - }, - "union-value": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/union-value/-/union-value-1.0.1.tgz", - "integrity": "sha512-tJfXmxMeWYnczCVs7XAEvIV7ieppALdyepWMkHkwciRpZraG/xwT+s2JN8+pr1+8jCRf80FFzvr+MpQeeoF4Xg==", - "dev": true, - "requires": { - "arr-union": "^3.1.0", - "get-value": "^2.0.6", - "is-extendable": "^0.1.1", - "set-value": "^2.0.1" - } - }, - "uniq": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/uniq/-/uniq-1.0.1.tgz", - "integrity": "sha1-sxxa6CVIRKOoKBVBzisEuGWnNP8=", - "dev": true - }, - "uniqs": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/uniqs/-/uniqs-2.0.0.tgz", - "integrity": "sha1-/+3ks2slKQaW5uFl1KWe25mOawI=", - "dev": true - }, - "universalify": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/universalify/-/universalify-0.1.2.tgz", - "integrity": "sha512-rBJeI5CXAlmy1pV+617WB9J63U6XcazHHF2f2dbJix4XzpUF0RS3Zbj0FGIOCAva5P/d/GBOYaACQ1w+0azUkg==", - "dev": true - }, - "unpipe": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unpipe/-/unpipe-1.0.0.tgz", - "integrity": "sha1-sr9O6FFKrmFltIF4KdIbLvSZBOw=", - "dev": true - }, - "unset-value": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/unset-value/-/unset-value-1.0.0.tgz", - "integrity": "sha1-g3aHP30jNRef+x5vw6jtDfyKtVk=", - "dev": true, - "requires": { - "has-value": "^0.3.1", - "isobject": "^3.0.0" - }, - "dependencies": { - "has-value": { - "version": "0.3.1", - "resolved": "https://registry.npmjs.org/has-value/-/has-value-0.3.1.tgz", - "integrity": "sha1-ex9YutpiyoJ+wKIHgCVlSEWZXh8=", - "dev": true, - "requires": { - "get-value": "^2.0.3", - "has-values": "^0.1.4", - "isobject": "^2.0.0" - }, - "dependencies": { - "isobject": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-2.1.0.tgz", - "integrity": "sha1-8GVWEJaj8dou9GJy+BXIQNh+DIk=", - "dev": true, - "requires": { - "isarray": "1.0.0" - } - } - } - }, - "has-values": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/has-values/-/has-values-0.1.4.tgz", - "integrity": "sha1-bWHeldkd/Km5oCCJrThL/49it3E=", - "dev": true - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - } - } - }, - "upath": { - "version": "1.2.0", - "resolved": "https://registry.npmjs.org/upath/-/upath-1.2.0.tgz", - "integrity": "sha512-aZwGpamFO61g3OlfT7OQCHqhGnW43ieH9WZeP7QxN/G/jS4jfqUkZxoryvJgVPEcrl5NL/ggHsSmLMHuH64Lhg==", - "dev": true - }, - "upper-case": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/upper-case/-/upper-case-1.1.3.tgz", - "integrity": "sha1-9rRQHC7EzdJrp4vnIilh3ndiFZg=", - "dev": true - }, - "uri-js": { - "version": "4.2.2", - "resolved": "https://registry.npmjs.org/uri-js/-/uri-js-4.2.2.tgz", - "integrity": "sha512-KY9Frmirql91X2Qgjry0Wd4Y+YTdrdZheS8TFwvkbLWf/G5KNJDCh6pKL5OZctEW4+0Baa5idK2ZQuELRwPznQ==", - "dev": true, - "requires": { - "punycode": "^2.1.0" - } - }, - "urix": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/urix/-/urix-0.1.0.tgz", - "integrity": "sha1-2pN/emLiH+wf0Y1Js1wpNQZ6bHI=", - "dev": true - }, - "url": { - "version": "0.11.0", - "resolved": "https://registry.npmjs.org/url/-/url-0.11.0.tgz", - "integrity": "sha1-ODjpfPxgUh63PFJajlW/3Z4uKPE=", - "dev": true, - "requires": { - "punycode": "1.3.2", - "querystring": "0.2.0" - }, - "dependencies": { - "punycode": { - "version": "1.3.2", - "resolved": "https://registry.npmjs.org/punycode/-/punycode-1.3.2.tgz", - "integrity": "sha1-llOgNvt8HuQjQvIyXM7v6jkmxI0=", - "dev": true - } - } - }, - "url-loader": { - "version": "0.5.8", - "resolved": "https://registry.npmjs.org/url-loader/-/url-loader-0.5.8.tgz", - "integrity": "sha1-uRg7GAHg+EdxhnNnMEC8ncHHFcU=", - "dev": true, - "requires": { - "loader-utils": "^1.0.2", - "mime": "1.3.x" - }, - "dependencies": { - "mime": { - "version": "1.3.6", - "resolved": "https://registry.npmjs.org/mime/-/mime-1.3.6.tgz", - "integrity": "sha1-WR2E02U6awtKO5343lqoEI5y5eA=", - "dev": true - } - } - }, - "url-parse": { - "version": "1.4.7", - "resolved": "https://registry.npmjs.org/url-parse/-/url-parse-1.4.7.tgz", - "integrity": "sha512-d3uaVyzDB9tQoSXFvuSUNFibTd9zxd2bkVrDRvF5TmvWWQwqE4lgYJ5m+x1DbecWkw+LK4RNl2CU1hHuOKPVlg==", - "dev": true, - "requires": { - "querystringify": "^2.1.1", - "requires-port": "^1.0.0" - } - }, - "use": { - "version": "3.1.1", - "resolved": "https://registry.npmjs.org/use/-/use-3.1.1.tgz", - "integrity": "sha512-cwESVXlO3url9YWlFW/TA9cshCEhtu7IKJ/p5soJ/gGpj7vbvFrAY/eIioQ6Dw23KjZhYgiIo8HOs1nQ2vr/oQ==", - "dev": true - }, - "useragent": { - "version": "2.3.0", - "resolved": "https://registry.npmjs.org/useragent/-/useragent-2.3.0.tgz", - "integrity": "sha512-4AoH4pxuSvHCjqLO04sU6U/uE65BYza8l/KKBS0b0hnUPWi+cQ2BpeTEwejCSx9SPV5/U03nniDTrWx5NrmKdw==", - "dev": true, - "requires": { - "lru-cache": "4.1.x", - "tmp": "0.0.x" - } - }, - "util": { - "version": "0.11.1", - "resolved": "https://registry.npmjs.org/util/-/util-0.11.1.tgz", - "integrity": "sha512-HShAsny+zS2TZfaXxD9tYj4HQGlBezXZMZuM/S5PKLLoZkShZiGk9o5CzukI1LVHZvjdvZ2Sj1aW/Ndn2NB/HQ==", - "dev": true, - "requires": { - "inherits": "2.0.3" - }, - "dependencies": { - "inherits": { - "version": "2.0.3", - "resolved": "https://registry.npmjs.org/inherits/-/inherits-2.0.3.tgz", - "integrity": "sha1-Yzwsg+PaQqUC9SRmAiSA9CCCYd4=", - "dev": true - } - } - }, - "util-deprecate": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/util-deprecate/-/util-deprecate-1.0.2.tgz", - "integrity": "sha1-RQ1Nyfpw3nMnYvvS1KKJgUGaDM8=", - "dev": true - }, - "utils-merge": { - "version": "1.0.1", - "resolved": "https://registry.npmjs.org/utils-merge/-/utils-merge-1.0.1.tgz", - "integrity": "sha1-n5VxD1CiZ5R7LMwSR0HBAoQn5xM=", - "dev": true - }, - "uuid": { - "version": "3.3.3", - "resolved": "https://registry.npmjs.org/uuid/-/uuid-3.3.3.tgz", - "integrity": "sha512-pW0No1RGHgzlpHJO1nsVrHKpOEIxkGg1xB+v0ZmdNH5OAeAwzAVrCnI2/6Mtx+Uys6iaylxa+D3g4j63IKKjSQ==", - "dev": true - }, - "validate-npm-package-license": { - "version": "3.0.4", - "resolved": "https://registry.npmjs.org/validate-npm-package-license/-/validate-npm-package-license-3.0.4.tgz", - "integrity": "sha512-DpKm2Ui/xN7/HQKCtpZxoRWBhZ9Z0kqtygG8XCgNQ8ZlDnxuQmWhj566j8fN4Cu3/JmbhsDo7fcAJq4s9h27Ew==", - "dev": true, - "requires": { - "spdx-correct": "^3.0.0", - "spdx-expression-parse": "^3.0.0" - } - }, - "vary": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/vary/-/vary-1.1.2.tgz", - "integrity": "sha1-IpnwLG3tMNSllhsLn3RSShj2NPw=", - "dev": true - }, - "vega-canvas": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/vega-canvas/-/vega-canvas-1.2.1.tgz", - "integrity": "sha512-k/S3EPeJ37D7fYDhv4sEg7fNWVpLheQY7flfLyAmJU7aSwCMgw8cZJi0CKHchJeculssfH+41NCqvRB1QtaJnw==" - }, - "vega-crossfilter": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/vega-crossfilter/-/vega-crossfilter-2.0.0.tgz", - "integrity": "sha512-haSPtAcSv3TjwAQHLAv8xVB/GM1+lWgFIPmarPX6No/Mq0hewwKuYm2xDlp6zbKKyuDvpW3GzNmLMJfLvzat8A==", - "requires": { - "d3-array": "1", - "vega-dataflow": "3", - "vega-util": "1" - }, - "dependencies": { - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - } - } - }, - "vega-dataflow": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/vega-dataflow/-/vega-dataflow-3.1.0.tgz", - "integrity": "sha512-ZQkXqtaNik2RijWya1xMq4zWKHpdxz139JE/l8o9KCGgebEGqh8z4GGpGi0pqROqnGjbcy7fQrDFw2oceY8oyQ==", - "requires": { - "vega-loader": "2", - "vega-util": "1" - } - }, - "vega-encode": { - "version": "2.0.8", - "resolved": "https://registry.npmjs.org/vega-encode/-/vega-encode-2.0.8.tgz", - "integrity": "sha512-R7Zg9RHQkAVyFMUJMbNvryB/2+eaHejhOZ8N/rYDPETwIQYPRzepZ+kF+NOVFXWt5zHccqHHL/go9WlE4xYMVA==", - "requires": { - "d3-array": "1", - "d3-format": "1", - "d3-interpolate": "1", - "vega-dataflow": "3", - "vega-scale": "^2.1", - "vega-util": "1" - }, - "dependencies": { - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - } - } - }, - "vega-event-selector": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/vega-event-selector/-/vega-event-selector-2.0.1.tgz", - "integrity": "sha512-FGU1PefYhW9An6zVs6TE5f/XGYsIispxFErG/p9KThxL22IC90WVZzMQXKN9M8OcARq5OyWjHg3qa9Qp/Z6OJw==" - }, - "vega-expression": { - "version": "2.4.0", - "resolved": "https://registry.npmjs.org/vega-expression/-/vega-expression-2.4.0.tgz", - "integrity": "sha512-Ti2rqnXscu281omgAukd37yDcw2AjETshB8tWcTOciFPUkfLQKwL6d1UIuIq4RkWuKDTU9Htd2UCpvFDu+O1eQ==", - "requires": { - "vega-util": "^1.7.0" - } - }, - "vega-force": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/vega-force/-/vega-force-2.0.0.tgz", - "integrity": "sha512-pQ+r2E7kVRofo2+63jHv5P4qBcCoXHd6asi5HQ9zt4O9cncQ2HTmIfPPWpa6Cy4r8sBWXZHh80nyTuaV6awn8A==", - "requires": { - "d3-force": "1", - "vega-dataflow": "3", - "vega-util": "1" - } - }, - "vega-geo": { - "version": "2.2.2", - "resolved": "https://registry.npmjs.org/vega-geo/-/vega-geo-2.2.2.tgz", - "integrity": "sha512-YD9RJMZPxPYjbqAvhLW1K1tQmzniwAkQMj7CyfFb3Gu70rX49ncf8Meu8NESHP0vUe9zWEFHEA/FrpaXgxuF7w==", - "requires": { - "d3-array": "1", - "d3-contour": "1", - "d3-geo": "1", - "vega-dataflow": "3", - "vega-projection": "1", - "vega-util": "1" - }, - "dependencies": { - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - } - } - }, - "vega-hierarchy": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/vega-hierarchy/-/vega-hierarchy-2.1.2.tgz", - "integrity": "sha512-9I+/rRU7XLYGFa01dBgAA3QvWEzpLWYwGLgRnFmLkZmOn5YenaRB+2gNG9Zkju2hxGXIx/AEA/i+gGTRdHXn4Q==", - "requires": { - "d3-collection": "1", - "d3-hierarchy": "1", - "vega-dataflow": "^3.1", - "vega-util": "1" - } - }, - "vega-lib": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/vega-lib/-/vega-lib-3.2.1.tgz", - "integrity": "sha512-ufcPBsYyiDkyvw20lKZi/pAYFRVJNmsnpX+JyO+lvLUg2XjtChC7xNHI7htHI2AXk525F4zG/yHB2T9U97JdBQ==", - "requires": { - "vega-crossfilter": "2", - "vega-dataflow": "3", - "vega-encode": "2", - "vega-expression": "^2.3", - "vega-force": "2", - "vega-geo": "^2.2", - "vega-hierarchy": "^2.1", - "vega-loader": "2", - "vega-parser": "^2.5", - "vega-projection": "1", - "vega-runtime": "2", - "vega-scale": "^2.1", - "vega-scenegraph": "^2.3", - "vega-statistics": "^1.2", - "vega-transforms": "^1.2", - "vega-typings": "*", - "vega-util": "^1.7", - "vega-view": "^2.2", - "vega-view-transforms": "^1.2", - "vega-voronoi": "2", - "vega-wordcloud": "^2.1" - } - }, - "vega-loader": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/vega-loader/-/vega-loader-2.1.0.tgz", - "integrity": "sha512-rSLMaRnLqBvmqQqjB7/25fjm4KYxu+P5x3ONngTEpq5vPOk+SUTwVv7saIR1dVHPgaGri7Wsn+xn4kDV8dMJ+w==", - "requires": { - "d3-dsv": "1", - "d3-request": "1", - "d3-time-format": "2", - "topojson-client": "3", - "vega-util": "1" - } - }, - "vega-parser": { - "version": "2.7.0", - "resolved": "https://registry.npmjs.org/vega-parser/-/vega-parser-2.7.0.tgz", - "integrity": "sha512-i8J4F1CyADFz533FH1y6rfSp8BBszhvYjy4Cbse/fCbXJ3QyCwxil1OdA5AOl7/K7m+sSSEd985p0o/Cd3Kd5w==", - "requires": { - "d3-array": "1", - "d3-color": "1", - "d3-format": "1", - "d3-geo": "1", - "d3-time-format": "2", - "vega-dataflow": "3", - "vega-event-selector": "2", - "vega-expression": "2", - "vega-scale": "2", - "vega-scenegraph": "2", - "vega-statistics": "^1.2", - "vega-util": "^1.7" - }, - "dependencies": { - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - } - } - }, - "vega-projection": { - "version": "1.3.0", - "resolved": "https://registry.npmjs.org/vega-projection/-/vega-projection-1.3.0.tgz", - "integrity": "sha512-BFOc/XSVVW96WIAAyiUcppCeegniibiKGX0OLbGpQ5WIbeDHsbCXqnkeBpD5wsjvPXaiQRHTZ0PZ8VvCoCQV+g==", - "requires": { - "d3-geo": "^1.11.6" - } - }, - "vega-runtime": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/vega-runtime/-/vega-runtime-2.0.1.tgz", - "integrity": "sha512-IO4Rd75g2XAmQq3FCi7MqLUGM9CwLZRMeGsBftfjpYuWMgQUDK0xyIOD1qui/RzYVOiN/ENbnY6tPPKYPNhmtA==", - "requires": { - "vega-dataflow": "3", - "vega-util": "1" - } - }, - "vega-scale": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/vega-scale/-/vega-scale-2.1.1.tgz", - "integrity": "sha512-+Ag6366h/gqnrBtpWQpiyu0+ionPs/HBUPPZnsciidcrOB8sDpB9sU1ecz8nTw6rci05+VhDJeKwyRMHcMf7gQ==", - "requires": { - "d3-array": "1", - "d3-interpolate": "1", - "d3-scale": "2", - "d3-scale-chromatic": "^1.2", - "d3-time": "1", - "vega-util": "1" - }, - "dependencies": { - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - } - } - }, - "vega-scenegraph": { - "version": "2.5.1", - "resolved": "https://registry.npmjs.org/vega-scenegraph/-/vega-scenegraph-2.5.1.tgz", - "integrity": "sha512-1dinfcd7YBJtY5ttfCKpsL1w85Nz/OnVkaV3bmEb4LITcfASbDIVMmGAAjniS7V6Zmi6dM+t2EYN8VMDd7LnIQ==", - "requires": { - "d3-path": "^1.0.5", - "d3-shape": "^1.2.0", - "vega-canvas": "^1.0.1", - "vega-loader": "^2.1.0", - "vega-util": "^1.7.0" - } - }, - "vega-statistics": { - "version": "1.2.2", - "resolved": "https://registry.npmjs.org/vega-statistics/-/vega-statistics-1.2.2.tgz", - "integrity": "sha512-8izr76Ub5n7vSV+I72t07LOGpgynXN1/0Kbrxpw4LaPEHPG4OWORiZczEypL2VWWGXU8GBVaXHSlrJvyWujo9A==", - "requires": { - "d3-array": "^1.2.4" - } - }, - "vega-transforms": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/vega-transforms/-/vega-transforms-1.3.1.tgz", - "integrity": "sha512-Br5AouMJhJiT7WJ0CIeDMGSk/MT2i+6PogC/ufJUFnbaBQ9RlMTG+c25fmXwiKYZC02SmdUeNZF1xmSnhRTbLg==", - "requires": { - "d3-array": "1", - "vega-dataflow": "3", - "vega-statistics": "^1.2", - "vega-util": "1" - }, - "dependencies": { - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - } - } - }, - "vega-typings": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/vega-typings/-/vega-typings-0.2.17.tgz", - "integrity": "sha512-ebvLsbzFnkr7VM/Ir0l07enyLJMcaQeFyOaz9STvlyVH5kUkQZxURhCVPQT405u2IZ8CLCtJDawO7B0yLUsmDg==" - }, - "vega-util": { - "version": "1.7.0", - "resolved": "https://registry.npmjs.org/vega-util/-/vega-util-1.7.0.tgz", - "integrity": "sha512-IlmYqW0t3UP8AJX4QuOOm5cMPKPOUa8fSTcCvNkfVOR5zvMNFKCVhoZmJSXgcbEhkfboB+ysI2aaWOeW2kKBog==" - }, - "vega-view": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/vega-view/-/vega-view-2.3.2.tgz", - "integrity": "sha512-Q781vmfQxHlUneOtCd2wnQirIG0ABpd+Jku5n1PQDnnqE2y4KiVSDR2IINMJ1KHpsFkiIoRITD6T7XLGAo95hQ==", - "requires": { - "d3-array": "1", - "vega-dataflow": "3", - "vega-parser": "2", - "vega-runtime": "2", - "vega-scenegraph": "2", - "vega-util": "1" - }, - "dependencies": { - "d3-array": { - "version": "1.2.4", - "resolved": "https://registry.npmjs.org/d3-array/-/d3-array-1.2.4.tgz", - "integrity": "sha512-KHW6M86R+FUPYGb3R5XiYjXPq7VzwxZ22buHhAEVG5ztoEcZZMLov530mmccaqA1GghZArjQV46fuc8kUqhhHw==" - } - } - }, - "vega-view-transforms": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/vega-view-transforms/-/vega-view-transforms-1.2.1.tgz", - "integrity": "sha512-AAxMoCyg/JNR7Q5mI8u3l4g7bheUH34eRPUrDZ+3ae1a9nJzlvX3sPQwYqcrOj6q39djOYvnSVNw/cTBsRwr0w==", - "requires": { - "vega-dataflow": "3", - "vega-scenegraph": "2", - "vega-util": "1" - } - }, - "vega-voronoi": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/vega-voronoi/-/vega-voronoi-2.0.0.tgz", - "integrity": "sha512-qM6f4RMebKJoOVTw5+/qeFf5FlzVdSV95n+z17MAFBFNwUsTr3luRROR8OAbMlPuUegeavlKeJQLajbQAhH9AA==", - "requires": { - "d3-voronoi": "1", - "vega-dataflow": "3", - "vega-util": "1" - } - }, - "vega-wordcloud": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/vega-wordcloud/-/vega-wordcloud-2.1.0.tgz", - "integrity": "sha512-5kKjcse73d72OM1rBqWcbOpWKQeZrk/oVOxAG7EkGyElWQ+vIHBwj5qE4XYa1oIhhez25X1PVqhbzGMj1ZuKoQ==", - "requires": { - "vega-canvas": "1", - "vega-dataflow": "3", - "vega-scale": "2", - "vega-statistics": "^1.2", - "vega-util": "1" - } - }, - "vendors": { - "version": "1.0.3", - "resolved": "https://registry.npmjs.org/vendors/-/vendors-1.0.3.tgz", - "integrity": "sha512-fOi47nsJP5Wqefa43kyWSg80qF+Q3XA6MUkgi7Hp1HQaKDQW4cQrK2D0P7mmbFtsV1N89am55Yru/nyEwRubcw==", - "dev": true - }, - "verror": { - "version": "1.10.0", - "resolved": "https://registry.npmjs.org/verror/-/verror-1.10.0.tgz", - "integrity": "sha1-OhBcoXBTr1XW4nDB+CiGguGNpAA=", - "dev": true, - "requires": { - "assert-plus": "^1.0.0", - "core-util-is": "1.0.2", - "extsprintf": "^1.2.0" - } - }, - "vm-browserify": { - "version": "1.1.0", - "resolved": "https://registry.npmjs.org/vm-browserify/-/vm-browserify-1.1.0.tgz", - "integrity": "sha512-iq+S7vZJE60yejDYM0ek6zg308+UZsdtPExWP9VZoCFCz1zkJoXFnAX7aZfd/ZwrkidzdUZL0C/ryW+JwAiIGw==", - "dev": true - }, - "void-elements": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/void-elements/-/void-elements-2.0.1.tgz", - "integrity": "sha1-wGavtYK7HLQSjWDqkjkulNXp2+w=", - "dev": true - }, - "vue-parser": { - "version": "1.1.6", - "resolved": "https://registry.npmjs.org/vue-parser/-/vue-parser-1.1.6.tgz", - "integrity": "sha512-v3/R7PLbaFVF/c8IIzWs1HgRpT2gN0dLRkaLIT5q+zJGVgmhN4VuZJF4Y9N4hFtFjS4B1EHxAOP6/tzqM4Ug2g==", - "dev": true, - "requires": { - "parse5": "^3.0.3" - } - }, - "watchpack": { - "version": "1.6.0", - "resolved": "https://registry.npmjs.org/watchpack/-/watchpack-1.6.0.tgz", - "integrity": "sha512-i6dHe3EyLjMmDlU1/bGQpEw25XSjkJULPuAVKCbNRefQVq48yXKUpwg538F7AZTf9kyr57zj++pQFltUa5H7yA==", - "dev": true, - "requires": { - "chokidar": "^2.0.2", - "graceful-fs": "^4.1.2", - "neo-async": "^2.5.0" - }, - "dependencies": { - "anymatch": { - "version": "2.0.0", - "resolved": "https://registry.npmjs.org/anymatch/-/anymatch-2.0.0.tgz", - "integrity": "sha512-5teOsQWABXHHBFP9y3skS5P3d/WfWXpv3FUpy+LorMrNYaT9pI4oLMQX7jzQ2KklNpGpWHzdCXTDT2Y3XGlZBw==", - "dev": true, - "requires": { - "micromatch": "^3.1.4", - "normalize-path": "^2.1.1" - }, - "dependencies": { - "normalize-path": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-2.1.1.tgz", - "integrity": "sha1-GrKLVW4Zg2Oowab35vogE3/mrtk=", - "dev": true, - "requires": { - "remove-trailing-separator": "^1.0.1" - } - } - } - }, - "arr-diff": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/arr-diff/-/arr-diff-4.0.0.tgz", - "integrity": "sha1-1kYQdP6/7HHn4VI1dhoyml3HxSA=", - "dev": true - }, - "array-unique": { - "version": "0.3.2", - "resolved": "https://registry.npmjs.org/array-unique/-/array-unique-0.3.2.tgz", - "integrity": "sha1-qJS3XUvE9s1nnvMkSp/Y9Gri1Cg=", - "dev": true - }, - "braces": { - "version": "2.3.2", - "resolved": "https://registry.npmjs.org/braces/-/braces-2.3.2.tgz", - "integrity": "sha512-aNdbnj9P8PjdXU4ybaWLK2IF3jc/EoDYbC7AazW6to3TRsfXxscC9UXOB5iDiEQrkyIbWp2SLQda4+QAa7nc3w==", - "dev": true, - "requires": { - "arr-flatten": "^1.1.0", - "array-unique": "^0.3.2", - "extend-shallow": "^2.0.1", - "fill-range": "^4.0.0", - "isobject": "^3.0.1", - "repeat-element": "^1.1.2", - "snapdragon": "^0.8.1", - "snapdragon-node": "^2.0.1", - "split-string": "^3.0.2", - "to-regex": "^3.0.1" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "chokidar": { - "version": "2.1.8", - "resolved": "https://registry.npmjs.org/chokidar/-/chokidar-2.1.8.tgz", - "integrity": "sha512-ZmZUazfOzf0Nve7duiCKD23PFSCs4JPoYyccjUFF3aQkQadqBhfzhjkwBH2mNOG9cTBwhamM37EIsIkZw3nRgg==", - "dev": true, - "requires": { - "anymatch": "^2.0.0", - "async-each": "^1.0.1", - "braces": "^2.3.2", - "fsevents": "^1.2.7", - "glob-parent": "^3.1.0", - "inherits": "^2.0.3", - "is-binary-path": "^1.0.0", - "is-glob": "^4.0.0", - "normalize-path": "^3.0.0", - "path-is-absolute": "^1.0.0", - "readdirp": "^2.2.1", - "upath": "^1.1.1" - } - }, - "expand-brackets": { - "version": "2.1.4", - "resolved": "https://registry.npmjs.org/expand-brackets/-/expand-brackets-2.1.4.tgz", - "integrity": "sha1-t3c14xXOMPa27/D4OwQVGiJEliI=", - "dev": true, - "requires": { - "debug": "^2.3.3", - "define-property": "^0.2.5", - "extend-shallow": "^2.0.1", - "posix-character-classes": "^0.1.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "0.2.5", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-0.2.5.tgz", - "integrity": "sha1-w1se+RjsPJkPmlvFe+BKrOxcgRY=", - "dev": true, - "requires": { - "is-descriptor": "^0.1.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - }, - "is-accessor-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-0.1.6.tgz", - "integrity": "sha1-qeEss66Nh2cn7u84Q/igiXtcmNY=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-data-descriptor": { - "version": "0.1.4", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-0.1.4.tgz", - "integrity": "sha1-C17mSDiOLIYCgueT8YVv7D8wG1Y=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "is-descriptor": { - "version": "0.1.6", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-0.1.6.tgz", - "integrity": "sha512-avDYr0SB3DwO9zsMov0gKCESFYqCnE4hq/4z3TdUlukEy5t9C0YRq7HLrsN52NAcqXKaepeCD0n+B0arnVG3Hg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^0.1.6", - "is-data-descriptor": "^0.1.4", - "kind-of": "^5.0.0" - } - }, - "kind-of": { - "version": "5.1.0", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-5.1.0.tgz", - "integrity": "sha512-NGEErnH6F2vUuXDh+OlbcKW7/wOcfdRHaZ7VWtqCztfHri/++YKmP51OdWeGPuqCOba6kk2OTe5d02VmTB80Pw==", - "dev": true - } - } - }, - "extglob": { - "version": "2.0.4", - "resolved": "https://registry.npmjs.org/extglob/-/extglob-2.0.4.tgz", - "integrity": "sha512-Nmb6QXkELsuBr24CJSkilo6UHHgbekK5UiZgfE6UHD3Eb27YC6oD+bhcT+tJ6cl8dmsgdQxnWlcry8ksBIBLpw==", - "dev": true, - "requires": { - "array-unique": "^0.3.2", - "define-property": "^1.0.0", - "expand-brackets": "^2.1.4", - "extend-shallow": "^2.0.1", - "fragment-cache": "^0.2.1", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.1" - }, - "dependencies": { - "define-property": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/define-property/-/define-property-1.0.0.tgz", - "integrity": "sha1-dp66rz9KY6rTr56NMEybvnm/sOY=", - "dev": true, - "requires": { - "is-descriptor": "^1.0.0" - } - }, - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "fill-range": { - "version": "4.0.0", - "resolved": "https://registry.npmjs.org/fill-range/-/fill-range-4.0.0.tgz", - "integrity": "sha1-1USBHUKPmOsGpj3EAtJAPDKMOPc=", - "dev": true, - "requires": { - "extend-shallow": "^2.0.1", - "is-number": "^3.0.0", - "repeat-string": "^1.6.1", - "to-regex-range": "^2.1.0" - }, - "dependencies": { - "extend-shallow": { - "version": "2.0.1", - "resolved": "https://registry.npmjs.org/extend-shallow/-/extend-shallow-2.0.1.tgz", - "integrity": "sha1-Ua99YUrZqfYQ6huvu5idaxxWiQ8=", - "dev": true, - "requires": { - "is-extendable": "^0.1.0" - } - } - } - }, - "glob-parent": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/glob-parent/-/glob-parent-3.1.0.tgz", - "integrity": "sha1-nmr2KZ2NO9K9QEMIMr0RPfkGxa4=", - "dev": true, - "requires": { - "is-glob": "^3.1.0", - "path-dirname": "^1.0.0" - }, - "dependencies": { - "is-glob": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-3.1.0.tgz", - "integrity": "sha1-e6WuJCF4BKxwcHuWkiVnSGzD6Eo=", - "dev": true, - "requires": { - "is-extglob": "^2.1.0" - } - } - } - }, - "is-accessor-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-accessor-descriptor/-/is-accessor-descriptor-1.0.0.tgz", - "integrity": "sha512-m5hnHTkcVsPfqx3AKlyttIPb7J+XykHvJP2B9bZDjlhLIoEq4XoK64Vg7boZlVWYK6LUY94dYPEE7Lh0ZkZKcQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-data-descriptor": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/is-data-descriptor/-/is-data-descriptor-1.0.0.tgz", - "integrity": "sha512-jbRXy1FmtAoCjQkVmIVYwuuqDFUbaOeDjmed1tOGPrsMhtJA4rD9tkgA0F1qJ3gRFRXcHYVkdeaP50Q5rE/jLQ==", - "dev": true, - "requires": { - "kind-of": "^6.0.0" - } - }, - "is-descriptor": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/is-descriptor/-/is-descriptor-1.0.2.tgz", - "integrity": "sha512-2eis5WqQGV7peooDyLmNEPUrps9+SXX5c9pL3xEB+4e9HnGuDa7mB7kHxHw4CbqS9k1T2hOH3miL8n8WtiYVtg==", - "dev": true, - "requires": { - "is-accessor-descriptor": "^1.0.0", - "is-data-descriptor": "^1.0.0", - "kind-of": "^6.0.2" - } - }, - "is-extglob": { - "version": "2.1.1", - "resolved": "https://registry.npmjs.org/is-extglob/-/is-extglob-2.1.1.tgz", - "integrity": "sha1-qIwCU1eR8C7TfHahueqXc8gz+MI=", - "dev": true - }, - "is-glob": { - "version": "4.0.1", - "resolved": "https://registry.npmjs.org/is-glob/-/is-glob-4.0.1.tgz", - "integrity": "sha512-5G0tKtBTFImOqDnLB2hG6Bp2qcKEFduo4tZu9MT/H6NQv/ghhy30o55ufafxJ/LdH79LLs2Kfrn85TLKyA7BUg==", - "dev": true, - "requires": { - "is-extglob": "^2.1.1" - } - }, - "is-number": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/is-number/-/is-number-3.0.0.tgz", - "integrity": "sha1-JP1iAaR4LPUFYcgQJ2r8fRLXEZU=", - "dev": true, - "requires": { - "kind-of": "^3.0.2" - }, - "dependencies": { - "kind-of": { - "version": "3.2.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-3.2.2.tgz", - "integrity": "sha1-MeohpzS6ubuw8yRm2JOupR5KPGQ=", - "dev": true, - "requires": { - "is-buffer": "^1.1.5" - } - } - } - }, - "isobject": { - "version": "3.0.1", - "resolved": "https://registry.npmjs.org/isobject/-/isobject-3.0.1.tgz", - "integrity": "sha1-TkMekrEalzFjaqH5yNHMvP2reN8=", - "dev": true - }, - "kind-of": { - "version": "6.0.2", - "resolved": "https://registry.npmjs.org/kind-of/-/kind-of-6.0.2.tgz", - "integrity": "sha512-s5kLOcnH0XqDO+FvuaLX8DDjZ18CGFk7VygH40QoKPUQhW4e2rvM0rwUq0t8IQDOwYSeLK01U90OjzBTme2QqA==", - "dev": true - }, - "micromatch": { - "version": "3.1.10", - "resolved": "https://registry.npmjs.org/micromatch/-/micromatch-3.1.10.tgz", - "integrity": "sha512-MWikgl9n9M3w+bpsY3He8L+w9eF9338xRl8IAO5viDizwSzziFEyUzo2xrrloB64ADbTf8uA8vRqqttDTOmccg==", - "dev": true, - "requires": { - "arr-diff": "^4.0.0", - "array-unique": "^0.3.2", - "braces": "^2.3.1", - "define-property": "^2.0.2", - "extend-shallow": "^3.0.2", - "extglob": "^2.0.4", - "fragment-cache": "^0.2.1", - "kind-of": "^6.0.2", - "nanomatch": "^1.2.9", - "object.pick": "^1.3.0", - "regex-not": "^1.0.0", - "snapdragon": "^0.8.1", - "to-regex": "^3.0.2" - } - }, - "normalize-path": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/normalize-path/-/normalize-path-3.0.0.tgz", - "integrity": "sha512-6eZs5Ls3WtCisHWp9S2GUy8dqkpGi4BVSz3GaqiE6ezub0512ESztXUwUB6C6IKbQkY2Pnb/mD4WYojCRwcwLA==", - "dev": true - } - } - }, - "wbuf": { - "version": "1.7.3", - "resolved": "https://registry.npmjs.org/wbuf/-/wbuf-1.7.3.tgz", - "integrity": "sha512-O84QOnr0icsbFGLS0O3bI5FswxzRr8/gHwWkDlQFskhSPryQXvrTMxjxGP4+iWYoauLoBvfDpkrOauZ+0iZpDA==", - "dev": true, - "requires": { - "minimalistic-assert": "^1.0.0" - } - }, - "webpack": { - "version": "2.3.3", - "resolved": "https://registry.npmjs.org/webpack/-/webpack-2.3.3.tgz", - "integrity": "sha1-7swIPBj7e/lY6k9AtXpmQMWgzHg=", - "dev": true, - "requires": { - "acorn": "^4.0.4", - "acorn-dynamic-import": "^2.0.0", - "ajv": "^4.7.0", - "ajv-keywords": "^1.1.1", - "async": "^2.1.2", - "enhanced-resolve": "^3.0.0", - "interpret": "^1.0.0", - "json-loader": "^0.5.4", - "loader-runner": "^2.3.0", - "loader-utils": "^0.2.16", - "memory-fs": "~0.4.1", - "mkdirp": "~0.5.0", - "node-libs-browser": "^2.0.0", - "source-map": "^0.5.3", - "supports-color": "^3.1.0", - "tapable": "~0.2.5", - "uglify-js": "^2.8.5", - "watchpack": "^1.3.1", - "webpack-sources": "^0.2.3", - "yargs": "^6.0.0" - }, - "dependencies": { - "ajv": { - "version": "4.11.8", - "resolved": "https://registry.npmjs.org/ajv/-/ajv-4.11.8.tgz", - "integrity": "sha1-gv+wKynmYq5TvcIK8VlHcGc5xTY=", - "dev": true, - "requires": { - "co": "^4.6.0", - "json-stable-stringify": "^1.0.1" - } - }, - "ajv-keywords": { - "version": "1.5.1", - "resolved": "https://registry.npmjs.org/ajv-keywords/-/ajv-keywords-1.5.1.tgz", - "integrity": "sha1-MU3QpLM2j609/NxU7eYXG4htrzw=", - "dev": true - }, - "big.js": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/big.js/-/big.js-3.2.0.tgz", - "integrity": "sha512-+hN/Zh2D08Mx65pZ/4g5bsmNiZUuChDiQfTUQ7qJr4/kuopCr88xZsAXv6mBoZEsUI4OuGHlX59qE94K2mMW8Q==", - "dev": true - }, - "camelcase": { - "version": "1.2.1", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-1.2.1.tgz", - "integrity": "sha1-m7UwTS4LVmmLLHWLCKPqqdqlijk=", - "dev": true - }, - "cliui": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-2.1.0.tgz", - "integrity": "sha1-S0dXYP+AJkx2LDoXGQMukcf+oNE=", - "dev": true, - "requires": { - "center-align": "^0.1.1", - "right-align": "^0.1.1", - "wordwrap": "0.0.2" - } - }, - "json5": { - "version": "0.5.1", - "resolved": "https://registry.npmjs.org/json5/-/json5-0.5.1.tgz", - "integrity": "sha1-Hq3nrMASA0rYTiOWdn6tn6VJWCE=", - "dev": true - }, - "loader-utils": { - "version": "0.2.17", - "resolved": "https://registry.npmjs.org/loader-utils/-/loader-utils-0.2.17.tgz", - "integrity": "sha1-+G5jdNQyBabmxg6RlvF8Apm/s0g=", - "dev": true, - "requires": { - "big.js": "^3.1.3", - "emojis-list": "^2.0.0", - "json5": "^0.5.0", - "object-assign": "^4.0.1" - } - }, - "source-list-map": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/source-list-map/-/source-list-map-1.1.2.tgz", - "integrity": "sha1-mIkBnRAkzOVc3AaUmDN+9hhqEaE=", - "dev": true - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "dev": true, - "requires": { - "has-flag": "^1.0.0" - } - }, - "uglify-js": { - "version": "2.8.29", - "resolved": "https://registry.npmjs.org/uglify-js/-/uglify-js-2.8.29.tgz", - "integrity": "sha1-KcVzMUgFe7Th913zW3qcty5qWd0=", - "dev": true, - "requires": { - "source-map": "~0.5.1", - "uglify-to-browserify": "~1.0.0", - "yargs": "~3.10.0" - }, - "dependencies": { - "yargs": { - "version": "3.10.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-3.10.0.tgz", - "integrity": "sha1-9+572FfdfB0tOMDnTvvWgdFDH9E=", - "dev": true, - "requires": { - "camelcase": "^1.0.2", - "cliui": "^2.1.0", - "decamelize": "^1.0.0", - "window-size": "0.1.0" - } - } - } - }, - "webpack-sources": { - "version": "0.2.3", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-0.2.3.tgz", - "integrity": "sha1-F8Yr+vE8cH+dAsR54Nzd6DgGl/s=", - "dev": true, - "requires": { - "source-list-map": "^1.1.1", - "source-map": "~0.5.3" - } - }, - "wordwrap": { - "version": "0.0.2", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.2.tgz", - "integrity": "sha1-t5Zpu0LstAn4PVg8rVLKF+qhZD8=", - "dev": true - }, - "yargs": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz", - "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=", - "dev": true, - "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^4.2.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - }, - "cliui": { - "version": "3.2.0", - "resolved": "https://registry.npmjs.org/cliui/-/cliui-3.2.0.tgz", - "integrity": "sha1-EgYBU3qRbSmUD5NNo7SNWFo5IT0=", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1", - "wrap-ansi": "^2.0.0" - } - } - } - }, - "yargs-parser": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz", - "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", - "dev": true, - "requires": { - "camelcase": "^3.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - } - } - } - } - }, - "webpack-dev-middleware": { - "version": "1.12.2", - "resolved": "https://registry.npmjs.org/webpack-dev-middleware/-/webpack-dev-middleware-1.12.2.tgz", - "integrity": "sha512-FCrqPy1yy/sN6U/SaEZcHKRXGlqU0DUaEBL45jkUYoB8foVb6wCnbIJ1HKIx+qUFTW+3JpVcCJCxZ8VATL4e+A==", - "dev": true, - "requires": { - "memory-fs": "~0.4.1", - "mime": "^1.5.0", - "path-is-absolute": "^1.0.0", - "range-parser": "^1.0.3", - "time-stamp": "^2.0.0" - } - }, - "webpack-dev-server": { - "version": "2.4.2", - "resolved": "https://registry.npmjs.org/webpack-dev-server/-/webpack-dev-server-2.4.2.tgz", - "integrity": "sha1-z1lda0CHhFK20q1yKQVraG+KFr4=", - "dev": true, - "requires": { - "ansi-html": "0.0.7", - "chokidar": "^1.6.0", - "compression": "^1.5.2", - "connect-history-api-fallback": "^1.3.0", - "express": "^4.13.3", - "html-entities": "^1.2.0", - "http-proxy-middleware": "~0.17.4", - "opn": "4.0.2", - "portfinder": "^1.0.9", - "serve-index": "^1.7.2", - "sockjs": "0.3.18", - "sockjs-client": "1.1.2", - "spdy": "^3.4.1", - "strip-ansi": "^3.0.0", - "supports-color": "^3.1.1", - "webpack-dev-middleware": "^1.9.0", - "yargs": "^6.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - }, - "supports-color": { - "version": "3.2.3", - "resolved": "https://registry.npmjs.org/supports-color/-/supports-color-3.2.3.tgz", - "integrity": "sha1-ZawFBLOVQXHYpklGsq48u4pfVPY=", - "dev": true, - "requires": { - "has-flag": "^1.0.0" - } - }, - "yargs": { - "version": "6.6.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-6.6.0.tgz", - "integrity": "sha1-eC7CHvQDNF+DCoCMo9UTr1YGUgg=", - "dev": true, - "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^4.2.0" - } - }, - "yargs-parser": { - "version": "4.2.1", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-4.2.1.tgz", - "integrity": "sha1-KczqwNxPA8bIe0qfIX3RjJ90hxw=", - "dev": true, - "requires": { - "camelcase": "^3.0.0" - } - } - } - }, - "webpack-sources": { - "version": "0.1.5", - "resolved": "https://registry.npmjs.org/webpack-sources/-/webpack-sources-0.1.5.tgz", - "integrity": "sha1-qh86vw8NdNtxEcQOUAuE+WZkB1A=", - "dev": true, - "requires": { - "source-list-map": "~0.1.7", - "source-map": "~0.5.3" - } - }, - "websocket-driver": { - "version": "0.7.3", - "resolved": "https://registry.npmjs.org/websocket-driver/-/websocket-driver-0.7.3.tgz", - "integrity": "sha512-bpxWlvbbB459Mlipc5GBzzZwhoZgGEZLuqPaR0INBGnPAY1vdBX6hPnoFXiw+3yWxDuHyQjO2oXTMyS8A5haFg==", - "dev": true, - "requires": { - "http-parser-js": ">=0.4.0 <0.4.11", - "safe-buffer": ">=5.1.0", - "websocket-extensions": ">=0.1.1" - } - }, - "websocket-extensions": { - "version": "0.1.3", - "resolved": "https://registry.npmjs.org/websocket-extensions/-/websocket-extensions-0.1.3.tgz", - "integrity": "sha512-nqHUnMXmBzT0w570r2JpJxfiSD1IzoI+HGVdd3aZ0yNi3ngvQ4jv1dtHt5VGxfI2yj5yqImPhOK4vmIh2xMbGg==", - "dev": true - }, - "whet.extend": { - "version": "0.9.9", - "resolved": "https://registry.npmjs.org/whet.extend/-/whet.extend-0.9.9.tgz", - "integrity": "sha1-+HfVv2SMl+WqVC+twW1qJZucEaE=", - "dev": true - }, - "which": { - "version": "1.3.1", - "resolved": "https://registry.npmjs.org/which/-/which-1.3.1.tgz", - "integrity": "sha512-HxJdYWq1MTIQbJ3nw0cqssHoTNU267KlrDuGZ1WYlxDStUtKUhOaJmh112/TZmHxxUfuJqPXSOm7tDyas0OSIQ==", - "dev": true, - "requires": { - "isexe": "^2.0.0" - } - }, - "which-module": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/which-module/-/which-module-1.0.0.tgz", - "integrity": "sha1-u6Y8qGGUiZT/MHc2CJ47lgJsKk8=", - "dev": true - }, - "wide-align": { - "version": "1.1.3", - "resolved": "https://registry.npmjs.org/wide-align/-/wide-align-1.1.3.tgz", - "integrity": "sha512-QGkOQc8XL6Bt5PwnsExKBPuMKBxnGxWWW3fU55Xt4feHozMUhdUMaBCk290qpm/wG5u/RSKzwdAC4i51YigihA==", - "dev": true, - "requires": { - "string-width": "^1.0.2 || 2" - } - }, - "window-size": { - "version": "0.1.0", - "resolved": "https://registry.npmjs.org/window-size/-/window-size-0.1.0.tgz", - "integrity": "sha1-VDjNLqk7IC76Ohn+iIeu58lPnJ0=", - "dev": true - }, - "wordwrap": { - "version": "0.0.3", - "resolved": "https://registry.npmjs.org/wordwrap/-/wordwrap-0.0.3.tgz", - "integrity": "sha1-o9XabNXAvAAI03I0u68b7WMFkQc=", - "dev": true - }, - "wrap-ansi": { - "version": "2.1.0", - "resolved": "https://registry.npmjs.org/wrap-ansi/-/wrap-ansi-2.1.0.tgz", - "integrity": "sha1-2Pw9KE3QV5T+hJc8rs3Rz4JP3YU=", - "dev": true, - "requires": { - "string-width": "^1.0.1", - "strip-ansi": "^3.0.1" - } - }, - "wrappy": { - "version": "1.0.2", - "resolved": "https://registry.npmjs.org/wrappy/-/wrappy-1.0.2.tgz", - "integrity": "sha1-tSQ9jz7BqjXxNkYFvA0QNuMKtp8=", - "dev": true - }, - "ws": { - "version": "1.1.2", - "resolved": "https://registry.npmjs.org/ws/-/ws-1.1.2.tgz", - "integrity": "sha1-iiRPoFJAHgjJiGz0SoUYnh/UBn8=", - "dev": true, - "requires": { - "options": ">=0.0.5", - "ultron": "1.0.x" - } - }, - "wtf-8": { - "version": "1.0.0", - "resolved": "https://registry.npmjs.org/wtf-8/-/wtf-8-1.0.0.tgz", - "integrity": "sha1-OS2LotDxw00e4tYw8V0O+2jhBIo=", - "dev": true - }, - "xmlbuilder": { - "version": "3.1.0", - "resolved": "https://registry.npmjs.org/xmlbuilder/-/xmlbuilder-3.1.0.tgz", - "integrity": "sha1-LIaIjy1OrehQ+jjKf3Ij9yCVFuE=", - "dev": true, - "requires": { - "lodash": "^3.5.0" - }, - "dependencies": { - "lodash": { - "version": "3.10.1", - "resolved": "https://registry.npmjs.org/lodash/-/lodash-3.10.1.tgz", - "integrity": "sha1-W/Rejkm6QYnhfUgnid/RW9FAt7Y=", - "dev": true - } - } - }, - "xmlhttprequest": { - "version": "1.8.0", - "resolved": "https://registry.npmjs.org/xmlhttprequest/-/xmlhttprequest-1.8.0.tgz", - "integrity": "sha1-Z/4HXFwk/vOfnWX197f+dRcZaPw=" - }, - "xmlhttprequest-ssl": { - "version": "1.5.3", - "resolved": "https://registry.npmjs.org/xmlhttprequest-ssl/-/xmlhttprequest-ssl-1.5.3.tgz", - "integrity": "sha1-GFqIjATspGw+QHDZn3tJ3jUomS0=", - "dev": true - }, - "xtend": { - "version": "4.0.2", - "resolved": "https://registry.npmjs.org/xtend/-/xtend-4.0.2.tgz", - "integrity": "sha512-LKYU1iAXJXUgAXn9URjiu+MWhyUXHsvfp7mcuYm9dSUKK0/CjtrUwFAxD82/mCWbtLsGjFIad0wIsod4zrTAEQ==", - "dev": true - }, - "y18n": { - "version": "3.2.1", - "resolved": "https://registry.npmjs.org/y18n/-/y18n-3.2.1.tgz", - "integrity": "sha1-bRX7qITAhnnA136I53WegR4H+kE=", - "dev": true - }, - "yallist": { - "version": "2.1.2", - "resolved": "https://registry.npmjs.org/yallist/-/yallist-2.1.2.tgz", - "integrity": "sha1-HBH5IY8HYImkfdUS+TxmmaaoHVI=", - "dev": true - }, - "yargs": { - "version": "7.1.0", - "resolved": "https://registry.npmjs.org/yargs/-/yargs-7.1.0.tgz", - "integrity": "sha1-a6MY6xaWFyf10oT46gA+jWFU0Mg=", - "dev": true, - "requires": { - "camelcase": "^3.0.0", - "cliui": "^3.2.0", - "decamelize": "^1.1.1", - "get-caller-file": "^1.0.1", - "os-locale": "^1.4.0", - "read-pkg-up": "^1.0.1", - "require-directory": "^2.1.1", - "require-main-filename": "^1.0.1", - "set-blocking": "^2.0.0", - "string-width": "^1.0.2", - "which-module": "^1.0.0", - "y18n": "^3.2.1", - "yargs-parser": "^5.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - } - } - }, - "yargs-parser": { - "version": "5.0.0", - "resolved": "https://registry.npmjs.org/yargs-parser/-/yargs-parser-5.0.0.tgz", - "integrity": "sha1-J17PDX/+Bcd+ZOfIbkzZS/DhIoo=", - "dev": true, - "requires": { - "camelcase": "^3.0.0" - }, - "dependencies": { - "camelcase": { - "version": "3.0.0", - "resolved": "https://registry.npmjs.org/camelcase/-/camelcase-3.0.0.tgz", - "integrity": "sha1-MvxLn82vhF/N9+c7uXysImHwqwo=", - "dev": true - } - } - }, - "yeast": { - "version": "0.1.2", - "resolved": "https://registry.npmjs.org/yeast/-/yeast-0.1.2.tgz", - "integrity": "sha1-AI4G2AlDIMNy28L47XagymyKxBk=", - "dev": true - } - } -} diff --git a/package.json b/package.json index 26f4394..f3413c3 100644 --- a/package.json +++ b/package.json @@ -1,105 +1,76 @@ { "private": true, + "name": "vega_clue", + "description": "Vega Gapminder with KnowledgePearls", + "homepage": "https://phovea.caleydo.org", + "version": "1.0.0", + "author": { + "name": "The Caleydo Team", + "email": "contact@caleydo.org", + "url": "https://caleydo.org" + }, + "license": "BSD-3-Clause", + "bugs": { + "url": "https://github.com/caleydo/vega_clue/issues" + }, + "repository": { + "type": "git", + "url": "git@github.com:Caleydo/vega_clue.git" + }, "scripts": { - "predist": "npm run build", - "predocker": "npm run build", - "docker": "docker build -t vega_clue -f deploy/Dockerfile .", + "clean": "rimraf lib dist", + "delete-dependencies": "rimraf node_modules", "compile": "tsc", - "lint": "tslint -c tslint.json -p .", - "docs": "typedoc --options typedoc.json src/**/.ts", + "compile:watch": "tsc -w", + "postcompile": "npm run copy", + "lint": "tslint -c tslint.json -p . 'src/**/*.ts?(x)' 'tests/**/*.ts?(x)'", + "docs": "typedoc --options typedoc.json src/**.ts", "prebuild": "node -e \"process.exit(process.env.PHOVEA_SKIP_TESTS === undefined?1:0)\" || npm run test", - "pretest": "npm run compile", - "test": "test ! -d tests || karma start", + "test": "jest --passWithNoTests", + "test:watch": "jest --watch", "posttest": "npm run lint", - "test:watch": "karma start --autoWatch=true --singleRun=false", - "build:dev": "webpack", - "build": "webpack --env prod", - "start": "webpack-dev-server --inline", - "start:hot": "webpack-dev-server --inline --hot", - "watch": "webpack --watch", + "copy": "npm run copy-assets && npm run copy-styles && npm run copy-app-assets", + "build": "npm run clean && npm run compile", + "copy-assets": "if [ -d src/assets ]; then shx --verbose cp -R src/assets/. dist/assets/; fi && if [ -d src/templates ]; then shx --verbose cp -R src/templates/. dist/templates/; fi", + "copy-styles": "if [ -d src/scss ]; then shx --verbose cp -R src/scss/. dist/scss/; fi", + "copy-app-assets": "shx --verbose cp src/*.txt dist/ | true && shx --verbose cp src/*.html dist/ | true && shx --verbose cp src/*.ejs dist/ | true", "release:major": "npm version major && npm publish && git push --follow-tags", "release:minor": "npm version minor && npm publish && git push --follow-tags", "release:patch": "npm version patch && npm publish && git push --follow-tags", - "dist": "mkdirp dist && cd build && tar cvzf ../dist/vega_clue.tar.gz *" + "predist": "npm run build && npm run docs", + "dist": "mkdir lib && cd dist && tar cvzf ../lib/vega_clue.tar.gz *" }, + "main": "dist/index.js", + "types": "dist/index.d.ts", "files": [ "src", "index.js", - "phovea.js", - "phovea_registry.js", - "build" + "dist" ], "engines": { "npm": ">= 6.12", "node": ">= 12.13" }, "devDependencies": { - "@types/jasmine": "2.5.47", - "awesome-typescript-loader": "3.1.2", - "css-loader": "0.28.0", - "extract-loader": "0.1.0", - "extract-text-webpack-plugin": "2.1.0", - "file-loader": "0.11.1", - "html-loader": "0.4.5", - "imports-loader": "0.7.1", - "jasmine": "2.5.3", - "json-loader": "0.5.4", - "karma": "1.5.0", - "karma-chrome-launcher": "2.0.0", - "karma-firefox-launcher": "1.0.1", - "karma-jasmine": "1.1.0", - "karma-junit-reporter": "2.0.0", - "karma-sourcemap-loader": "0.3.7", - "karma-webpack": "2.0.3", - "mkdirp": "0.5.1", - "npm-force-resolutions": "0.0.2", - "node-sass": "^4.12.0", - "null-loader": "0.1.1", - "raw-loader": "0.5.1", - "sass-loader": "6.0.7", - "style-loader": "0.16.1", - "tslib": "1.9.0", - "tslint": "5.9.1", - "typedoc": "0.11.1", - "typescript": "2.8.1", - "url-loader": "0.5.8", - "webpack": "2.3.3", - "webpack-dev-server": "2.4.2", - "cache-loader": "1.2.0", - "ifdef-loader": "2.0.0", - "fork-ts-checker-webpack-plugin": "0.4.1", - "thread-loader": "1.1.2", - "ts-loader": "4.0.1" + "@types/jest": "~26.0.18", + "identity-obj-proxy": "~3.0.0", + "jest": "~26.6.3", + "jest-raw-loader": "~1.0.1", + "rimraf": "~3.0.2", + "shx": "~0.3.3", + "ts-jest": "~26.4.4", + "tslib": "~2.0.3", + "tslint": "~5.20.1", + "typedoc": "~0.19.2", + "typescript": "~3.9.7" }, "dependencies": { - "phovea_core": "github:phovea/phovea_core#thinkh/provenance_retrieval", "phovea_clue": "github:phovea/phovea_clue#thinkh/provenance_retrieval", + "vega-expression": "~2.4", "vega-lib": "3.2.1", - "vega-typings": "0.2.17", "vega-scale": "~2.1", "vega-statistics": "1.2.2", - "vega-expression": "~2.4", + "vega-typings": "0.2.17", "vega-util": "1.7.0" - }, - "resolutions": { - "phovea_core": "github:phovea/phovea_core#thinkh/provenance_retrieval", - "phovea_clue": "github:phovea/phovea_clue#thinkh/provenance_retrieval" - }, - "name": "vega_clue", - "description": "Vega Gapminder with KnowledgePearls", - "homepage": "https://caleydo.org", - "version": "1.0.0-SNAPSHOT", - "author": { - "name": "The Caleydo Team", - "email": "contact@caleydo.org", - "url": "https://caleydo.org" - }, - "license": "BSD-3-Clause", - "bugs": { - "url": "https://github.com/Caleydo/vega_clue/issues" - }, - "repository": { - "type": "git", - "url": "https://github.com/Caleydo/vega_clue.git" } } diff --git a/phovea_registry.js b/phovea_registry.js index 1f3d157..f75cb80 100644 --- a/phovea_registry.js +++ b/phovea_registry.js @@ -4,7 +4,8 @@ * Licensed under the new BSD license, available at http://caleydo.org/license **************************************************************************** */ -import {register} from 'phovea_core/src/plugin'; +import {PluginRegistry} from 'phovea_core'; +import reg from './dist/phovea'; /** * build a registry by registering all phovea modules @@ -14,4 +15,4 @@ import 'phovea_core/phovea_registry.js'; import 'phovea_ui/phovea_registry.js'; import 'phovea_clue/phovea_registry.js'; //self -register('vega_clue',require('./phovea.js')); +PluginRegistry.getInstance().register('vega_clue', reg); diff --git a/src/404.html b/src/404.html deleted file mode 100644 index fdace4a..0000000 --- a/src/404.html +++ /dev/null @@ -1,157 +0,0 @@ - - - - - Page Not Found :( - - - -
-

Not found :(

-

Sorry, but the page you were trying to view does not exist.

-

It looks like this was the result of either:

-
    -
  • a mistyped address
  • -
  • an out-of-date link
  • -
- - -
- - diff --git a/src/AppWrapper.ts b/src/AppWrapper.ts index c9d9778..139d33c 100644 --- a/src/AppWrapper.ts +++ b/src/AppWrapper.ts @@ -1,20 +1,10 @@ import {APP_NAME} from './language'; -import {IVisStateApp} from 'phovea_clue/src/provenance_retrieval/IVisState'; -import ACLUEWrapper from 'phovea_clue/src/ACLUEWrapper'; -import {create as createHeader, AppHeaderLink, AppHeader} from 'phovea_ui/src/header'; -import CLUEGraphManager from 'phovea_clue/src/CLUEGraphManager'; -import MixedStorageProvenanceGraphManager from 'phovea_core/src/provenance/MixedStorageProvenanceGraphManager'; -import lazyBootstrap from 'phovea_ui/src/_lazyBootstrap'; -import LoginMenu from 'phovea_clue/src/menu/LoginMenu'; -import ProvenanceGraphMenu from 'phovea_clue/src/menu/ProvenanceGraphMenu'; -import {isLoggedIn} from 'phovea_core/src/security'; -import ProvenanceGraph from 'phovea_core/src/provenance/ProvenanceGraph'; -import {loadProvenanceGraphVis, loadStoryVis} from 'phovea_clue/src/vis_loader'; -import * as cmode from 'phovea_clue/src/mode'; +import {ACLUEWrapper, CLUEGraphManager, IVisStateApp, ProvenanceGraphMenu, ProvRetrievalPanel, LoginMenu, VisLoader, ButtonModeSelector} from 'phovea_clue'; +import {AppHeaderLink, AppHeader} from 'phovea_ui'; +import {BaseUtils, I18nextManager, MixedStorageProvenanceGraphManager, ProvenanceGraph} from 'phovea_core'; import {showProveanceGraphNotFoundDialog} from './dialogs'; -import {create as createProvRetrievalPanel} from 'phovea_clue/src/provenance_retrieval/ProvRetrievalPanel'; -import {mixin} from 'phovea_core/src'; +import App from './internal/App'; export interface IView { @@ -49,16 +39,17 @@ export class AppWrapper & IVisStateApp> extends ACLUEWrapper showCookieDisclaimer: false, }; - protected app: Promise = null; + protected app: Promise = null; protected header: AppHeader; constructor(options: Partial = {}) { super(); - mixin(this.options, options); + BaseUtils.mixin(this.options, options); } - public init() { - this.build(document.body, {replaceBody: true}); + public async init() { + await I18nextManager.getInstance().initI18n(); // Initialize i18n and then load application + await this.build(document.body, {replaceBody: true}); } protected buildImpl(body: HTMLElement) { @@ -71,7 +62,7 @@ export class AppWrapper & IVisStateApp> extends ACLUEWrapper return false; }) }; - this.header = createHeader(body.querySelector('div.box'), headerOptions); + this.header = AppHeader.create(body.querySelector('div.box'), headerOptions); this.on('jumped_to,loaded_graph', () => this.header.ready()); //load all available provenance graphs @@ -84,9 +75,6 @@ export class AppWrapper & IVisStateApp> extends ACLUEWrapper this.header.wait(); - // trigger bootstrap loading - lazyBootstrap(); - const loginMenu = new LoginMenu(this.header, { insertIntoHeader: true, }); @@ -114,17 +102,18 @@ export class AppWrapper & IVisStateApp> extends ACLUEWrapper provenanceMenu.setGraph(graph); }); - cmode.createButton(modeSelector, { + ButtonModeSelector.createButton(modeSelector, { size: 'sm' }); }); - const provVis = loadProvenanceGraphVis(graph, body.querySelector('div.asides'), { + const provVis = VisLoader.loadProvenanceGraphVis(graph, body.querySelector('div.asides'), { thumbnails: false, provVisCollapsed: true, hideCLUEButtonsOnCollapse: true }); - const storyVis = loadStoryVis(graph, body.querySelector('div.asides'), main, { + + const storyVis = VisLoader.loadStoryVis(graph, body.querySelector('div.asides'), main, { thumbnails: false }); @@ -134,7 +123,7 @@ export class AppWrapper & IVisStateApp> extends ACLUEWrapper const graph = args[0]; const app = args[1]; - createProvRetrievalPanel(graph, body.querySelector('div.asides'), { + ProvRetrievalPanel.create(graph, body.querySelector('div.asides'), { app, captureNonPersistedStates: false, startCollapsed: true @@ -160,11 +149,8 @@ export class AppWrapper & IVisStateApp> extends ACLUEWrapper * @param {HTMLElement} main root dom element * @returns {PromiseLike | T} */ - protected createApp(graph: ProvenanceGraph, manager: CLUEGraphManager, main: HTMLElement): PromiseLike | T { - // lazy loading for better module bundling - return Promise.all([System.import('./internal/App')]).then((modules) => { - const app: T = new modules[0].default(graph, manager, main); - return app.init(); - }); + protected createApp(graph: ProvenanceGraph, manager: CLUEGraphManager, main: HTMLElement): PromiseLike | App { + const app = new App(graph, manager, main); + return app.init(); } } diff --git a/data/airport-connections.vg.json b/src/data/airport-connections.vg.json similarity index 100% rename from data/airport-connections.vg.json rename to src/data/airport-connections.vg.json diff --git a/data/annual-temperature.vg.json b/src/data/annual-temperature.vg.json similarity index 100% rename from data/annual-temperature.vg.json rename to src/data/annual-temperature.vg.json diff --git a/data/arc-diagram.vg.json b/src/data/arc-diagram.vg.json similarity index 100% rename from data/arc-diagram.vg.json rename to src/data/arc-diagram.vg.json diff --git a/data/area-chart.vg.json b/src/data/area-chart.vg.json similarity index 100% rename from data/area-chart.vg.json rename to src/data/area-chart.vg.json diff --git a/data/bar-chart.vg.json b/src/data/bar-chart.vg.json similarity index 100% rename from data/bar-chart.vg.json rename to src/data/bar-chart.vg.json diff --git a/data/barley-trellis-plot.vg.json b/src/data/barley-trellis-plot.vg.json similarity index 100% rename from data/barley-trellis-plot.vg.json rename to src/data/barley-trellis-plot.vg.json diff --git a/data/beeswarm-plot.vg.json b/src/data/beeswarm-plot.vg.json similarity index 100% rename from data/beeswarm-plot.vg.json rename to src/data/beeswarm-plot.vg.json diff --git a/data/binned-scatter-plot.vg.json b/src/data/binned-scatter-plot.vg.json similarity index 100% rename from data/binned-scatter-plot.vg.json rename to src/data/binned-scatter-plot.vg.json diff --git a/data/box-plot.vg.json b/src/data/box-plot.vg.json similarity index 100% rename from data/box-plot.vg.json rename to src/data/box-plot.vg.json diff --git a/data/brushing-scatter-plots.vg.json b/src/data/brushing-scatter-plots.vg.json similarity index 100% rename from data/brushing-scatter-plots.vg.json rename to src/data/brushing-scatter-plots.vg.json diff --git a/data/budget-forecasts.vg.json b/src/data/budget-forecasts.vg.json similarity index 100% rename from data/budget-forecasts.vg.json rename to src/data/budget-forecasts.vg.json diff --git a/data/circle-packing.vg.json b/src/data/circle-packing.vg.json similarity index 100% rename from data/circle-packing.vg.json rename to src/data/circle-packing.vg.json diff --git a/data/connected-scatter-plot.vg.json b/src/data/connected-scatter-plot.vg.json similarity index 100% rename from data/connected-scatter-plot.vg.json rename to src/data/connected-scatter-plot.vg.json diff --git a/data/contour-plot.vg.json b/src/data/contour-plot.vg.json similarity index 100% rename from data/contour-plot.vg.json rename to src/data/contour-plot.vg.json diff --git a/data/county-unemployment.vg.json b/src/data/county-unemployment.vg.json similarity index 100% rename from data/county-unemployment.vg.json rename to src/data/county-unemployment.vg.json diff --git a/data/crossfilter-flights.vg.json b/src/data/crossfilter-flights.vg.json similarity index 100% rename from data/crossfilter-flights.vg.json rename to src/data/crossfilter-flights.vg.json diff --git a/data/distortion-comparison.vg.json b/src/data/distortion-comparison.vg.json similarity index 100% rename from data/distortion-comparison.vg.json rename to src/data/distortion-comparison.vg.json diff --git a/data/donut-chart.vg.json b/src/data/donut-chart.vg.json similarity index 100% rename from data/donut-chart.vg.json rename to src/data/donut-chart.vg.json diff --git a/data/dorling-cartogram.vg.json b/src/data/dorling-cartogram.vg.json similarity index 100% rename from data/dorling-cartogram.vg.json rename to src/data/dorling-cartogram.vg.json diff --git a/data/earthquakes.vg.json b/src/data/earthquakes.vg.json similarity index 100% rename from data/earthquakes.vg.json rename to src/data/earthquakes.vg.json diff --git a/data/edge-bundling.vg.json b/src/data/edge-bundling.vg.json similarity index 100% rename from data/edge-bundling.vg.json rename to src/data/edge-bundling.vg.json diff --git a/data/error-bars.vg.json b/src/data/error-bars.vg.json similarity index 100% rename from data/error-bars.vg.json rename to src/data/error-bars.vg.json diff --git a/data/falkensee-population.vg.json b/src/data/falkensee-population.vg.json similarity index 100% rename from data/falkensee-population.vg.json rename to src/data/falkensee-population.vg.json diff --git a/data/force-directed-layout.vg.json b/src/data/force-directed-layout.vg.json similarity index 100% rename from data/force-directed-layout.vg.json rename to src/data/force-directed-layout.vg.json diff --git a/src/data/gapminder/childmortality.txt b/src/data/gapminder/childmortality.txt new file mode 100644 index 0000000..dffa54d --- /dev/null +++ b/src/data/gapminder/childmortality.txt @@ -0,0 +1,174 @@ +country 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 +Afghanistan 73982 73982 73982 73982 73982 73982 74203 74203 74203 74203 74203 74221 74256 74309 74380 74470 74799 74924 75069 75231 75412 75611 75829 76067 76322 76597 77124 77438 77771 78124 78496 78888 79281 79677 80075 80474 81121 81525 81932 82341 82752 83165 83580 83997 84416 85094 85518 85945 86374 86805 87238 87607 87977 88348 88721 89364 89741 90119 90500 90881 91265 91660 92067 92486 92917 93639 94096 94565 95046 95540 96047 96566 97099 97582 98144 99015 99608 100179 100810 101458 102110 102752 103412 104076 104732 105719 106397 107070 107757 108449 109145 109845 110551 111260 112304 113015 113722 114423 115111 115785 116445 117092 117713 118327 119279 119864 120433 120968 121504 122024 122533 123029 123522 124114 125171 125963 126760 127560 128538 129491 130451 131415 132384 133360 134751 135744 137279 138653 140222 141802 143258 144710 146147 148025 149458 150876 152287 153697 155091 156478 157861 159232 160595 162437 163785 165130 166466 167790 169110 170419 171723 171565 170283 169140 168120 167222 166428 165741 166142 166724 167488 157255 157451 157229 157281 157810 158672 159520 160602 162020 163727 165096 166129 166828 166790 166377 166872 166717 164931 161024 154310 148246 140269 131643 123728 117929 110253 103791 99489 98111 100437 101417 104899 109625 113758 116169 119647 121777 122891 124044 125616 126356 126889 127140 126497 124798 123720 121973 119855 117253 114576 110628 106217 101766 97692 94261 +Albania 5068 5084 5100 5116 5132 5148 5164 5180 5197 5213 5230 5247 5264 5282 5300 5318 5337 5356 5376 5396 5416 5437 5459 5481 5503 5525 5548 5572 5596 5620 5646 5671 5696 5722 5748 5774 5799 5826 5852 5878 5905 5933 5962 5993 6026 6061 6097 6135 6174 6216 6259 6307 6357 6408 6462 6518 6575 6635 6696 6760 6826 6893 6961 7030 7100 7170 7241 7313 7385 7459 7532 7606 7681 7755 7832 7909 7987 8064 8143 8223 8304 8384 8466 8549 8632 8717 8803 8888 8977 9067 9158 9250 9344 9438 9534 9631 9727 9823 9918 10011 10102 10192 10281 10367 10452 10534 10615 10693 10772 10851 10929 11007 11086 11151 11203 11241 11279 11317 11348 11380 11413 11446 11479 11512 11540 11572 11201 10853 10477 10099 10100 10088 10063 10026 9977 9916 9845 9762 9669 9605 9496 9378 9250 9113 8968 8815 8654 8484 8308 8122 7932 7973 8202 8401 8571 8714 8828 8914 8971 8993 8976 8918 8817 8677 8503 8308 8105 7906 7721 7553 7404 7268 7140 7014 6890 6771 6657 6552 6618 6104 5653 5269 4932 4627 4373 4166 4005 3887 3768 3601 3388 3173 2910 2632 2362 2140 1937 1767 1632 1504 1380 1252 1128 1019 918 823 737 662 598 559 540 543 567 593 613 618 +Algeria 55380 55579 55778 55978 56178 56380 56582 56785 56989 57193 57412 57627 57852 58087 58332 58587 58853 59130 59417 59714 60023 60342 60672 61014 61366 61730 62106 62492 62891 63301 63723 64157 64595 65035 65478 65924 66373 66825 67280 67739 68200 68665 69133 69604 70078 70556 71036 71520 72008 72498 72992 73501 74012 74528 75047 75570 76096 76626 77160 77698 78239 78792 79356 79932 80521 81122 81735 82360 82998 83649 84313 84990 85681 86328 87048 87782 88532 89260 90047 90851 91661 92460 93285 94118 94941 95788 96643 97490 98361 99238 100124 101017 101919 102828 103742 104661 105578 106493 107401 108298 109189 110067 110924 111782 112626 113462 114284 115076 115873 116660 117439 118206 118980 119909 120999 122304 123624 124960 126281 127623 128975 130344 131727 133121 133316 133923 135059 135780 136734 137470 138760 140007 140783 141977 142696 143370 143560 144161 144718 145240 145732 146186 147991 149791 151577 148294 145052 141854 138703 135599 132543 128856 126325 124058 118466 121533 124025 124366 124057 123904 125453 128242 133033 139313 145638 151337 155864 158481 159799 160493 160971 161074 160616 159571 157721 154767 150777 145571 139077 131433 122052 110402 97216 83667 70856 60271 52371 46760 43023 40476 38686 37343 36177 34879 33371 31629 29729 27665 25771 24230 23109 22273 21739 21517 21583 21835 22336 23031 23742 24345 24683 24899 24980 24920 24676 24269 +Angola 36297 36297 36297 36297 36297 36297 36297 36345 36345 36345 36345 36358 36383 36421 36472 36536 36613 36703 36806 36923 37053 37246 37403 37574 37759 37958 38171 38398 38640 38896 39166 39450 39737 40026 40317 40665 40960 41258 41558 41860 42164 42471 42780 43091 43404 43720 44038 44358 44680 45065 45393 45755 46121 46489 46860 47235 47612 47992 48376 48762 49151 49544 49940 50405 50807 51213 51621 52033 52449 52867 53289 53714 54143 54566 55001 55439 55882 56393 56843 57296 57753 58206 58670 59137 59602 60077 60556 61032 61519 62009 62503 63084 63587 64094 64603 65113 65621 66127 66628 67121 67609 68088 68555 69019 69476 70017 70457 70881 71303 71720 72129 72533 72936 73341 73746 74154 74564 74974 75319 75781 76148 76514 76881 77250 77619 77991 78363 78633 79008 79279 80698 82110 83513 84908 86296 87675 89045 90408 91763 93110 94448 95236 96001 96742 97166 97865 98547 99208 99543 100156 100762 100765 100967 100991 100837 100487 99977 99272 98392 97469 96492 95495 94465 93422 92391 91370 90401 89460 88721 88194 87890 88829 89927 91176 92575 94117 95801 97603 99498 101467 94593 97445 100269 103010 105675 108281 111064 113605 116133 118970 122452 126124 130079 133996 137884 141489 145191 148113 150694 153556 156943 160132 163572 167036 170539 173722 176285 177687 178385 178434 178123 177033 175440 173460 171585 169310 +Antigua and Barbuda 621 616 610 605 600 594 590 583 579 574 569 564 559 554 550 544 539 535 530 526 521 516 512 508 503 499 494 490 486 481 477 474 469 465 460 457 453 449 445 441 437 433 429 426 422 418 415 411 407 404 400 397 393 389 386 382 378 374 370 366 362 357 354 350 345 342 338 334 330 326 322 319 315 311 308 305 302 299 296 295 292 290 289 287 285 284 282 281 280 278 276 273 271 268 265 262 259 254 251 247 243 239 235 232 228 224 220 216 212 208 205 201 198 195 192 189 186 183 180 178 175 173 173 174 175 176 176 177 178 179 182 186 189 192 195 198 201 204 207 210 213 214 215 217 217 218 219 220 221 221 222 218 213 208 202 195 189 181 173 166 159 152 147 142 137 133 129 124 119 113 108 101 94 87 79 72 66 60 56 52 49 46 44 42 40 38 36 34 32 31 29 26 25 24 24 24 24 25 25 25 25 24 23 21 20 19 18 17 16 15 15 14 13 13 12 12 +Argentina 10066 10066 10066 10066 10066 10066 10066 10066 10066 10066 10066 10077 10101 10137 10185 10247 10321 10409 10511 10627 10758 10903 11064 11240 11432 11641 11866 12109 12369 12647 12944 13259 13583 13914 14253 14601 14957 15321 15695 16078 16470 16871 17284 17706 18140 18585 19040 19508 19987 20479 20983 21500 22031 22575 23133 23705 24291 24893 25510 26142 26791 27468 28174 28910 29677 30476 31309 32176 33080 34021 34670 35290 38851 39817 41003 42238 43525 44707 46251 47715 49226 50807 52580 53747 54802 56007 56522 56912 57940 58801 59675 61338 63248 65701 68468 71129 72099 73107 73904 74711 75542 76636 76153 75271 74426 73616 72808 71763 70720 69677 68637 67533 66437 60831 59143 59299 59785 62470 68643 66749 63222 57429 56007 57175 60899 65234 64927 70593 62277 58537 54477 55093 52309 47499 54847 61830 56030 55190 61591 52740 53277 50199 51429 47583 48776 49990 44599 47963 41811 40763 41859 41378 40392 39419 37724 39504 36229 44660 39787 37719 35742 33859 32063 30370 28790 29037 29953 30276 30637 38323 38657 39123 39648 40025 40143 39916 39363 38237 36573 34287 31651 28882 26149 23735 21912 20721 20197 20226 20466 20576 20410 19913 19214 18339 17555 16811 16117 15436 14874 14398 14023 13841 13758 13632 13367 12904 12389 11854 11422 11017 10681 10424 10224 9973 9770 9513 +Armenia 8164 8153 8152 8142 8131 8130 8120 8109 8108 8098 8087 8080 8086 8086 8090 8107 8118 8132 8160 8182 8208 8247 8281 8318 8368 8413 8462 8524 8581 8641 8706 8784 8853 8922 9003 9074 9145 9228 9300 9373 9458 9532 9607 9694 9770 9846 9935 10013 10092 10171 10263 10343 10423 10517 10598 10681 10776 10860 10945 11043 11129 11215 11316 11404 11493 11596 11686 11777 11869 11975 12068 12162 12271 12363 12460 12571 12669 12764 12879 12979 13080 13194 13297 13400 13518 13623 13729 13834 13957 14066 14175 14302 14413 14526 14655 14770 14868 14966 15065 15165 15265 15203 15140 15078 15017 14956 14896 14832 14772 14712 14652 14592 14533 14473 14415 14356 14298 14239 14183 14126 14069 14013 13956 13900 13845 13789 13504 13220 12922 12642 12369 11807 11269 10755 10263 9793 9343 8913 8502 8108 7732 7373 7029 6701 6387 6086 5800 5526 5264 5014 4775 4859 5029 5181 5317 5397 5488 5549 5573 5557 5446 5311 5107 4807 4497 4135 3812 3818 3856 3938 4073 4259 4481 4726 4989 5269 6343 6128 5850 5602 5431 5364 5340 5336 5298 5208 5088 4916 7057 4370 3975 3591 3152 2706 2311 1978 1686 1456 1284 1164 1087 1054 1054 1069 1080 1073 1045 1001 944 887 831 779 723 671 620 577 +Australia 6171 6138 6106 6073 6041 6009 5977 5945 5913 5881 5850 5817 5783 5750 5720 5691 5661 5630 5599 5567 5540 5516 5497 5487 5482 5480 5469 5463 5460 5477 5507 5558 5614 5683 5759 5840 5927 6013 6124 6260 6415 6574 6791 7059 7379 7755 8163 8633 9144 9666 10714 11504 11408 12863 13143 15170 15592 17815 19007 20110 20921 19886 19467 17887 17516 16323 14620 14043 13301 11995 11322 10531 12323 12195 13776 15658 13378 14388 15527 13821 14390 14667 17784 16284 17881 19076 19182 18041 18561 21814 17537 19367 17539 19491 16346 15863 17505 15984 19919 18028 15256 16185 16684 16768 12256 12347 12926 12804 12361 11505 12389 11515 13394 13575 13548 12624 12847 9881 10141 11707 13060 12268 9865 10829 10367 9590 9472 9765 9712 8905 8519 7417 7477 7584 8426 7937 8429 7801 7914 8066 8164 8696 8681 8624 7226 6730 6948 6559 6320 5963 6169 5949 5735 5564 5468 5457 5494 5574 5681 5752 5775 5722 5592 5451 5319 5278 5257 5312 5387 5438 5447 5442 5378 5222 4983 4606 4154 3687 3221 2862 2666 2618 2673 2798 2903 2937 2903 2775 2614 2432 2281 2143 2051 1990 1916 1848 1789 1714 1657 1601 1532 1494 1464 1472 1470 1458 1482 1494 1508 1504 1478 1396 1323 1243 1171 1146 +Austria 44797 43249 41754 40312 38918 37573 36274 38280 37223 35382 35863 36541 35275 36158 39198 36771 34911 35423 35744 37468 36603 36944 39700 36830 38814 39991 39743 37039 38660 36130 49167 56047 50907 54724 57332 52757 50485 54386 51888 55403 53327 55156 54155 57559 51454 55572 56811 56577 56326 56082 58293 56584 56957 53797 65081 66717 58254 58164 61237 62631 58861 65511 62046 64255 62037 66860 68842 62667 61443 59971 62690 63991 69828 76838 68962 65241 68301 69066 66397 63879 67279 66705 69096 68173 68151 69619 69087 67715 68910 66058 69841 69896 72388 66282 71990 70937 68344 67399 67177 66371 70312 64487 67435 64414 64193 68204 60597 61525 58266 61192 54225 56860 50152 50463 44102 53811 45345 41729 40474 30547 37163 38226 38211 33460 28659 25088 24458 23255 21777 19431 17434 17113 17609 15089 14597 15858 14587 14295 11977 10651 10750 9987 10595 11379 12874 26381 11469 10305 9012 8437 7259 6872 6104 6022 5579 5688 5815 5934 5982 5925 5754 5502 5183 4869 4577 4331 4108 3929 3783 3653 3503 3305 3050 2745 2421 2120 1866 1680 1557 1476 1422 1377 1340 1309 1261 1194 1104 988 888 814 765 741 737 737 712 662 611 553 489 439 412 397 395 400 396 395 389 377 364 351 341 327 315 312 300 288 +Azerbaijan 18624 18585 18547 18510 18472 18434 18396 18359 18321 18284 18246 18217 18196 18183 18178 18181 18192 18212 18239 18275 18320 18373 18433 18503 18580 18666 18761 18864 18976 19096 19225 19362 19500 19640 19780 19921 20063 20207 20351 20497 20643 20790 20939 21088 21239 21390 21543 21697 21852 22008 22165 22321 22480 22638 22799 22960 23122 23285 23450 23616 23783 23950 24120 24290 24462 24635 24809 24985 25161 25339 25518 25698 25880 26056 26240 26425 26612 26793 26982 27173 27366 27553 27747 27944 28136 28335 28535 28732 28935 29140 29345 29553 29762 29972 30184 30397 30506 30615 30724 30833 30942 30813 30680 30551 30422 30293 30164 30030 29902 29774 29646 29516 29388 29261 29134 29006 28880 28753 28629 28504 28381 28256 28132 28008 27884 27761 27531 27301 27035 26806 26634 26074 25526 24991 24465 23950 23446 22952 22469 21995 21531 21076 20631 20198 19774 19359 18953 18554 18163 17781 17407 17401 17368 17456 17571 17704 17844 17967 18049 18074 17994 17786 17307 16765 16073 15261 14381 13485 12648 11892 11302 10806 10457 10824 11254 11756 12335 12990 13724 14542 18762 19144 18213 18274 18369 18506 18746 19006 19248 19419 19508 19444 19176 18680 17921 16862 15533 13957 12342 10876 9630 8618 7883 7379 7006 6737 6519 6329 6211 6200 6327 6611 6982 7296 7403 7206 +Bahamas 530 526 521 517 512 508 503 499 495 491 486 482 478 474 470 466 462 458 454 450 447 443 439 436 432 429 425 422 419 415 412 409 405 402 399 396 393 390 387 384 381 378 375 373 371 370 369 368 368 368 369 370 371 373 375 376 378 380 383 385 387 390 393 395 398 400 403 405 407 408 410 411 412 413 414 415 416 417 418 419 420 421 421 422 423 423 423 423 424 424 425 425 426 427 428 429 430 431 432 432 432 432 432 431 430 428 426 424 422 420 417 414 410 404 398 393 387 382 376 371 366 363 362 363 365 366 363 360 357 354 354 354 354 354 354 354 353 353 353 353 353 352 352 352 351 351 351 350 350 350 349 346 342 341 343 346 350 356 361 334 307 280 253 227 201 177 156 139 120 118 120 128 141 155 167 172 170 162 152 145 143 148 160 174 184 188 182 167 150 134 125 122 124 128 129 126 118 107 96 87 82 79 80 82 85 87 87 87 87 86 85 83 80 76 73 70 +Bahrain 1370 1370 1370 1370 1370 1370 1370 1370 1370 1370 1370 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1369 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1367 1365 1365 1365 1365 1365 1365 1365 1365 1365 1366 1367 1368 1370 1373 1375 1378 1381 1385 1389 1394 1395 1400 1406 1412 1418 1425 1433 1441 1449 1457 1465 1473 1482 1490 1498 1506 1515 1523 1532 1540 1549 1555 1564 1572 1581 1589 1597 1604 1612 1619 1626 1633 1640 1646 1652 1658 1664 1669 1675 1680 1688 1697 1707 1718 1730 1742 1754 1766 1778 1790 1803 1815 1827 1840 1852 1867 1880 1888 1895 1903 1911 1918 1926 1892 1859 1821 1788 1756 1724 1686 1655 1623 1592 1556 1565 1575 1584 1593 1622 1681 1744 1812 1883 1705 1641 1581 1506 1410 1323 1207 1083 971 882 812 760 716 672 626 566 508 458 421 399 381 373 370 367 359 355 348 341 333 330 328 328 331 333 331 322 304 282 255 231 210 191 178 169 164 158 156 156 159 164 162 161 158 155 151 152 150 148 142 135 +Bangladesh 451469 452360 453251 454145 455041 455938 456837 457738 458641 459545 460484 461443 462454 463520 464639 465811 467038 468320 469657 471049 472496 474000 475560 477176 478849 480580 482368 484214 486119 488082 490105 492186 494277 496376 498484 500602 502728 504863 507007 509161 511324 513496 515676 517867 520067 522275 524494 526721 528959 531205 533461 535642 537832 540030 542238 544454 546680 548914 551158 553411 555673 557989 560359 562784 565264 567800 570392 573040 575746 578510 581332 584212 587151 589880 592953 596092 599296 605997 614789 622001 629276 636568 645859 653394 660992 670693 678487 684305 690226 698326 704389 710511 716680 722897 731289 737548 743800 747856 754071 757967 764019 767723 773559 777063 782765 786047 791563 789868 790441 788534 786664 784731 785068 782816 780337 779927 777295 774649 774451 771881 769298 766759 766503 763978 761440 761141 756490 740844 723286 710023 694835 681961 667209 654613 640238 628015 614006 602030 588339 576690 563333 551879 557758 563700 569690 575727 581813 587963 594162 600410 606723 600140 604260 542941 536188 538464 544366 554824 566879 578069 586329 591890 592435 590623 590700 596258 606685 621785 638205 651347 657571 660562 655021 644941 638092 639963 646198 658113 672530 684090 688845 686590 676494 660757 642747 625098 606764 588416 569529 549144 527587 504891 480667 456232 432405 410610 390017 370937 352498 334504 316983 300591 283458 266688 249579 232606 216105 199737 183893 169711 157890 147391 138673 131509 125294 119326 +Barbados 1421 1418 1414 1411 1408 1405 1401 1398 1394 1391 1387 1385 1384 1383 1384 1386 1389 1393 1398 1433 1471 1510 1551 1594 1640 1688 1738 1790 1845 1904 1965 2029 2095 2162 2204 2246 2289 2333 2378 2423 2470 2517 2565 2613 2661 2709 2758 2807 2855 2905 2954 3004 3052 3100 3147 3193 3238 3281 3325 3366 3407 3446 3485 3522 3560 3596 3632 3668 3703 3737 3770 3803 3835 3867 3900 3933 3967 4000 4034 4069 4105 4140 4175 4212 4248 4285 4322 4360 4399 4438 4478 4519 4560 4602 4645 4688 4732 4768 4795 4814 4824 4826 4842 4824 4795 4756 4706 3335 3474 2706 2840 2749 4299 2487 4081 1938 2403 2849 2010 3422 2607 3806 1757 3434 2764 2876 2883 1840 3013 2167 2133 2799 1895 2286 2531 2214 2026 2256 2333 2081 1960 2476 1963 1869 1974 1735 1902 2002 1877 1550 1513 1665 1779 1681 1192 1031 906 805 726 664 615 574 536 496 456 417 373 329 288 253 228 210 200 194 187 177 163 146 128 115 105 101 101 102 104 103 99 93 85 78 72 68 65 63 62 60 59 58 57 57 58 59 60 61 61 60 59 56 53 51 49 48 47 46 45 44 +Belarus 41454 41454 41454 41454 41454 41454 41454 41454 41454 41454 41454 41472 41509 41564 41637 41730 41841 41972 42122 42292 42481 42690 42919 43169 43439 43729 44041 44373 44727 45102 45499 45918 46340 46766 47197 47631 48069 48511 48957 49408 49862 50321 50784 51251 51723 52199 52679 53163 53653 54146 54644 55150 55661 56177 56697 57223 57752 58287 58828 59372 59922 60478 61038 61603 62174 62750 63331 63918 64510 65108 65711 66319 66934 67535 68161 68792 69429 70055 70704 71359 72020 72192 72280 72462 72528 72703 72875 72931 73096 73154 73312 73466 73511 73657 73689 73821 73943 73944 74263 74571 74869 73705 72415 71474 70297 69109 67922 66942 65638 64440 63237 62263 61064 59879 58603 57642 56477 55314 54160 52922 51987 50855 49727 48610 47692 46512 45417 43709 42213 40556 38929 37340 35967 34461 32999 31578 30194 29003 27695 26430 25201 24141 22983 21858 20775 19838 18821 17836 16882 16069 15201 14897 14844 14704 14489 14206 13858 13453 12995 12479 9089 7636 7612 7474 5939 5093 4755 4322 4112 3860 4088 3411 3342 3325 3281 3688 3610 3532 3681 3497 3483 3380 3338 3364 3364 3336 3223 3076 2890 2693 2495 2342 2194 2049 1926 1832 1738 1665 1572 1460 1322 1208 1113 1028 972 912 860 795 738 693 659 627 617 604 579 567 +Belgium 34899 35056 35150 35309 35403 35563 35657 35697 35859 35954 36129 36233 36412 36532 36729 36865 37079 37302 37465 37578 37757 38015 38211 38486 38771 38893 39097 39235 39454 39606 38221 38860 39505 40155 40811 36167 37792 40840 42362 41642 41362 38373 40704 38011 34464 35856 40065 41261 36364 38988 32357 33924 33488 32535 37023 41939 39133 40920 41525 43871 33958 41873 40045 43765 45427 50143 50778 41237 43415 43088 45457 57113 50111 43547 44352 49922 46183 44521 44636 46041 51444 45436 43951 44452 46933 43309 49790 43275 46276 46940 48162 48147 49610 48531 42966 46995 41467 40335 42956 45833 44541 38734 39330 40257 40177 38125 39661 35570 38898 36507 35903 40103 32174 32547 37031 34908 31462 38653 35990 30207 25848 24982 22860 20204 18537 19773 19988 18888 17979 20603 18949 16075 16815 16320 14595 14875 15232 14866 14735 14414 15334 14856 14814 13946 14516 16809 13343 11026 9577 8990 8350 7934 7378 6465 6006 5787 5681 5679 5695 5680 5614 5461 5229 4953 4649 4369 4115 3876 3660 3461 3258 3087 2917 2762 2592 2438 2273 2113 1965 1840 1731 1651 1583 1520 1469 1423 1371 1313 1266 1210 1175 1133 1099 1053 999 923 851 783 715 666 637 615 603 595 600 604 606 607 605 599 590 578 561 556 537 522 +Belize 551 547 543 539 535 531 528 524 520 516 513 509 506 502 498 495 490 487 484 480 477 474 471 467 464 461 458 455 452 449 446 443 440 437 434 431 428 425 422 420 417 414 411 408 406 403 400 397 394 392 389 387 384 381 378 376 373 370 367 364 361 358 354 352 349 346 344 342 340 338 336 334 332 330 329 328 328 327 327 328 329 329 331 332 333 335 337 339 342 344 347 350 353 356 360 363 367 371 374 377 379 382 384 386 387 388 388 388 388 389 389 389 390 392 394 396 398 400 401 403 405 407 409 411 414 416 418 420 423 426 436 445 455 464 474 483 492 501 509 518 526 534 543 551 558 566 574 581 589 596 603 595 585 571 560 545 533 518 506 494 480 484 488 494 500 507 515 489 485 480 473 469 462 453 442 427 410 389 368 354 347 344 348 353 354 348 334 314 291 270 251 236 224 214 209 205 201 200 197 195 191 187 181 175 169 163 158 152 148 144 141 140 139 140 139 138 +Benin 10669 10669 10669 10669 10669 10669 10686 10686 10686 10686 10686 10691 10701 10716 10737 10762 10792 10828 10887 10934 10986 11043 11107 11176 11250 11330 11416 11507 11605 11727 11837 11953 12070 12188 12307 12427 12549 12671 12795 12921 13068 13196 13325 13455 13587 13720 13853 13989 14126 14264 14404 14545 14711 14856 15002 15149 15298 15448 15600 15753 15908 16064 16222 16407 16569 16732 16896 17062 17229 17398 17569 17742 17916 18086 18293 18473 18654 18832 19017 19204 19393 19578 19770 19964 20156 20354 20587 20785 20989 21195 21404 21614 21826 22040 22256 22473 22690 22944 23160 23375 23588 23799 24004 24212 24416 24619 24820 25012 25249 25442 25636 25835 26037 26240 26443 26649 26856 27064 27272 27482 27738 27952 28166 28382 28600 28819 29040 29308 29532 29758 30026 30294 30559 30823 31086 31347 31606 31864 32121 32376 32629 32525 32417 32306 32192 31514 31473 31470 31452 31455 27932 28442 29017 29524 29974 30394 30807 31000 31063 31136 31348 31600 31825 32035 32249 32477 32673 32892 33109 33380 33765 34138 34415 34619 34743 34851 34952 35015 35150 35395 35764 36204 36621 37026 37416 37822 38199 38449 38645 38874 39154 39321 39472 39679 39887 40092 40456 40707 40823 40867 40947 40864 40679 40477 40228 39940 39692 39403 39144 38924 38710 38510 38243 37976 37510 37092 +Bhutan 1920 1918 1917 1915 1913 1912 1910 1909 1907 1905 1904 1903 1902 1902 1902 1903 1903 1905 1907 1910 1912 1916 1919 1924 1928 1933 1939 1945 1951 1958 1966 1974 1982 1989 1997 2005 2013 2021 2030 2038 2045 2054 2062 2070 2078 2087 2095 2103 2112 2120 2129 2139 2148 2158 2168 2178 2188 2198 2208 2218 2228 2239 2249 2259 2269 2280 2291 2301 2311 2322 2333 2344 2354 2364 2376 2386 2397 2408 2419 2430 2441 2452 2464 2475 2486 2497 2509 2520 2531 2543 2555 2566 2578 2590 2602 2614 2626 2638 2650 2662 2674 2686 2698 2711 2723 2736 2748 2760 2773 2786 2798 2811 2824 2837 2850 2863 2876 2889 2900 2912 2923 2935 2947 2958 2970 2982 2994 3006 3018 3029 3050 3071 3092 3113 3134 3155 3176 3197 3218 3238 3259 3280 3300 3321 3341 3361 3382 3402 3422 3443 3463 3502 3595 3665 3721 3775 3804 3821 3826 3832 3835 3835 3834 3834 3836 3841 3850 3862 3877 3541 3576 3585 3590 3598 3606 3617 3631 3634 3620 3582 3520 3455 3347 3228 3129 3057 3023 3008 2987 2911 2752 2590 2363 2118 1899 1741 1583 1474 1399 1333 1263 1175 1088 1003 926 862 812 768 729 687 638 588 535 485 444 414 +Bolivia 19959 19959 19959 19959 19959 19959 19959 19959 19959 19959 19959 19967 19981 20002 20031 20067 20110 20160 20218 20284 20357 20438 20526 20623 20727 20838 20958 21086 21222 21365 21517 21677 21839 22001 22165 22330 22496 22663 22832 23002 23173 23342 23508 23671 23832 23990 24145 24298 24448 24595 24739 24916 25090 25261 25430 25596 25760 25920 26078 26233 26385 26533 26683 26833 26984 27136 27289 27442 27596 27751 27907 28064 28221 28377 28536 28696 28857 29017 29179 29342 29506 29669 29835 30002 30168 30336 30505 30674 30845 31017 31189 31363 31537 31713 31888 32063 32248 32441 32643 32852 33189 33415 33617 33863 34120 34387 34650 34905 35162 35413 35664 35911 36157 36530 37037 37672 38324 38981 39587 40213 40758 41179 41521 41860 42201 42539 42887 43237 43591 43942 44337 44726 45113 45498 45876 46253 46625 46995 47360 47722 48080 47389 46693 45992 45434 44728 44872 45013 45149 45280 45409 45322 45478 45651 45840 46045 46263 46498 46746 47009 44512 43941 43808 43925 44038 44047 43904 43497 42923 42325 41855 41430 40896 40324 39752 39251 38810 38372 37913 37432 36965 36469 35869 35149 34345 33511 32662 31713 30746 29815 28917 28042 27217 26390 25554 24732 23908 23015 22077 21116 20137 19162 18132 17148 16167 15285 14441 13637 12918 12244 11661 11107 10616 10130 9743 9415 +Bosnia and Herzegovina 13300 13300 13300 13300 13300 13300 13300 13300 13300 13300 13300 13306 13317 13334 13356 13385 13419 13459 13505 13557 13615 13679 13749 13826 13908 13997 14093 14194 14303 14418 14539 14667 14796 14926 15057 15190 15324 15458 15594 15732 15870 16010 16151 16293 16437 16581 16727 16874 17023 17173 17324 17368 17411 17426 17468 17509 17549 17561 17600 17638 17676 17684 17720 17874 18000 18157 18285 18445 18606 18737 18901 19034 19200 19331 19499 19670 19808 19976 20117 20292 20470 20609 20789 20936 21115 21263 21448 21633 21784 21975 22129 22322 22517 22675 22872 23031 23228 23385 23580 23773 23923 24111 24251 24435 24615 24750 24925 25049 25218 25341 25505 25667 25785 25948 26112 26231 26396 26562 26685 26854 27024 26719 26373 26114 25725 25464 25078 24817 24475 24171 24106 23946 23861 23682 23577 23378 23254 23123 22896 22748 22503 22339 22080 21900 21590 21360 21123 20795 20547 20209 19951 19363 18600 17944 17390 16933 16562 16264 16023 15810 15594 14588 13593 12600 11617 10663 9761 8933 8189 7522 6919 6305 5729 5189 4684 4226 3825 3485 3199 2961 2649 2518 2383 2236 2484 2337 2142 1910 1654 1415 1194 1020 1020 932 723 678 542 518 502 479 440 383 324 269 227 210 215 246 282 307 310 293 263 227 193 169 +Botswana 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2152 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2155 2156 2156 2156 2157 2158 2158 2159 2162 2163 2163 2164 2164 2165 2166 2166 2166 2167 2168 2168 2169 2169 2170 2170 2171 2171 2172 2172 2173 2173 2174 2175 2175 2175 2176 2177 2177 2178 2178 2179 2179 2180 2180 2184 2185 2185 2185 2185 2185 2184 2184 2184 2183 2185 2187 2190 2194 2197 2203 2209 2222 2232 2262 2303 2345 2386 2428 2470 2512 2555 2599 2659 2735 2829 2926 3026 3130 3237 3348 3463 3629 3794 3958 4121 4283 4444 4603 4762 4919 5075 5230 5384 5537 5689 5839 5686 5532 5378 5224 5072 4921 4728 4608 4484 4558 4497 4421 4273 4097 3928 3811 3727 3708 3723 3748 3758 3745 3716 3679 3641 3604 3556 3498 3439 3385 3335 3282 3233 3185 3123 3049 2976 2893 2799 2711 2627 2548 2486 2449 2449 2497 2598 2726 2885 3064 3247 3434 3595 3730 3883 3918 3852 3747 3644 3527 3214 2968 2976 2993 2840 2719 2714 2673 2586 2537 2488 +Brazil 66001 66710 67427 68151 68883 69624 70372 71128 71892 72665 73599 74410 75250 76120 77020 77951 78913 79908 80937 81999 83095 84227 85395 86600 87842 89122 90442 91802 93202 94644 96129 97657 99210 100787 102389 104016 105670 107350 109057 110790 112551 114337 116147 117981 119841 121726 123637 125575 127538 129529 131547 133611 135704 137826 139977 142158 144368 146610 148882 151186 153521 155918 158382 160914 163516 166189 168937 171759 174658 177636 180693 183834 187059 190033 193435 196931 200816 204243 208364 212606 216618 237530 241645 245831 249887 254325 258952 263309 268269 273452 278867 284520 290419 296572 302969 309627 314038 318359 322582 326708 330711 334602 338308 346369 354461 362586 370786 378714 387138 395696 404399 411956 419756 427688 435771 443998 452140 460420 468766 477288 485858 494468 503106 511858 520784 529850 539066 548450 557978 567668 584494 592021 600811 607320 613270 620749 625787 632382 636523 640217 645584 633673 623345 612475 599057 587250 582971 578467 573771 568862 563769 553328 549046 545888 543818 536414 534384 529857 524374 519107 517418 518842 522651 526106 526290 520226 508269 490447 469215 449390 434528 423650 417354 414509 412467 409713 406225 400910 393936 384049 372453 359505 345756 330966 315466 299269 282690 265090 248228 232794 218720 205948 193769 182578 171928 162300 153578 145843 137897 130050 121560 112275 102800 93417 84492 75911 68023 61178 55055 50456 47835 46876 47449 49094 51117 52415 +Brunei 47 47 47 47 47 47 47 47 47 47 47 47 47 47 47 48 48 48 49 49 50 50 51 51 52 53 54 55 56 57 58 59 60 62 63 64 65 67 68 70 71 73 74 76 77 79 80 82 84 86 87 89 91 93 95 97 99 101 103 105 107 110 112 115 117 120 123 126 130 133 136 140 144 147 152 156 161 166 171 176 182 187 193 200 206 212 219 226 233 241 249 257 265 274 282 291 301 311 321 331 341 352 363 374 385 397 410 421 434 447 459 471 470 467 464 461 457 454 450 447 443 439 435 430 425 420 415 411 407 402 409 414 419 423 427 429 431 433 434 434 433 432 431 429 426 423 419 415 411 406 400 393 383 374 366 363 360 359 357 355 352 347 339 331 321 311 304 299 298 301 306 312 316 290 263 237 212 188 166 146 179 113 103 99 95 92 89 88 87 87 86 86 86 85 84 82 79 74 70 67 64 62 60 59 58 57 56 54 53 53 55 58 63 69 74 77 +Bulgaria 26907 27033 27072 27198 27236 27363 27404 27532 27573 27701 27842 27881 28011 28051 28181 28220 28350 28481 28518 28649 28686 28817 28854 28986 29021 29153 29284 29320 29452 29488 29620 29656 29789 29824 29957 30091 30127 30262 30298 30433 30469 30600 30729 30752 30872 30887 31000 31006 31111 31108 31205 31299 31287 31373 31351 31429 31399 31469 31431 31493 31551 31519 31612 31620 31753 31800 31974 32170 32279 32517 32668 32950 33144 33364 33609 33990 33740 33390 33178 32865 32650 33657 37183 39438 39989 39621 34735 41491 41190 40687 39352 44486 41567 40875 45043 48795 50361 52260 49119 51249 53960 52726 51652 51990 52490 52784 52642 52655 52484 52327 52179 52435 52572 52629 52612 52713 52859 53003 53340 53485 53711 53390 53440 53377 53103 52612 51513 49125 46851 44393 42778 41533 40317 39123 37955 36809 35689 34590 34810 35029 35246 35465 35682 35899 36115 36330 36543 36757 33650 29857 24519 25449 24883 18849 19118 18922 15961 14377 11203 11585 9186 7525 7153 6362 6169 6032 5970 5923 5790 5568 5333 5179 5094 5046 4984 4915 4811 4661 4458 4216 3950 3683 3405 3142 2903 2703 2562 2505 2507 2544 2559 2492 2321 2097 1868 1697 1582 1532 1505 1460 1397 1332 1262 1182 1112 1057 1030 1017 1022 1020 1001 949 861 773 689 634 +Burkina Faso 31791 31791 31791 31791 31791 31791 31791 31791 31838 31838 31838 31850 31871 31905 31950 32006 32073 32152 32243 32346 32460 32586 32724 32875 33087 33262 33449 33649 33861 34086 34324 34574 34827 35080 35336 35594 35854 36115 36379 36644 36967 37237 37508 37782 38058 38335 38615 38896 39180 39466 39754 40044 40335 40629 40925 41285 41585 41888 42193 42501 42810 43122 43436 43752 44071 44392 44715 45041 45369 45699 46032 46437 46775 47107 47450 47796 48144 48487 48840 49196 49553 49908 50271 50637 50999 51371 51822 52194 52574 52957 53343 53732 54123 54517 54913 55308 55702 56093 56479 56860 57234 57600 58042 58396 58742 59082 59414 59730 60046 60356 60660 60965 61270 61576 61883 62190 62499 62809 63215 63529 63844 64160 64475 64794 65113 65434 65757 65981 66303 66627 67406 68177 68945 69711 70469 71223 71974 72720 73459 74196 74928 75347 75756 76156 75370 75998 76620 77198 77709 78273 72277 72686 72760 72545 72440 72642 73091 73371 73324 73074 73167 73632 73590 73360 73414 74000 74984 76109 77493 78939 80498 82007 82497 81915 80603 79071 77616 76233 75313 74985 75110 75800 76299 76619 76805 76917 76926 76685 76746 77444 78850 80758 83022 85188 87077 88706 90177 91123 92090 93001 93999 94802 94869 94131 92414 90044 87119 83525 79635 75711 72166 69142 66485 64094 62096 60477 +Burundi 17864 17864 17864 17864 17864 17864 17864 17864 17864 17864 17864 17871 17884 17904 17931 17964 18005 18052 18106 18168 18236 18312 18394 18484 18581 18686 18798 18917 19045 19179 19322 19471 19623 19775 19928 20083 20239 20396 20554 20714 20874 21036 21200 21364 21530 21697 21866 22035 22206 22379 22552 22705 22860 23015 23171 23329 23487 23647 23807 23969 24132 24296 24461 24660 24827 24996 25165 25336 25507 25680 25855 26030 26206 26379 26557 26737 26918 27095 27279 27464 27650 27832 28021 28210 28397 28589 28783 28974 29170 29367 29565 29765 29966 30169 30372 30574 30776 30976 31173 31366 31555 31741 31919 32097 32270 32439 32604 32759 32915 33067 33215 33361 33507 33651 33796 33941 34088 34233 34428 34610 34794 34977 35163 35348 35535 35703 35873 36042 36212 36382 36748 37111 37470 37826 38180 38532 38879 39225 39567 39908 40245 40580 40911 41241 41566 41891 40420 38977 37554 36268 35766 35074 34584 34145 33754 33408 33103 32838 32609 32411 32882 33396 33934 34531 32897 34233 35534 36657 37554 38234 38712 39174 39371 39522 39915 40757 41535 42345 42967 43335 43334 42993 42187 41251 40608 40461 40809 41760 43112 44521 45708 46871 47415 47423 46965 46224 45344 44315 43258 42446 42007 41280 40825 40551 40376 40158 39881 39538 39257 39069 38779 38666 38300 37831 37343 36970 +Cambodia 37977 37977 37977 37977 37977 37977 37977 37977 37977 37977 37977 37981 37989 38001 38018 38038 38063 38092 38125 38162 38203 38249 38298 38352 38411 38473 38539 38610 38685 38765 38848 38936 39024 39112 39201 39290 39378 39468 39557 39646 39736 39826 39916 40006 40097 40188 40279 40370 40461 40553 40644 40745 40846 40947 41049 41151 41253 41355 41458 41560 41663 41775 41895 42024 42161 42308 42464 42628 42801 42984 43175 43376 43587 43763 43995 44238 44491 44733 45016 45311 45608 45902 46202 46505 46805 47112 47420 47728 48040 48355 48672 48991 49311 49635 49958 50282 50603 50921 51236 51543 51844 52138 52423 52704 52979 53245 53506 53753 53998 54238 54472 54699 54927 55212 55555 55956 56360 56764 57157 57556 57958 58362 58769 59176 59587 60001 60418 60837 61257 61681 62394 63104 63809 64510 65204 65896 66590 67279 67962 68643 69318 69990 70658 71320 71980 72635 70974 69546 67883 66450 64790 64938 65198 65642 66039 66611 67130 67584 67949 68309 68636 68896 68828 68645 68327 67887 68216 68480 68675 68776 68666 73208 77617 81909 86212 98390 83809 67162 51117 39527 34235 32736 35787 40932 46037 49534 50581 48997 45850 42896 41249 40683 41563 43392 45290 46309 46106 44631 41961 38558 34884 31316 28037 25383 23476 22042 20930 19874 18792 17567 16171 14746 13295 12025 11022 10257 +Cameroon 33275 33275 33275 33275 33275 33275 33275 33275 33275 33275 33275 33280 33289 33304 33322 33346 33375 33408 33446 33489 33536 33589 33647 33709 33776 33848 33925 34007 34094 34186 34283 34385 34487 34590 34692 34796 34899 35003 35107 35211 35316 35421 35526 35632 35738 35844 35950 36057 36164 36272 36380 36488 36598 36707 36817 36927 37038 37149 37260 37371 37483 37595 37708 37821 37934 38047 38161 38275 38390 38504 38620 38735 38851 38966 39083 39200 39317 39434 39552 39670 39789 39907 40027 40146 40266 40386 40507 40627 40749 40871 40993 41116 41239 41362 41484 41606 41724 41838 41947 42048 42145 42234 42318 42394 42463 42527 42583 42633 42676 42713 42745 42774 42801 42826 42858 42892 42924 42955 42986 43017 43048 43078 43108 43138 43168 43197 43685 44645 46092 47586 49172 50748 52318 53879 55432 56978 58515 60045 61566 63079 64585 66083 67572 69053 70528 71071 71580 72059 72507 72924 73310 72486 72063 71849 70059 68136 66275 64544 62949 61905 61640 62036 62834 63874 64783 65355 65479 64833 63578 62226 61027 60204 59931 60358 61424 63085 65056 66866 68246 69280 69980 70338 70314 69940 69264 68470 67848 67569 67744 68701 70624 73282 76403 79810 83171 86507 89564 92038 93730 94571 94332 93398 91919 90358 88892 87618 86221 84665 83054 81359 79323 77598 75910 74208 72574 71348 +Canada 8614 8715 8818 8922 9027 9133 9241 9350 9460 9572 9709 9836 9978 10136 10310 10501 10709 10936 11182 11448 11735 12045 12378 12737 13121 13533 13973 14443 14943 15475 16041 16643 17155 17742 18352 18921 19575 20253 20956 21612 22367 23138 23924 24726 25632 26469 27322 28191 29179 30087 31011 31916 32910 33772 34728 35543 36455 37216 38080 38783 39591 40215 40248 40254 40164 40103 40010 39878 39641 39440 39208 40794 40840 40834 40888 40940 40987 40862 40905 40941 40987 41038 41153 41411 41532 41771 41835 42037 42219 42233 42389 43065 43750 44444 45148 45874 46625 47428 48331 49346 50471 45583 36945 37225 30162 34330 39122 51796 68751 46472 60846 66547 59504 63757 62474 59869 65137 52800 54287 57128 68022 37798 36586 34664 30862 29412 31572 29797 28879 30566 30663 29121 25495 24549 24836 25296 24349 29812 25471 24290 23868 25234 23327 22809 22746 20673 21023 20920 19159 18781 17848 16562 15817 15445 15304 15325 15465 15580 15625 15569 15305 15002 14485 13818 12967 12056 11008 9928 8849 8014 7382 6975 6752 6699 6577 6347 6034 5672 5265 4863 4534 4279 4078 3888 3736 3618 3524 3426 3328 3272 3185 3111 3044 2967 2901 2754 2610 2432 2276 2140 2041 2005 2011 2014 2065 2122 2149 2181 2206 2217 2201 2121 2056 1978 1872 1824 +Cape Verde 979 979 979 979 980 980 980 980 980 980 982 982 983 984 986 988 991 995 999 1003 1007 1012 1017 1023 1031 1037 1044 1052 1061 1069 1080 1089 1099 1109 1119 1129 1139 1151 1162 1172 1183 1193 1204 1216 1227 1238 1249 1261 1272 1283 1297 1308 1320 1332 1344 1355 1369 1381 1394 1406 1419 1432 1444 1459 1472 1485 1499 1512 1526 1539 1555 1569 1583 1597 1611 1625 1642 1656 1671 1686 1701 1715 1731 1749 1764 1780 1796 1811 1828 1846 1863 1879 1896 1913 1930 1947 1967 1984 2000 2018 2034 2050 2069 2085 2101 2116 2132 2146 2161 2179 2193 2208 2222 2237 2251 2266 2284 2298 2313 2329 2344 2359 2377 2393 2408 2424 2440 2452 2468 2480 2514 2548 2581 2615 2648 2681 2638 2586 2541 2496 2443 2397 2351 2296 2248 2200 2144 2096 2047 1990 1940 1941 1955 1966 1965 1968 1967 1955 1948 1940 1942 1944 1948 1952 1957 1961 1964 1963 1959 2025 1803 1630 1481 1355 1248 1160 1085 1025 982 959 957 965 983 1005 1019 1017 1001 969 930 891 863 832 808 787 763 730 686 633 572 509 450 400 361 333 315 307 307 310 313 315 314 308 298 288 277 267 +Chad 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26076 26090 26104 26119 26133 26147 26162 26176 26190 26205 26219 26233 26248 26262 26277 26291 26305 26319 26334 26348 26363 26377 26391 26405 26420 26434 26448 26463 26477 26492 26506 26520 26534 26549 26563 26578 26592 26606 26620 26635 26649 26663 26678 26692 26706 26718 26728 26736 26739 26739 26735 26726 26713 26695 26674 26649 26619 26584 26546 26504 26459 26412 26364 26314 26265 26216 26166 26116 26048 25985 25921 25858 25795 25731 25668 25605 25541 25478 25414 25350 26348 27339 28325 29271 30209 31140 32062 32977 33884 34784 35677 36561 37439 38309 39170 40025 39760 39341 39014 38657 38151 38190 38412 38466 38598 38552 38452 38429 38226 38015 38410 38814 39232 39678 40164 40718 41369 42124 42986 43946 44612 45342 42204 43576 44854 46007 47211 48114 48796 49469 50279 51095 51880 52644 53538 54641 55740 56868 58051 59280 60616 62050 63431 64857 66403 68099 69810 71326 72723 74084 75614 77136 78691 80182 81638 82981 84329 85017 85286 85197 85197 85052 84574 83910 83343 82728 +Chile 13417 13417 13417 13417 13417 13417 13417 13417 13417 13417 13417 13432 13462 13507 13568 13644 13738 13847 13973 14117 14277 14455 14650 14863 15093 15342 15608 15892 16195 16515 16854 17211 17573 17938 18306 18678 19052 19429 19810 20192 20578 21030 21486 21982 22450 22923 23402 23887 24413 24910 25414 25928 28455 27758 27342 28699 29700 29728 28060 28522 33169 28044 29363 29838 31434 27182 29458 30785 32699 33860 34557 34436 37165 38407 38829 37575 36361 35355 33677 38025 36314 44560 41009 42404 40596 26364 33166 34683 37726 41815 41183 38077 44309 45446 49607 47357 47142 49375 48897 51520 60993 71145 63330 62231 67745 59279 78181 71555 77334 77581 66596 84109 73413 73032 64997 64625 61215 68153 65187 78942 68489 73092 63755 75935 72148 70757 69644 63481 60039 63923 67806 68263 70193 78166 80546 78306 79741 77357 76818 74264 72612 67837 67013 67538 63797 65685 57841 58939 53994 57985 55613 54206 53377 52528 51609 50635 49616 48557 47463 46111 42980 40872 39655 38360 36207 33314 30164 27240 24982 23620 22830 22130 21205 19939 18330 16417 14272 12125 10386 9237 8409 7692 6960 6405 6096 6015 6062 6148 6137 5929 5569 5116 4646 4163 3757 3440 3236 3138 3083 2953 2789 2620 2473 2377 2306 2239 2200 2162 2150 2114 2104 2070 2036 1979 1948 1896 +China 5185693 5229765 5274212 5319036 5364241 5409831 5455808 5502176 5548938 5596097 5651070 5698693 5746314 5793929 5841537 5889133 5936714 5984279 6031823 6079342 6126836 6172293 6215697 6257027 6296264 6333388 6368381 6401221 6431888 6460364 6486626 6510423 6532140 6551759 6569267 6584650 6597890 6608975 6617887 6624612 6629133 6628641 6625148 6618679 6609259 6596911 6581658 6563524 6542533 6518708 6492071 6663596 6836461 7010160 7185405 7361671 7539336 7361150 7162721 6988006 6815790 6647321 6466982 6313568 6165846 6118386 6056054 6016057 5961327 5928384 5880805 5855060 5849965 5836289 5836697 5839715 5845338 5848305 5861189 5876947 5892904 5908258 5924646 5941257 5957503 5975617 5994925 6013004 6034077 6056327 6079764 6104322 6130008 6156833 6184505 6213178 6242867 6272179 6300953 6329331 6356846 6383787 6409188 6435103 6460395 6485207 6509152 6531585 6553434 6581691 6616566 6650573 6706167 6762023 6818306 6875015 6932155 6989729 7050206 7110541 7153476 7178889 7186654 7194385 7202263 7209923 7217548 7225135 7232684 7240196 7364299 7373312 7377865 7380584 7379002 7375635 7367910 7405731 7416767 7448750 7479728 7565132 7649400 7733004 7815485 7897088 7977577 8057202 8135973 8213903 8290739 7949245 7461520 7068166 6764775 6546771 6058368 5669736 5361050 6333245 7534844 6628413 4416173 4047420 3695548 3353778 3581313 3794664 3988879 3657016 3445201 3217443 2958047 2681465 2401421 2126756 1864667 1626229 1430353 1283627 1189177 1140288 1137471 1168710 1226284 1301161 1395758 1502915 1600823 1651886 1633808 1544647 1375893 1162575 960972 809206 700611 644236 621642 607828 585027 554286 519912 482382 443233 406101 370640 335768 303084 274052 251554 233813 219549 205470 193048 181574 +Colombia 21646 21646 21646 21646 21646 21646 21646 21646 21646 21646 21646 21665 21702 21759 21836 21932 22050 22187 22346 22527 22729 22954 23201 23472 23766 24084 24426 24793 25186 25605 26049 26520 27000 27488 27986 28492 29007 29532 30066 30610 31164 31708 32244 32770 33286 33793 34288 34773 35247 35709 36160 36614 37056 37485 37902 38305 38694 39069 39429 39774 40103 40437 40794 41175 41580 42011 42467 42948 43457 43994 44558 45151 45774 46294 46982 47703 48459 49166 50012 50897 51798 52675 53608 54557 55485 56468 57467 58451 59486 60539 61610 62701 63811 64941 66087 67252 68453 69687 70954 72257 73596 75213 76777 78491 80252 82066 83908 85696 87340 89007 90694 92380 94121 96026 98149 95070 92086 89192 86543 83986 81508 79102 76770 74435 72176 61958 79868 79526 71215 68201 58837 74264 82942 92553 75114 108186 108901 109443 117359 125311 111057 121157 127778 133564 134759 133877 135803 128187 126536 126926 118087 114409 105769 118415 113647 109223 105110 101264 97647 88184 88556 89156 90104 91109 91759 91921 91508 90420 88417 85568 81964 77513 72353 67112 62574 59207 56778 55512 54644 53475 51654 49147 46167 43096 40211 37832 35864 34317 33106 32041 31105 30329 29625 28908 27980 26963 25661 24288 22881 21686 20708 20045 19658 19340 18941 18364 17686 16853 15943 15070 14307 13743 13190 12772 12364 11934 +Comoros 981 981 981 981 981 981 981 981 981 981 981 982 983 984 985 987 989 992 995 998 1002 1006 1011 1016 1022 1027 1034 1040 1047 1055 1063 1071 1080 1088 1097 1105 1114 1123 1132 1141 1149 1159 1168 1177 1186 1196 1205 1214 1224 1234 1243 1253 1263 1273 1283 1293 1303 1313 1323 1333 1344 1354 1365 1375 1386 1397 1408 1419 1430 1441 1452 1464 1475 1486 1498 1509 1521 1533 1544 1556 1569 1581 1593 1605 1618 1630 1643 1655 1668 1681 1695 1708 1721 1735 1748 1761 1775 1788 1801 1814 1827 1840 1852 1864 1876 1888 1900 1910 1922 1933 1943 1954 1964 1975 1985 1996 2007 2018 2029 2039 2051 2062 2073 2084 2096 2107 2115 2120 2128 2136 2158 2181 2203 2225 2247 2269 2291 2312 2334 2355 2376 2397 2418 2439 2459 2480 2379 2280 2182 2086 1992 2066 2186 2303 2414 2521 2624 2721 2814 2903 2988 2909 2829 2750 2674 2600 2529 2461 2396 2336 2267 2246 2228 2215 2218 2243 2270 2306 2346 2375 2388 2398 2392 2372 2345 2317 2285 2249 2210 2172 2133 2090 2041 1999 1969 1949 1943 1952 1969 1993 2019 2051 2086 2110 2123 2125 2118 2109 2097 2075 2055 2027 2004 1970 1937 1897 +Congo, Dem. Rep. 91070 91070 91070 91070 91070 91070 91070 91070 91070 91070 91070 91098 91156 91243 91359 91505 91680 91885 92120 92386 92682 93009 93366 93755 94175 94627 95110 95625 96172 96752 97364 98009 98659 99312 99970 100633 101299 101970 102646 103326 104010 104699 105393 106091 106794 107502 108214 108931 109653 110379 111110 111838 112571 113309 114051 114798 115550 116307 117069 117837 118609 119386 120168 120955 121748 122546 123348 124156 124970 125789 126613 127442 128278 129099 129945 130797 131653 132499 133367 134241 135120 135990 136881 137778 138666 139575 140489 141397 142324 143256 144195 145139 146090 147048 148004 148963 149918 150861 151788 152699 153590 154465 155307 156138 156952 157744 158516 159248 159973 160681 161373 162050 162726 163399 164075 164752 165431 166108 166807 167504 168203 168904 169607 170307 171013 171722 172432 173144 173858 174569 176192 177789 179375 180934 182477 184000 185506 186991 188461 189910 191333 188620 186469 183739 180980 178196 175987 173185 170361 167546 165260 165442 167374 169514 171851 174378 177089 179982 183035 186249 189605 193650 197832 202124 206495 210920 215370 219839 224331 218646 221414 224620 227090 228930 231057 233174 235511 237879 240200 242635 245393 249014 252576 256426 260711 265934 270692 275170 280050 285968 294179 302512 312220 322019 330329 336350 341379 343216 342643 341771 341834 341751 342095 342416 342390 340975 337802 333995 329785 325122 321517 317796 314278 310394 308095 304558 +Congo, Rep. 5099 5099 5099 5099 5099 5099 5099 5099 5099 5099 5099 5101 5105 5110 5117 5126 5137 5150 5164 5181 5199 5219 5241 5265 5291 5319 5349 5381 5415 5451 5489 5529 5569 5610 5651 5691 5733 5775 5817 5859 5902 5945 5988 6032 6076 6120 6164 6209 6255 6300 6346 6392 6438 6484 6531 6578 6626 6673 6722 6770 6819 6868 6918 6968 7018 7069 7120 7171 7223 7275 7327 7381 7434 7486 7540 7595 7649 7703 7759 7815 7871 7927 7984 8042 8099 8157 8216 8275 8334 8394 8455 8516 8577 8640 8701 8764 8826 8887 8948 9007 9066 9123 9179 9234 9288 9342 9393 9443 9492 9541 9588 9634 9681 9728 9774 9821 9868 9915 9963 10018 10074 10129 10184 10241 10297 10353 10410 10467 10524 10581 10695 10808 10921 11033 11144 11255 11366 11476 11585 11694 11803 11911 12018 12125 12231 12336 11759 11194 10642 10235 9843 9455 9169 8906 8662 8437 8226 8030 7332 7380 7431 7480 7530 7604 7660 7692 7710 7710 7716 7735 7767 7816 7852 7899 7975 8029 8084 8125 8143 8124 8100 8051 7964 7849 7728 7636 7592 7604 7681 7841 8077 8393 8770 9223 9796 10460 11228 12057 12847 13509 13918 14078 13884 13426 12830 12175 11448 10766 10079 9442 8878 8436 8089 7774 7502 7269 +Costa Rica 1094 1115 1125 1135 1146 1156 1167 1177 1188 1199 1211 1223 1234 1245 1256 1268 1280 1292 1305 1319 1333 1348 1364 1379 1396 1413 1431 1450 1471 1492 1516 1540 1567 1595 1624 1654 1685 1715 1746 1776 1807 1839 1870 1901 1933 1965 1997 2029 2060 2092 2122 2152 2181 2210 2238 2266 2296 2328 2362 2397 2434 2472 2514 2556 2600 2647 2696 2746 2799 2854 2912 2971 3034 3092 3161 3232 3308 3376 3458 3544 3634 3714 3813 3911 4004 4119 4241 4350 4485 4624 4707 4780 4705 4794 4881 4950 5042 5135 5200 5269 5340 5466 5583 5741 5865 6013 6142 6261 6349 6427 6498 6580 6637 6647 6636 6659 6577 6548 6646 6744 6851 6815 6840 6897 6952 6983 7033 7081 7039 6995 6999 7046 7112 7148 7177 7202 7247 7261 7268 7300 7298 7179 7053 6893 6756 6614 6466 6312 6126 5965 5799 5876 6027 6179 6267 6324 6374 6404 6413 6399 6357 6285 6180 6042 5874 5587 5326 5127 4970 4820 4607 4238 3736 3259 2903 2630 2366 2100 1892 1769 1715 1714 1729 1737 1717 1670 1603 1529 1469 1421 1384 1354 1321 1294 1265 1237 1217 1198 1161 1102 1022 938 866 795 754 724 721 736 757 766 772 760 745 717 690 663 +Cote d'Ivoire 21769 21769 21769 21769 21769 21769 21769 21769 21769 21769 21769 21776 21790 21811 21840 21876 21918 21969 22027 22092 22165 22245 22333 22429 22532 22643 22762 22889 23024 23166 23317 23476 23635 23796 23958 24121 24286 24451 24618 24786 24954 25124 25295 25468 25641 25815 25991 26168 26346 26526 26706 26885 27065 27246 27428 27612 27797 27983 28170 28359 28549 28740 28932 29126 29321 29517 29714 29913 30114 30315 30518 30722 30928 31130 31339 31549 31760 31968 32182 32397 32614 32828 33048 33269 33488 33712 33938 34162 34391 34621 34853 35086 35321 35557 35794 36031 36266 36499 36730 36955 37176 37392 37602 37808 38011 38208 38400 38583 38764 38941 39114 39284 39453 39621 39791 39961 40125 40289 40460 40629 40801 40971 41143 41314 41487 41660 41776 41950 42065 42183 42653 43119 43583 44045 44503 44958 45408 45857 46302 46745 47185 47620 48054 48483 48911 49336 49755 49831 49900 49964 50021 50379 51600 52885 54233 55641 56311 50135 51181 52292 53412 54264 54912 55595 56318 57301 58165 59074 60119 61130 62191 62879 63299 63469 63440 63232 62960 62749 62666 62759 63053 63484 63921 64485 65286 66394 67868 69629 71579 73771 76076 78439 80756 83146 85563 87834 90396 92668 94323 95227 95242 94973 93823 92065 90117 88144 86231 84273 82079 80685 79629 78804 77983 77118 76127 75393 +Croatia 18110 18110 18110 18110 18110 18110 18110 18110 18110 18110 18110 18117 18133 18156 18186 18225 18272 18327 18390 18460 18540 18627 18724 18828 18941 19062 19192 19331 19479 19636 19802 19977 20153 20331 20511 20692 20874 21059 21245 21432 21622 21812 22005 22199 22395 22593 22793 22994 23197 23402 23608 23817 24028 24240 24454 24671 24889 25109 25331 25555 25781 26009 26239 26470 26704 26940 27179 27419 27662 27906 28153 28401 28653 28899 29154 29412 29672 29927 30192 30459 30728 33071 33986 34914 35849 36805 36083 35340 34587 33818 33033 34032 35046 36075 37118 38176 37962 37739 37503 37254 36994 37020 37035 37046 37049 37043 37031 37003 36974 36938 36896 36845 36793 36738 36681 37622 38573 39535 40507 41490 41295 40044 38819 37613 36426 35041 33687 32364 31069 29803 28543 27421 26332 25272 24240 23234 22256 21308 20385 19488 18616 17720 16858 16024 15215 14433 13676 12948 12245 11565 10850 10476 10013 9574 9157 8762 8386 8030 7688 7360 7041 6339 5700 5121 4598 4134 3729 3379 3079 2820 2594 2465 2343 2224 2109 1994 1885 1782 1685 1594 1507 1385 1345 1304 1261 1187 1105 999 900 802 714 639 572 522 482 458 448 453 456 454 437 403 355 304 263 240 234 242 255 263 263 248 229 205 182 165 +Cuba 5783 5939 6080 6244 6413 6565 6742 6903 7089 7258 7544 7704 7889 8049 8236 8424 8612 8802 8994 9189 9328 9438 9577 9686 9827 10130 10408 10727 11019 11360 11601 11812 12063 12277 12530 12787 13086 13347 13653 13916 14272 14628 15033 15392 15750 16058 16313 16616 16863 17160 17398 17695 17911 18166 18344 18562 18761 18880 19041 19183 19557 19875 20269 20609 21026 21865 22808 23716 24720 25672 25775 25948 26033 26131 26263 25541 24845 24257 23627 23014 22528 22006 21475 20851 20301 20064 19745 19518 19182 18909 21967 24407 27031 29616 32430 32122 31814 31556 31477 31437 23120 25821 30321 29128 29824 30570 31413 32133 32791 33428 34150 34873 35591 36270 37081 37847 38681 39517 40275 40963 41060 41054 41079 38859 36784 34725 32744 30902 28984 27181 26347 25512 24678 30665 22542 31034 25617 20659 20030 19790 19542 19284 19019 18746 15205 18952 10682 11208 10534 10445 9740 10559 9573 9104 7591 8307 7952 9065 9707 10477 11317 12159 12938 12567 13580 13966 13684 12868 11751 10655 9638 8610 7804 7410 7244 6823 5894 4705 3663 2954 2611 2537 2732 3040 3311 3440 3396 3228 2993 2744 2496 2238 1974 1767 1651 1559 1487 1436 1394 1341 1292 1220 1143 1055 970 896 845 801 777 756 736 718 693 680 665 647 +Cyprus 2625 2625 2626 2626 2626 2626 2627 2627 2628 2628 2628 2628 2629 2629 2629 2629 2630 2630 2630 2631 2631 2631 2631 2632 2632 2632 2633 2633 2633 2633 2634 2634 2634 2634 2635 2635 2635 2636 2636 2636 2636 2637 2637 2637 2638 2638 2638 2638 2639 2639 2639 2640 2640 2640 2641 2641 2642 2642 2642 2643 2643 2644 2644 2645 2645 2645 2646 2646 2647 2647 2648 2648 2650 2651 2654 2659 2638 2609 2590 2568 2553 2527 2514 2503 2484 2477 2468 2464 2463 2458 2456 2450 2448 2442 2439 2436 2372 2321 2258 2208 2146 2158 2113 2077 2034 1998 2043 2079 2124 2160 2204 2235 2273 2300 2337 2364 2318 2272 2226 2178 2130 2080 2029 1976 1922 1868 1980 2094 2210 2327 2361 2395 2429 2462 2496 2529 2562 2595 2544 2492 2429 2375 2320 2254 2107 1952 1799 1658 1511 1366 1234 1132 1037 952 875 807 745 688 636 587 540 535 527 515 500 483 465 449 436 427 422 404 389 375 363 353 343 336 330 295 277 260 242 224 207 191 177 167 161 158 156 152 150 147 141 132 123 112 102 92 84 75 70 65 61 57 56 53 52 49 47 45 43 40 38 35 +Denmark 12072 12101 12129 12157 12185 12213 12242 12269 12297 12325 12357 12400 12486 12540 12600 12665 12735 12809 12886 12962 13037 13110 13182 13255 13331 13410 13086 12769 12459 12155 11858 11824 11790 11753 11717 11680 11054 10092 9741 10967 11257 10717 10833 10025 10318 11043 12811 12779 12942 12968 11537 11028 13421 13777 12237 9840 10468 12982 14941 12688 12015 10206 10427 10591 13861 14878 13870 12275 12646 11397 12175 11455 11130 11294 12439 14316 13821 12907 13081 13614 15264 12643 15223 12930 14079 12523 13412 13890 14995 14433 14361 14802 14324 16067 14216 13405 12347 12363 12431 14475 12411 13113 11391 11162 10815 11725 10583 10658 11983 9756 9676 10093 9102 8705 9095 8768 10176 9792 7992 9496 9883 7317 7156 7447 7473 6670 6845 6601 6506 6027 6124 6239 5673 5280 5160 6016 5642 5461 5019 4808 4280 4745 4263 4064 4460 4449 4172 3569 3184 3076 2917 2615 2389 2223 2110 2034 1982 1967 1967 1978 1995 1997 1964 1905 1826 1733 1635 1529 1420 1338 1254 1176 1097 1013 943 867 796 738 679 633 589 547 517 497 486 493 506 532 560 575 575 563 542 515 482 454 429 408 386 371 359 350 343 338 329 319 309 300 289 282 265 250 231 211 196 187 +Djibouti 444 444 444 444 444 444 444 444 444 444 444 445 445 446 446 447 448 449 450 452 454 455 458 460 462 465 467 471 474 477 480 484 488 491 495 499 503 507 511 515 519 523 527 531 535 539 543 548 552 556 560 564 569 573 577 582 586 591 595 600 605 609 613 618 623 628 633 637 642 647 652 657 662 667 672 677 682 687 693 698 703 709 714 719 725 730 736 742 747 753 759 764 770 776 782 788 794 800 805 811 817 822 828 833 838 843 848 853 858 862 867 872 877 881 885 890 895 900 904 909 914 919 923 928 933 938 943 948 953 957 961 964 968 971 974 978 981 985 988 992 995 998 1002 1005 1008 1012 952 894 839 786 734 735 735 742 751 766 781 800 818 843 871 899 933 970 1010 1047 1085 1146 1211 1279 1353 1433 1522 1618 1720 1825 2056 2260 2456 2567 2555 2503 2330 2134 2023 2060 2209 2490 2814 3054 3142 3149 3019 2806 2588 2434 2327 2269 2241 2223 2195 2154 2113 2067 2016 1959 1893 1817 1739 1666 1608 1565 1531 1501 1469 1429 +Ecuador 9745 9745 9745 9745 9745 9745 9745 9745 9745 9745 9745 9752 9768 9791 9823 9862 9910 9966 10044 10117 10200 10291 10392 10502 10621 10750 10889 11037 11196 11365 11545 11735 11928 12124 12324 12527 12733 12942 13156 13372 13592 13812 14030 14248 14466 14682 14898 15112 15326 15538 15750 15970 16190 16408 16648 16864 17079 17293 17505 17715 17924 18131 18340 18551 18765 18981 19200 19422 19646 19872 20101 20333 20567 20796 21036 21278 21523 21763 22013 22267 22523 22775 23037 23302 23564 23835 24109 24380 24661 24945 25265 25555 25849 26146 26446 26749 27061 27384 27717 28058 28293 28601 28884 29212 29550 29898 30246 30579 30922 31266 31612 31956 32306 32588 32803 32952 33112 33272 33637 34016 34402 34797 35185 35602 36023 36451 36879 37315 37446 37582 38635 39683 40726 41764 42797 43823 44845 45862 46873 47880 46930 45948 44934 43891 42821 41720 41243 40756 40259 39753 39241 38484 38194 37901 37604 38184 37647 36635 35458 34389 33699 33266 33241 33425 33711 33862 33965 33961 33897 33701 33475 33122 32574 31854 30970 30052 29062 28079 27077 26161 25231 24304 23348 22441 21584 20771 20032 19323 18664 18006 17317 16569 15819 15002 14241 13529 12882 12343 11830 11317 10853 10416 9972 9585 9265 9003 8829 8706 8634 8508 8332 8139 7868 7602 7333 7079 +Egypt 72422 72379 72337 72294 72252 72210 72167 72125 72083 72040 71998 71994 72027 72099 72209 72250 72439 72667 72936 73245 73596 73987 74421 74897 75416 75977 76582 77231 77925 78663 79447 80276 81114 81961 82816 83681 84554 85437 86329 87230 88141 89061 89991 90930 91879 92698 93666 94644 95631 96630 97638 98611 99593 100584 101586 102597 103619 104650 105692 106745 107807 108894 110004 111138 112298 113482 114692 115928 117191 118480 119797 121141 122513 123793 125226 126498 127992 129429 130997 132601 134224 135810 137472 139155 140805 142529 144273 145992 147779 149588 151419 153272 155148 157047 158965 160898 162839 164791 166742 168690 170632 172574 174458 176386 178305 179945 181843 183668 185548 187418 189287 191144 206959 208199 209637 211274 215096 218976 223072 227195 231389 234449 237548 240688 243868 247083 254099 261254 288320 297225 261555 292709 312949 306848 320787 310258 335298 309135 311769 305334 326931 319002 381471 396011 360140 378491 383129 387712 392240 396703 401123 403060 408784 414215 419334 377730 378526 385761 394591 401037 402113 397506 385527 369537 354864 344295 338535 335995 335535 335393 333978 331320 325261 316624 307886 300451 294681 290427 286813 282307 276305 268177 256997 243613 229460 215902 204288 194405 185527 176667 166650 155502 142277 128492 115545 104998 96488 90417 85886 82388 79233 76511 74255 72111 70054 67869 65514 62720 60167 58694 58541 60009 62567 65228 66378 65775 +El Salvador 4712 4712 4712 4712 4712 4712 4712 4712 4712 4712 4712 4714 4720 4729 4741 4756 4774 4796 4820 4848 4879 4913 4951 4993 5037 5085 5137 5193 5252 5314 5381 5451 5522 5594 5667 5741 5816 5892 5969 6047 6126 6207 6289 6373 6459 6546 6636 6726 6820 6914 7011 7110 7211 7314 7419 7526 7636 7747 7861 7977 8096 8216 8339 8463 8590 8718 8848 8980 9114 9250 9388 9527 9670 9806 9953 10101 10251 10397 10552 10709 10868 11024 11188 11354 11518 11689 11863 12035 12214 12396 12580 12767 12958 13151 13346 13544 13751 13970 14198 14438 15701 15942 16162 16443 16738 17046 17359 17652 18093 18543 19001 19461 19938 20157 20374 20589 20808 21025 21794 22582 23393 24226 25078 25601 26135 26681 27237 27804 28251 28706 29353 29373 29281 29258 29218 29159 28990 28894 28783 28562 28413 28252 28075 27789 27581 27359 26910 26461 26011 25561 25111 24613 24466 24315 24161 23200 23290 23215 23093 23035 23073 23191 23366 23577 23776 23890 23923 23844 23696 23558 23441 23382 23302 23174 22923 22505 22014 21396 20596 19654 18582 17439 16218 15002 13858 12843 11927 11168 10528 9970 9460 8989 8515 8057 7568 7046 6522 6004 5490 5021 4590 4190 3830 3501 3216 2977 2777 2633 2505 2402 2291 2179 2059 1949 1848 1763 +Equatorial Guinea 1388 1388 1388 1388 1388 1388 1388 1388 1388 1388 1388 1389 1389 1390 1390 1392 1393 1394 1396 1398 1400 1403 1406 1409 1412 1415 1419 1423 1427 1431 1436 1440 1445 1450 1455 1459 1464 1469 1474 1479 1484 1489 1494 1498 1503 1509 1514 1519 1523 1529 1534 1539 1544 1549 1555 1560 1565 1571 1576 1582 1587 1592 1598 1603 1608 1614 1619 1625 1630 1636 1641 1647 1653 1658 1664 1670 1675 1681 1686 1692 1698 1703 1709 1715 1721 1727 1732 1738 1745 1750 1756 1762 1768 1774 1780 1786 1792 1798 1803 1808 1813 1817 1822 1826 1829 1833 1836 1839 1841 1844 1846 1848 1850 1852 1853 1855 1857 1859 1860 1862 1883 1923 1983 2045 2109 2175 2243 2313 2386 2460 2522 2583 2644 2705 2765 2825 2884 2944 3003 3061 3119 3177 3235 3293 3351 3408 3382 3354 3325 3284 3252 3252 3247 3235 3217 3193 3165 3131 3095 3064 3037 3018 3008 3002 2995 2980 2947 2891 2812 2703 2579 2431 2268 2130 1994 1876 1794 1757 1772 1841 2064 2196 2345 2236 2513 2726 2956 3105 3181 3214 3227 3232 3204 3162 3123 3104 3084 3084 3095 3100 3095 3071 3037 2995 2957 2927 2907 2891 2873 2860 2841 2815 2776 2734 2701 2655 +Eritrea 4330 4330 4330 4330 4330 4330 4330 4330 4330 4330 4330 4333 4338 4347 4358 4372 4389 4409 4432 4458 4487 4519 4555 4593 4635 4680 4729 4781 4836 4895 4957 5023 5090 5158 5226 5296 5366 5438 5510 5583 5657 5732 5809 5886 5964 6043 6124 6205 6288 6371 6456 6542 6629 6716 6806 6896 6988 7080 7174 7270 7366 7464 7563 7664 7765 7869 7973 8079 8186 8295 8405 8517 8630 8739 8855 8973 9092 9208 9330 9454 9579 9702 9831 9961 10090 10224 10359 10493 10633 10774 10917 11062 11209 11358 11508 11660 11813 11967 12121 12275 12430 12584 12734 12888 13042 13195 13348 13495 13647 13799 13951 14102 14256 14411 14566 14724 14884 15045 15208 15372 15539 15707 15877 16048 16222 16396 16574 16752 16933 17092 17291 17487 17684 17878 18072 18274 18477 18677 18877 19076 19274 19471 19666 19861 20055 20248 19765 19344 18865 18447 17972 18124 18517 18820 19091 19327 19527 19691 19819 19938 19795 19653 19515 19382 19254 19132 19012 18892 18771 18651 18952 19240 19544 19832 18799 18905 19042 19172 19315 19531 19818 20139 20432 20698 20927 21114 21308 21388 21236 20703 19757 18820 17500 16043 14704 13673 12626 11885 11388 11078 10899 10753 10716 10716 10677 10535 10434 10197 9892 9569 9248 8927 8601 8266 7998 7764 +Estonia 5046 4965 4885 4804 4739 4673 4608 4542 4477 4492 4506 4523 4541 4562 4550 4541 4534 4528 4525 4580 4638 4698 4761 4827 4844 4864 4886 4910 4936 4943 4952 4963 4973 4984 4958 4931 4904 4875 4846 4859 4872 4884 4897 4909 4939 4969 4999 5030 5061 5183 5308 5434 5562 5692 5761 5831 5901 5972 6044 6235 6429 6583 6737 6915 6675 6432 6189 5964 5716 5799 5883 5986 6071 6153 6091 6049 5987 5922 5858 5844 5809 5773 5737 5721 5699 5678 5656 5653 5631 5594 5556 5537 5498 5460 5514 5587 5641 5694 5787 5789 5810 5747 5682 5617 5488 5360 5251 5121 4993 4892 4790 4689 4589 4489 4257 4027 3801 3593 3373 3313 3252 3192 3133 3073 3028 2969 2923 2865 2820 2762 2740 2705 2682 2646 2622 2585 2536 2474 2424 2375 2312 2262 2212 2151 2100 2039 1989 1939 1878 1828 1702 1585 1486 1388 1294 1204 1117 1034 956 882 883 779 699 692 705 586 567 554 566 533 568 558 519 528 582 574 580 598 563 613 574 561 557 560 565 565 567 563 554 529 486 434 366 299 239 196 166 150 143 139 135 131 126 120 114 110 104 98 90 83 74 66 57 49 42 37 +Ethiopia 65003 65003 65003 65003 65003 65003 65003 65003 65003 65003 65003 65047 65135 65269 65448 65674 65948 66268 66638 67057 67526 68045 68615 69238 69913 70642 71425 72264 73158 74108 75117 76183 77265 78362 79475 80603 81747 82908 84085 85279 86490 87717 88963 90226 91507 92806 94124 95460 96816 98190 99584 100970 102376 103801 105246 106711 108196 109701 111228 112777 114346 115938 117551 119188 120847 122529 124234 125963 127716 129494 131296 133123 134976 136764 138668 140598 142554 144452 146463 148501 150567 152582 154706 156859 158968 161180 163423 165632 167937 170274 172643 175046 177482 179952 182452 184974 187519 190078 192650 195221 197801 200378 202894 205473 208057 210634 213210 215687 218253 220824 223399 225953 228554 231178 233832 236514 239226 241967 244830 247702 250600 253537 256506 259509 262545 265615 269066 272235 275794 279398 283920 288410 292875 297322 301744 306141 310513 314852 319174 323470 327734 331972 336193 340381 344552 348690 345385 341978 337485 333959 330351 328083 325897 323189 319964 317143 313655 310622 308206 306265 304615 303131 301692 300249 298805 297538 278686 284110 289182 296316 305255 316375 328952 342028 353789 363554 373559 380269 385024 390209 397257 401427 405858 410615 415408 421006 426179 430925 435918 440905 446103 449300 449452 446475 440975 435127 432200 429099 425765 421237 413279 402199 385318 364278 341273 318258 295245 273403 253765 236894 223370 211988 203358 196372 190132 184186 +Fiji 2907 2912 2917 2921 2926 2931 2936 2941 2945 2950 2955 2960 2965 2970 2974 2979 2984 2989 2994 2999 3004 3009 3014 3019 3023 3028 3033 3038 3043 3048 3053 3058 3063 3068 3072 3076 3079 3081 3083 3084 3084 3083 3082 3081 3079 3076 3072 3068 3064 3059 3053 3047 3040 3032 3024 3016 3008 3001 2993 2986 2978 2971 2964 2956 2949 2942 2935 2928 2920 2913 2906 2899 2892 2885 2877 2869 2861 2853 2844 2835 2825 2817 2807 2796 2786 2774 2762 2749 2738 2728 2718 2710 2703 2696 2691 2687 2683 2684 2689 2697 2710 2702 2691 2692 2701 2711 2728 2739 2755 2767 2776 2797 2810 2822 2830 2842 2849 2861 2868 2874 2885 2894 2912 2929 2951 2968 2902 2831 2761 2697 2757 2810 2857 2897 2932 2960 2982 2999 3010 3016 3017 2870 2727 2589 2456 2328 2204 2085 1971 1863 1748 1641 1557 1493 1445 1411 1379 1349 1322 1293 1263 1222 1176 1131 1083 1041 1005 973 949 934 927 927 934 945 955 964 971 967 957 940 919 899 873 848 817 780 744 706 663 630 606 584 575 570 566 561 550 534 516 498 482 468 458 452 452 454 456 458 461 460 455 447 435 419 404 388 +Finland 14348 14871 15429 14363 15734 15794 14735 15036 12799 11491 15247 14020 14748 13773 14053 14333 14335 14417 14334 13642 13782 15991 13995 15747 14759 14744 15265 15289 16675 16595 16588 16133 16159 14821 17800 17602 16094 15949 16342 16671 16892 16613 17708 16970 16374 16563 15828 16534 18247 19002 19064 20980 20103 20725 22123 21873 22438 20875 22437 21823 22152 23544 22789 22008 23703 21690 20336 20986 29273 13411 13947 14788 18292 19932 20312 18773 18164 18802 21176 17662 20944 22605 22267 19787 20492 21614 22687 18686 19087 18980 19320 22960 23591 18798 18609 17567 18698 17360 19277 22140 24400 23828 19706 19041 19035 19978 19646 18660 19698 18033 18439 17352 16617 15936 15246 14691 14889 16309 17790 15424 15629 11760 11889 11997 12439 9592 9174 10457 9235 10284 8012 7853 7763 8386 8588 7625 7685 7929 7862 8484 9891 7983 6704 7087 9401 9068 7039 7104 6128 5546 4966 4282 3602 3118 2810 2642 2532 2503 2481 2447 2363 2251 2106 1937 1770 1620 1499 1379 1270 1173 1075 984 891 812 754 703 675 660 653 636 617 582 550 509 476 455 444 432 424 414 408 400 394 389 376 356 327 298 273 245 230 222 219 221 223 223 216 214 203 198 186 179 164 156 142 134 +France 355866 348488 340154 332975 325882 317893 310972 298074 285665 273722 262286 254228 246457 238968 231750 224794 218076 226884 235752 251391 230060 232438 250688 234762 248517 248969 247794 232573 256281 233404 232760 233513 245598 236353 279015 228973 214017 226466 236741 221432 215385 215683 220675 218430 203451 190186 216699 204674 208563 235462 184879 206029 211018 197025 262876 267166 229483 251024 253355 347660 195015 253440 210679 233131 226749 264307 222388 226772 264121 245918 296981 300386 261300 267197 243619 246075 244150 234440 244018 229690 246368 238426 242075 242122 253805 231153 237274 227287 222453 210490 219013 213137 223833 227897 202661 199330 184018 185615 201007 207032 193334 184974 173574 167816 172199 160735 168605 148649 150296 134694 129095 157401 121920 125291 113571 78096 61117 71958 101593 86915 135094 121297 87057 97540 85288 93227 97362 82817 89235 89224 75201 72156 73437 69584 67946 64035 64577 62945 62909 60347 81470 66662 68523 71953 74864 97410 69705 59398 46823 50569 58258 46488 37923 32248 28699 26795 25510 25013 24817 24659 24335 23818 23043 22024 20916 19736 18746 17719 16751 15789 14897 14248 13755 13371 13023 12540 11766 10721 9660 8859 8434 8216 8331 8544 8662 8561 8329 7990 7531 7002 6567 6148 5734 5377 4975 4649 4397 4230 4140 4121 4096 4065 3940 3804 3663 3595 3529 3455 3378 3377 3376 3379 3383 3463 3462 3378 +Gabon 3100 3100 3100 3100 3100 3100 3100 3100 3100 3100 3100 3102 3104 3108 3113 3119 3127 3136 3146 3157 3170 3184 3200 3217 3235 3255 3276 3299 3323 3348 3375 3404 3432 3461 3490 3519 3549 3578 3608 3639 3669 3700 3731 3762 3794 3826 3858 3890 3923 3956 3989 4023 4058 4093 4127 4163 4198 4235 4271 4307 4344 4381 4419 4457 4495 4534 4573 4612 4651 4691 4731 4772 4813 4853 4894 4936 4978 5020 5063 5107 5150 5193 5238 5283 5327 5373 5419 5465 5511 5559 5606 5654 5703 5752 5801 5850 5899 5948 5997 6045 6092 6139 6185 6231 6275 6320 6363 6405 6447 6489 6530 6570 6611 6651 6692 6733 6775 6816 6856 6897 6938 6979 7020 7062 7103 7145 7086 7026 6954 6892 6827 6762 6698 6634 6570 6506 6443 6380 6317 6255 6194 6133 6072 6012 5951 5891 5638 5410 5173 4945 4724 4681 4587 4519 4475 4441 4430 4427 4429 4443 4466 4498 4504 4511 4487 4456 4386 4306 4238 4138 4036 3932 3831 3733 3640 3552 3469 3391 3079 3067 3053 3039 3023 3018 3017 3026 3043 3069 3099 3130 3164 3197 3231 3260 3283 3310 3339 3368 3391 3400 3397 3379 3343 3296 3244 3201 3165 3120 3062 3011 2951 2892 2811 2717 2630 2579 +Gambia 2140 2140 2140 2140 2140 2140 2140 2140 2140 2140 2140 2141 2142 2145 2148 2151 2156 2162 2168 2175 2183 2192 2201 2211 2222 2234 2247 2261 2276 2291 2307 2325 2342 2359 2377 2395 2413 2431 2449 2467 2486 2504 2523 2542 2561 2579 2599 2618 2638 2657 2677 2697 2718 2738 2758 2779 2799 2820 2841 2863 2884 2905 2927 2949 2971 2993 3016 3038 3061 3084 3107 3130 3153 3176 3200 3224 3248 3272 3296 3321 3345 3370 3395 3420 3446 3471 3497 3523 3549 3576 3603 3629 3656 3684 3711 3738 3766 3793 3820 3846 3872 3898 3923 3947 3971 3995 4018 4040 4062 4084 4106 4126 4147 4168 4190 4210 4232 4253 4274 4295 4316 4337 4358 4380 4401 4423 4413 4403 4393 4383 4388 4393 4397 4402 4407 4411 4416 4420 4424 4429 4433 4437 4441 4445 4449 4452 4429 4421 4413 4405 4397 4539 4837 5123 5397 5661 5142 5499 5891 6200 6353 6452 6361 6142 5943 5872 5918 6036 6216 6402 6540 6599 6586 6536 6494 6494 6493 6548 6640 6738 6830 6912 6921 6884 6857 6870 6854 6867 6884 6881 6830 6811 6761 6683 6596 6519 6457 6375 6297 6216 6161 6117 6057 5993 5929 5868 5813 5752 5709 5669 5644 5623 5619 5606 5573 5540 +Georgia 22639 22591 22544 22497 22450 22403 22356 22309 22263 22216 22170 22133 22106 22089 22082 22085 22097 22120 22153 22196 22248 22311 22384 22467 22560 22664 22778 22902 23036 23181 23336 23501 23668 23836 24005 24175 24347 24519 24693 24868 25044 25222 25401 25581 25763 25945 26130 26314 26501 26689 26878 27068 27259 27451 27645 27840 28036 28234 28434 28634 28836 29040 29245 29451 29659 29867 30078 30291 30505 30720 30936 31154 31374 31587 31810 32034 32260 32479 32709 32939 33172 33399 33634 33871 34103 34345 34586 34825 35071 35318 35567 35818 36071 36325 36581 36840 37100 37361 37625 37890 38157 37765 37415 37024 36634 36290 35901 35507 35164 34776 34389 34047 33661 33277 32937 32553 32170 31831 31450 31070 30734 30355 29975 29641 29264 28886 28553 28177 27801 27469 26999 25933 24908 23921 22972 22060 21186 20346 19538 18761 18013 17294 16604 15939 15299 14686 14095 13527 12981 12456 11951 11866 11730 11578 11414 11237 11039 10820 10568 10283 9889 9659 9361 8997 8586 8160 7756 7409 7136 6942 6817 6739 6679 6611 6531 6961 6764 6419 5987 5579 5303 5148 5071 5062 5053 5027 4986 4924 4835 4689 4497 4313 4068 3793 3497 3209 2882 2573 2294 2052 1863 1709 1603 1529 1460 1391 1323 1248 1173 1101 1026 955 877 801 734 673 +Germany 295792 297044 297804 299064 299828 301098 301866 303144 303916 305203 306080 307528 308617 310376 311755 313806 315455 334904 338581 342384 346293 347743 349266 350872 352559 354358 351140 359663 368395 377327 386457 406016 426468 447833 470179 493585 515509 538492 534626 517776 548203 557863 599673 548683 556078 567268 628744 569517 625684 575561 603994 572412 582434 545444 544934 521741 479000 600430 583627 675375 559192 593662 630143 668871 676332 767304 705313 741535 740229 716826 739735 836143 778206 809171 798318 663560 621720 609881 608966 584129 638953 597537 608965 620449 634600 616430 647131 603092 612028 641738 649565 637772 678587 670272 661646 701348 641094 691126 661236 681533 723954 656300 581185 649177 626787 658680 596905 569832 578559 544384 510894 595029 442547 446708 445182 358083 295617 273415 239294 232400 220171 246242 257301 279416 220633 212597 194658 172901 158221 151743 129223 125642 118430 114901 95717 156209 95847 92498 86219 106420 92687 89499 86424 83452 80573 77807 75134 72543 70056 67641 65319 63442 62077 60847 59744 58757 57859 57026 56238 55425 54546 52537 50401 48101 45596 42847 39797 36537 35012 32489 29744 26541 22969 19614 16760 14852 13772 13576 13734 13798 13489 12896 11949 11010 10101 9351 8890 8511 8078 7690 7226 6667 6140 5613 5157 4853 4652 4529 4510 4446 4375 4158 3936 3673 3426 3161 3022 2930 2872 2827 2784 2734 2687 2641 2594 2545 +Ghana 42308 42308 42308 42308 42308 42308 42308 42308 42308 42308 42308 42298 42278 42249 42210 42161 42103 42035 41958 41871 41775 41670 41555 41431 41298 41155 41004 40843 40673 40495 40307 40111 39916 39721 39527 39334 39143 38952 38762 38573 38385 38198 38012 37826 37642 37459 37276 37094 36913 36733 36554 36376 36200 36023 35848 35674 35500 35328 35156 34985 34815 34662 34528 34412 34314 34234 34172 34128 34102 34095 34106 34135 34182 34161 34251 34361 34490 34601 34788 34998 35208 35417 35630 35845 36057 36275 36493 36710 36931 37153 37377 37602 37828 38006 38182 38359 38531 38702 38869 39029 39184 39332 39473 39611 39743 39868 39988 40098 40205 40307 40404 40497 40590 40930 41524 42376 43245 44133 45037 45958 46899 47860 48839 49837 50856 51895 52172 52362 52476 52736 53375 53960 54338 54806 55291 55702 56136 56516 56877 57097 57279 57405 57514 57548 57607 57635 57652 57621 57520 57325 59338 55702 52959 51533 51365 52251 53357 55277 57619 59913 61966 64237 65891 67039 68092 69297 71006 72556 74181 75746 77406 78772 79741 80184 79810 78620 77232 75556 74123 73516 74086 74897 76158 77517 78288 78184 77380 75776 73721 71722 69971 68801 68092 67752 67585 67362 66976 66108 64847 63598 62481 61517 61087 60959 60952 60995 60895 60391 59627 58755 57907 57265 56788 56189 55364 54061 +Greece 34943 35069 35196 35323 35450 35578 35707 35836 35965 36095 36234 36375 36527 36688 36861 37045 37240 37447 37665 37894 38136 38388 38654 38931 39221 39523 39837 40164 40505 40858 41224 41604 41988 42374 42765 43159 43557 43957 44363 44771 45184 45600 46020 46444 46872 47303 47739 48179 48620 49068 49520 48121 46693 45236 43748 42230 40682 39102 37492 35847 34171 35815 35344 34863 36680 35004 38252 36685 37158 37641 37074 37827 38458 37450 40005 39011 41348 40186 38610 35439 35099 35469 36728 36680 42232 42227 44596 46985 49249 51697 53696 53356 52833 52304 51767 51395 50830 50238 49620 48975 48304 47613 46926 46182 45570 44778 44131 43324 42369 41555 40591 39636 34970 30847 27208 23995 21151 18639 16424 14465 12806 11339 14650 15028 16726 20361 18754 25895 25738 30268 25999 37102 33112 32722 28854 28819 28772 30852 23597 28888 22711 20073 17741 15674 13847 12231 10801 9536 8418 7428 5983 7847 8939 8524 9426 8310 8501 8883 9257 9477 9439 9123 8516 7778 7172 6839 6776 6887 6966 6853 6490 5943 5308 4699 4239 3942 3805 3794 3845 3809 3677 3447 3181 2898 2618 2340 2088 1837 1621 1437 1320 1228 1182 1150 1127 1093 1053 1003 937 873 813 761 710 661 624 588 564 552 538 545 536 537 536 529 507 489 +Grenada 564 560 556 552 548 544 540 536 532 528 524 520 516 513 510 506 503 500 497 494 491 489 486 484 481 479 477 475 473 471 469 468 466 464 463 461 459 458 456 454 453 451 449 447 445 443 441 438 436 433 430 427 424 422 420 418 417 416 415 414 414 414 414 415 415 416 417 418 420 422 424 426 429 432 435 438 441 444 447 451 455 457 462 467 471 477 484 491 498 505 512 519 525 532 538 544 550 555 559 563 566 569 572 574 575 575 574 573 573 572 571 569 566 561 556 551 546 542 537 532 527 524 521 519 517 515 510 507 502 499 494 490 485 481 477 472 468 464 459 455 451 447 443 439 435 432 428 425 422 419 416 432 461 484 498 508 511 507 498 486 466 443 416 385 353 321 292 268 247 233 224 216 211 207 203 184 167 152 140 129 116 115 113 111 87 89 90 88 83 76 69 61 54 47 41 37 35 35 35 36 35 34 31 29 27 26 26 26 27 28 28 28 27 26 25 24 +Guatemala 10314 10449 10586 10724 10864 11006 11150 11295 11443 11592 11780 11933 12088 12244 12401 12559 12719 12880 13043 13206 13371 13538 13705 13875 14045 14217 14391 14566 14742 14920 15099 15279 15462 15647 15834 16023 16215 16409 16605 16804 17005 17208 17414 17623 17834 18047 18264 18483 18705 18929 19156 19392 19630 19872 20116 20363 20614 20868 21125 21385 21649 21911 22171 22431 22689 22946 23201 23455 23706 23956 24205 24451 24695 24952 25191 25427 25661 25896 26119 26339 26561 26780 27005 27233 27458 27689 27922 28154 28391 28630 28871 29114 29359 29607 29855 30104 30358 30618 30883 31153 31426 31431 31462 31469 31523 31530 31577 32631 33364 34103 34846 35593 36352 36110 35874 35627 35377 35117 36208 37312 38434 39575 40734 41189 41646 42100 42564 43036 42829 42611 44196 45770 47335 48888 50431 50746 51154 51354 51661 51762 51812 51338 50813 50241 49622 48958 48249 47501 47334 47142 46928 45784 44817 43990 43292 42715 42245 41073 40623 40331 40275 40372 40663 41017 41323 41471 41511 41274 40919 40530 40262 40069 39943 39834 39673 39427 39192 38812 38355 37845 37304 36790 36248 35576 34756 33653 32337 30821 29245 27887 26827 26032 25531 25131 24727 24171 23474 22650 21741 20913 20153 19476 18813 18228 17646 17017 16401 15750 15099 14615 14197 13849 13558 13370 13147 12858 +Guinea 18838 18838 18838 18838 18838 18781 18781 18781 18781 18781 18781 18789 18805 18829 18861 18845 18893 18950 19015 19088 19171 19261 19361 19469 19586 19652 19786 19930 20083 20245 20416 20597 20779 20963 21084 21271 21459 21649 21840 22034 22229 22425 22624 22824 22956 23159 23364 23571 23780 23990 24202 24416 24631 24848 24992 25213 25435 25660 25886 26114 26345 26577 26811 26966 27203 27443 27686 27930 28176 28424 28675 28928 29183 29344 29603 29864 30127 30386 30654 30924 31197 31466 31743 31926 32202 32486 32773 33057 33348 33642 33939 34238 34435 34739 35044 35351 35657 35962 36175 36382 36585 36783 36858 37046 37228 37404 37577 37735 37896 38051 38203 38350 38378 38523 38669 38815 38961 39106 39253 39401 39547 39572 39719 39865 40011 40158 40244 40392 40477 40622 41091 41424 41876 42324 42764 43198 43625 44047 44812 45518 46250 46971 47695 48420 49120 49876 50592 51339 52016 52722 53400 53700 54386 55054 55641 56176 56658 57152 57531 57910 58264 54762 55207 56063 56952 57755 58373 58709 58783 58705 58635 58924 59015 58998 58837 58648 58411 57883 57309 56989 57152 57224 57452 57888 58489 59280 59694 59923 60314 61223 62927 64558 66455 68173 69039 68606 68449 67268 65293 62965 60667 58581 56473 54477 52753 51289 49852 48505 47354 46326 45465 44670 44065 43442 42802 42073 +Guinea-Bissau 4528 4528 4528 4528 4528 4528 4528 4528 4528 4528 4528 4530 4533 4537 4543 4550 4559 4569 4581 4594 4609 4626 4643 4663 4684 4707 4731 4757 4784 4813 4844 4876 4909 4942 4975 5008 5041 5075 5109 5143 5177 5212 5246 5281 5317 5352 5388 5424 5460 5496 5533 5573 5612 5652 5693 5733 5774 5815 5856 5898 5940 5982 6025 6068 6111 6155 6199 6242 6287 6332 6377 6422 6468 6513 6559 6606 6653 6699 6747 6795 6844 6892 6940 6990 7039 7089 7139 7190 7240 7292 7344 7396 7449 7502 7555 7608 7661 7714 7765 7816 7866 7915 7963 8010 8056 8101 8146 8188 8230 8271 8311 8350 8390 8429 8469 8508 8548 8588 8623 8659 8696 8733 8769 8806 8843 8880 8974 9069 9164 9260 9273 9202 9101 9029 8930 8858 8786 8688 8617 8546 8449 8319 8192 8066 7942 7819 7699 7580 7463 7348 7234 7216 7194 7179 7174 7177 7178 7189 7204 7227 7259 7296 7339 7392 7441 7520 7615 7725 7840 7969 8100 8234 8365 8505 8640 8778 8930 9095 9272 9442 9608 9717 9813 9888 9942 9975 10893 10796 10629 10492 10418 10346 10300 10263 10194 10103 9952 9740 9488 9246 9022 8806 8587 8369 8147 7922 7695 7448 7208 6970 6760 6557 6365 6193 6028 5883 +Guyana 2530 2530 2530 2530 2530 2530 2530 2530 2530 2530 2530 2531 2533 2535 2538 2543 2548 2554 2561 2569 2577 2587 2597 2608 2620 2633 2647 2663 2678 2695 2713 2732 2750 2770 2789 2808 2827 2847 2867 2887 2907 2926 2947 2967 2988 3008 3029 3050 3071 3093 3114 3135 3156 3177 3199 3220 3242 3264 3286 3308 3330 3353 3375 3398 3421 3444 3467 3490 3514 3538 3562 3586 3610 3633 3658 3683 3708 3732 3757 3782 3808 3778 3748 3718 3687 3656 3623 3590 3550 3516 3482 3070 3158 3246 3253 3258 3371 3478 3581 3678 3771 3510 3257 3290 3338 3211 3568 4473 3413 3548 3962 3836 3162 2934 2742 2919 2961 3042 3576 3112 2589 3597 3586 3478 3309 3160 3310 3352 3987 3165 3266 3184 3282 3800 4281 3070 3096 3215 4736 3361 2898 2291 2802 4516 4439 3174 2709 2697 2744 2735 2661 2525 2449 2395 2337 2262 2194 2106 2019 1949 1910 1913 1952 1999 2018 1991 1928 1827 1707 1618 1584 1606 1689 1803 1912 1982 2006 1996 1956 1902 1841 1786 1727 1665 1600 1536 1473 1406 1336 1271 1216 1156 1094 1034 984 950 934 927 921 907 882 845 806 761 716 668 616 563 517 486 478 492 532 582 623 642 +Haiti 15388 15388 15388 15387 15387 15387 15386 15386 15386 15385 15385 15391 15404 15422 15448 15480 15519 15564 15617 15676 15742 15815 15895 15983 16076 16178 16286 16402 16526 16657 16796 16941 17089 17237 17387 17538 17691 17845 18000 18157 18314 18475 18638 18804 18974 19146 19322 19500 19682 19867 20054 20249 20447 20648 20852 21061 21272 21487 21706 21929 22155 22385 22618 22852 23090 23329 23571 23816 24063 24313 24565 24820 25077 25329 25591 25856 26124 26386 26660 26936 27215 27489 27774 28062 28346 28640 28937 29230 29533 29839 30148 30460 30776 31094 31417 31742 32085 32446 32826 33224 33642 34007 34347 34755 35185 35639 36099 36545 37016 37493 37977 38463 38958 39486 40046 40639 41235 41803 42364 42938 43467 43956 44396 44846 45293 45750 46203 46667 47134 47611 48414 48681 48932 49166 49384 49587 49773 49946 50104 50249 50379 50496 50600 50690 50769 50836 50891 50934 50966 50988 51000 50557 50406 50305 50251 50241 49119 48472 47535 46724 46343 46293 46618 47139 47594 47699 47516 46946 46146 45242 44373 43508 42572 41730 41139 40842 40839 41073 41526 42065 42681 43368 43944 44302 44275 43814 42914 41469 39779 38165 36833 35740 34954 34293 33656 32891 32014 31026 29978 28927 27905 26914 25938 25004 24196 23553 23006 22564 22146 21710 59719 20630 19947 19191 18465 17841 +Honduras 2090 2154 2158 2166 2170 2174 2179 2186 2190 2195 2197 2207 2221 2236 2254 2276 2301 2334 2368 2406 2449 2499 2551 2607 2669 2735 2812 2890 2973 3063 3163 3265 3370 3479 3591 3713 3832 3956 4084 4216 4358 4491 4622 4750 4882 5004 5123 5238 5349 5465 5569 5669 5765 5857 5953 6034 6111 6183 6258 6317 6371 6418 6466 6523 6571 6620 6669 6728 6777 6827 6878 6928 6990 7040 7092 7144 7196 7259 7312 7366 7420 7484 7539 7595 7649 7706 7773 7829 7887 7945 8015 8073 8133 8192 8252 8324 8396 8478 8572 8677 8806 8934 9044 9203 9391 9581 9773 9956 10153 10368 10569 10770 10996 11074 11119 11128 11140 11140 11388 11638 11957 12396 12957 13357 13753 14147 14481 14759 14849 14988 15615 16085 16490 16930 17301 17712 18050 18434 18743 19097 19377 19706 19955 20258 20480 20757 20954 21072 21178 21272 21354 21231 21390 21543 21688 21827 21594 21180 20730 20343 20103 19925 19832 19775 19719 19546 19411 19204 18911 18559 18173 17705 17170 16646 16171 15835 15552 15370 15202 14991 14712 14354 13924 13453 12967 12527 12095 11678 11300 10931 10589 10293 10005 9749 9469 9171 8838 8496 11986 7737 7347 6961 6569 6199 5858 5550 5268 5003 4765 4524 4294 4070 3839 3633 3467 3333 +Hungary 47124 47524 47929 48337 48748 49163 49581 50003 50428 50858 51358 51792 52226 52661 53096 53532 53968 54405 54842 55280 55717 56155 56594 57033 57472 57911 58351 58791 59230 59671 60111 60552 60995 61442 61892 62346 62802 63262 63726 64193 64663 65135 65609 66159 66713 67269 67829 68391 68957 69527 70097 70304 70506 81053 81495 82863 75901 79086 76436 77470 78001 90379 96325 103329 97262 86986 86562 80992 89941 91447 92970 95630 91776 96978 99027 106253 108654 103667 103628 111887 105963 108145 111888 115191 118544 117534 120736 118612 118916 120051 112062 119603 121847 113459 113744 112792 103351 102225 97387 94124 101617 94083 99191 92113 88639 103931 92447 94293 89055 94433 85748 91110 124716 87305 84911 112467 92434 90212 89666 67080 79467 79784 78331 69386 69163 63841 61985 65180 64266 62251 52962 56216 63716 46061 50714 52182 47042 44599 43740 39716 43214 37622 44263 37508 46389 57371 37728 32232 28763 27603 24400 21417 18598 16080 16773 15980 14894 13459 11704 9866 8312 7255 6645 6272 6071 6034 6235 6637 7070 7354 7462 7411 7182 6831 6460 6110 5806 5585 5447 5280 4949 4393 3664 2955 2450 2185 2102 2219 2455 2709 2821 2735 2487 2141 1816 1573 1390 1248 1142 1052 988 928 891 875 861 845 815 774 735 683 650 616 590 564 543 518 +Iceland 879 879 879 879 879 879 879 879 879 879 879 879 880 880 881 883 884 886 889 891 894 897 900 904 908 912 917 922 927 925 924 924 923 922 921 921 920 919 919 1058 1006 791 664 1043 642 700 1536 1057 776 1011 1049 1143 731 598 698 769 773 871 946 1053 1444 1188 1134 783 872 876 1013 867 891 1108 742 877 1263 746 766 869 772 621 704 583 679 927 1506 1046 646 599 575 635 490 352 928 597 377 333 459 484 439 539 632 412 513 373 571 645 392 462 356 516 720 534 421 362 300 279 464 327 406 268 260 302 449 310 281 263 316 213 220 375 190 198 202 222 195 179 233 331 229 156 141 172 177 172 244 156 183 166 147 122 130 113 119 112 107 103 101 102 102 103 104 105 105 104 102 98 93 88 83 78 72 68 65 63 62 61 60 58 55 51 47 43 41 38 37 36 35 34 32 31 30 28 28 27 27 26 26 24 23 21 19 17 16 15 14 14 14 13 13 13 13 12 12 11 11 10 10 9 +India 3561366 3568389 3575425 3582475 3589539 3596617 3603709 3610815 3617935 3625069 3632476 3639964 3647796 3655971 3664493 3673362 3682582 3692153 3702079 3712360 3723000 3733999 3745360 3757085 3769176 3781635 3794464 3807665 3821241 3835192 3849521 3864232 3878998 3893820 3908700 3923636 3938629 3953680 3968788 3983953 3999177 4014459 4029800 4045198 4060656 4076173 4091749 4107385 4123080 4138836 4154651 4171881 4189182 4206555 4223998 4241514 4259102 4276763 4294496 4312303 4330182 4348174 4366277 4384493 4402823 4421267 4439826 4458501 4477291 4496198 4515222 4534365 4553626 4572589 4592101 4611738 4631501 4651090 4671142 4691327 4711598 4710039 4722537 4734833 4739535 4751643 5512992 5565054 5600831 5636892 5673130 5709439 5746034 5782810 5819547 5839193 5876009 5920026 5963546 6006449 6030724 6072160 5816608 5572000 5337661 5113176 4898127 4681914 4475306 4277849 4089036 3908546 3975717 3739051 4079841 3904795 3921754 4007044 5244292 4432182 3885262 3970199 3528947 3572329 3863255 3576532 3913250 3480684 3625018 3764456 3880855 3889434 3721198 3812031 4227408 3757218 3757800 3804908 3970005 3746537 3895511 3889919 4065531 4163259 4309390 3876186 3989560 4105775 4224876 4346903 4472067 4563929 4686538 4652419 4696065 4686641 4656851 4575380 4474048 4387494 4340497 4316713 4342071 4392559 4446515 4481464 4490319 4474448 4441943 4415300 4404465 4399312 4392446 4386659 4368195 4338317 4292366 4221221 4143438 4066372 4006844 3964373 3935352 3911698 3876213 3827617 3761478 3672018 3566162 3456517 3357317 3264201 3179224 3096904 3019000 2938944 2859141 2779095 2692412 2605756 2513120 2421920 2328088 2233293 2136392 2044482 1953399 1863783 1775492 1685035 1595122 1505869 1414819 1333577 1260762 1200998 +Indonesia 301931 302722 303514 304308 305105 305904 306704 307507 308312 309119 309967 310864 311851 312928 314096 315357 316710 318158 319701 321339 323076 324910 326843 328877 331012 333249 335590 338035 340586 343244 346009 348883 351782 354704 357650 360622 363617 366638 369684 372755 375851 379037 382313 385681 389143 392700 396354 400106 403958 407911 411968 415692 419514 423435 427456 431579 435805 440135 444572 449116 453770 458705 463906 469284 474760 480191 485542 490933 496320 501670 507248 512847 518337 523919 529567 535233 541169 547174 553483 559945 566296 571728 577625 584286 590336 597263 604486 611135 618009 625017 632545 639796 647140 654775 662781 720058 727925 736217 744442 753426 762315 770772 779787 787657 790387 792520 814263 848746 852139 855438 858626 861684 864412 867047 839135 827413 814265 799110 785406 772720 820549 779572 785442 792673 798668 806050 812178 819719 813577 808659 810152 811126 811860 812135 812157 811716 811071 809983 861546 915308 971710 1030541 1010324 990247 970318 950599 931039 911667 892507 873585 854866 790182 799649 806654 812723 819829 829235 834952 837833 838457 837090 833596 825058 814505 803834 795111 786584 779484 772298 763054 751345 737321 719837 700814 682033 665286 649873 635135 621173 608005 594489 581284 567519 552477 535227 515429 493370 468673 442582 417281 395094 374982 357393 342415 326887 310299 293875 276131 258921 243477 230082 219355 210833 202730 222818 187380 179709 171968 164409 158869 154266 152172 151988 152605 151192 147162 +Iran 154437 154787 155137 155489 155841 156194 156548 156902 157258 157614 157986 158365 158766 159189 159634 160102 160592 161105 161641 162200 162782 163387 164016 164669 165346 166046 166771 167520 168294 169092 169916 170764 171617 172474 173335 174200 175070 175944 176822 177705 178593 179484 180381 181281 182186 183096 184010 184929 185852 186780 187713 188595 189480 190370 191264 192163 193065 193972 194883 195798 196717 197654 198606 199576 200562 201566 202587 203626 204682 205755 206847 207957 209084 210148 211317 212505 213714 214893 216154 217438 218729 220005 221311 222625 223927 225256 226593 227921 229274 230636 232005 233382 234768 236161 237554 238945 240326 241690 243029 244341 245617 246859 248058 249238 250379 251490 252564 253579 254580 255547 256492 257411 258328 259779 261778 264334 266912 269519 272253 274987 277745 280531 283342 286185 289050 291941 294474 297417 299999 302597 307463 312301 316216 320071 323880 327630 331320 334959 338545 342081 345565 334723 324116 314589 304212 293993 283849 273860 263954 268225 272505 276019 282357 288620 294788 300870 306860 312759 318554 316719 314704 312523 310209 307804 305388 302917 300293 297600 277674 259307 242713 219366 212406 206566 201407 197253 193038 188741 184381 180268 176586 173295 170291 167287 163180 157455 150368 141607 131554 120645 109585 99252 89023 79497 71160 64495 58812 54567 51101 48057 44855 41515 38307 35386 32955 31119 29989 29135 28270 27467 26641 25681 24611 23477 22214 21010 +Iraq 22560 22576 22593 22610 22627 22644 22660 22677 22694 22711 22728 22752 22783 22822 22868 22922 22983 23053 23129 23214 23306 23406 23514 23630 23754 23887 24027 24176 24333 24498 24673 24855 25039 25224 25411 25598 25788 25979 26171 26364 26559 26756 26954 27153 27354 27556 27760 27965 28172 28381 28591 28800 29011 29224 29438 29654 29871 30091 30311 30533 30757 30989 31230 31480 31739 32006 32284 32570 32866 33172 33488 33814 34150 34450 34809 35179 35561 35926 36337 36763 37193 37614 38054 38500 38937 39393 39854 40310 40781 41258 41741 42229 42724 43223 43727 44236 44746 45257 45770 46280 46788 47294 47789 48290 48791 49287 49782 50257 50744 51229 51713 52191 52676 53333 54171 55193 56232 57291 58373 59476 60601 61744 62910 64095 65304 66535 68141 69783 71460 73178 76317 79435 82539 85624 88694 91749 94784 97803 100804 103793 106762 109252 167807 162868 158155 153384 148783 144171 139545 134796 78896 92316 99839 101109 97036 89380 80889 70685 60813 53013 48397 46020 46799 49263 51769 53339 54089 54106 53437 52321 50998 49415 47413 45227 43302 41814 40849 40326 40067 39796 39281 38745 37953 37136 36387 35754 35367 35208 35122 35148 35205 35081 34905 34889 34906 35153 35532 36133 36684 37070 37178 37061 36750 36436 36186 36252 36712 37455 38340 39179 39743 39866 39808 39564 39102 38682 +Ireland 42986 43457 43932 44412 44898 45389 45886 46387 46895 47408 48030 48563 49098 49634 50172 50711 51252 51795 52339 52885 53432 53980 54522 55055 55580 56098 56607 57107 57600 58083 58558 59024 59462 59882 60292 60684 61049 61286 61296 61144 60829 60359 59799 59172 58486 57758 84364 71622 93357 93558 58524 51935 50245 48556 46967 41493 36607 32265 28474 25221 22390 19974 17818 15906 14149 15060 14515 14917 14685 14234 15046 14343 15297 14629 13939 13787 13747 13228 13474 14236 15431 11749 12110 12222 11405 11546 11155 11149 11177 10587 10469 10760 11758 11542 11441 11802 10692 12524 12500 12028 11925 10815 10772 10240 10969 10199 9990 9688 10366 9779 10084 9963 8842 10164 8745 9123 7671 7778 7680 8001 8324 6739 5582 5512 6285 5759 6274 5862 5490 5591 5442 5580 5913 5280 5135 5647 6292 6234 5670 5612 5652 6517 6037 7589 7198 6374 5783 6137 3914 3761 3739 3357 3068 2845 2671 2533 2420 2320 2236 2172 2118 2073 2039 2014 1969 1876 1740 1585 1440 1345 1315 1344 1429 1529 1592 1602 1535 1411 1259 1108 986 905 845 803 760 718 670 613 558 506 460 415 388 373 366 371 380 390 401 413 412 410 392 373 350 334 327 321 326 320 315 309 297 274 259 244 +Israel 3931 3925 3913 3907 3901 3894 3883 3876 3870 3858 3852 3846 3834 3828 3822 3816 3804 3798 3792 3780 3774 3768 3762 3750 3744 3738 3726 3720 3714 3702 3696 3689 3684 3671 3666 3660 3647 3642 3635 3629 3617 3613 3609 3602 3601 3602 3599 3603 3608 3615 3617 3627 3638 3645 3660 3677 3696 3710 3733 3757 3777 3806 3835 3857 3888 3919 3950 3975 4008 4042 4070 4106 4142 4169 4207 4245 4285 4313 4354 4395 4430 4469 4513 4558 4594 4640 4688 4726 4773 4822 4863 4913 4964 5016 5059 5114 5169 5216 5274 5334 5394 5286 5188 5094 4992 4901 4813 4714 4629 4560 4490 4417 4358 4280 4153 3997 3809 3629 3496 3417 3383 3342 3316 2904 2412 3351 2710 3016 2491 2373 1862 2462 2791 2764 2803 2344 2700 2283 2493 2355 2727 2677 2903 2197 1824 1891 1724 1661 2091 3266 2998 2569 2712 2510 2460 2346 2595 2566 2325 2158 2209 2194 2181 2169 2160 2156 2161 2176 2199 2226 2254 2342 2425 2498 2658 2461 2274 2081 1901 1756 1638 1564 1496 1444 1380 1320 1270 1235 1204 1194 1174 1136 1086 1037 979 947 927 920 921 915 896 871 848 808 770 753 724 714 707 700 706 699 706 709 706 693 +Italy 330846 331997 333152 334311 335474 335640 336808 337980 339155 340335 341595 342833 344126 345473 346877 347297 348808 350376 352001 353685 355427 357228 359088 361009 362991 365033 366040 368200 370424 372710 375060 377475 379906 382351 384814 387291 388606 391108 393626 396161 398711 401278 403862 406462 409079 411712 414363 415776 418453 421147 423858 423061 422945 422114 422000 421171 420359 420233 418016 417780 416799 415784 416238 454397 460220 466054 471956 477945 483972 479181 474258 469228 464161 423223 420924 422060 396492 386925 393823 396768 411352 410894 417136 400478 375721 381807 391896 385303 374890 354729 359268 363348 350181 342446 342401 349184 334366 306207 315434 296458 322540 301590 318111 305601 293514 299187 292236 280406 304536 289458 270154 289479 246482 254585 233219 273989 283980 257070 385313 260645 259926 234986 220201 213072 204761 207540 217486 201331 201103 202007 178804 176055 173082 157309 154261 155316 148490 163591 157645 139567 139866 149332 148594 150388 129856 132747 128264 103313 86240 84269 92958 75892 63299 54825 49547 46774 45520 45712 46552 47209 47393 46964 45980 44480 42465 40439 38298 36113 33895 31889 29962 28059 26236 24298 22112 19773 17399 15253 13293 11737 10562 9624 8862 8280 7739 7253 6765 6393 6079 5774 5539 5263 4993 4724 4400 4077 3753 3483 3224 3045 2845 2715 2661 2562 2507 2488 2460 2413 2348 2325 2229 2124 2004 1882 1776 1693 +Jamaica 5669 5669 5669 5669 5669 5669 5669 5669 5669 5669 5669 5669 5669 5669 5668 5668 5668 5668 5667 5667 5666 5666 5666 5665 5664 5664 5663 5662 5661 5661 5659 5659 5658 5657 5656 5655 5654 5653 5652 5651 5650 5652 5658 5666 5677 5692 5710 5731 5756 5784 5815 5850 5888 5929 5974 6023 6075 6131 6191 6254 6322 6393 6466 6539 6614 6690 6767 6846 6925 7007 6821 6560 6308 6060 5826 5600 5383 5170 4968 4970 6928 6143 4994 5541 6102 5905 5790 6499 6293 6892 7519 7088 6739 7030 7084 7603 7486 7497 7377 7130 7259 7033 7215 8590 9146 8065 9741 11090 8569 8782 8995 9464 9726 8544 8213 8526 8861 9677 9540 9107 10059 11182 9813 9260 8489 8870 8891 9462 8871 9373 8229 9193 8407 9119 7946 8459 8037 7162 8051 7530 6921 6381 5988 5669 6177 6468 6192 6011 5835 5698 6212 6081 5708 5692 5674 5627 5633 5613 5564 5490 5408 5297 5189 5076 4951 4799 4635 4448 4250 4038 3835 3604 3390 3193 3018 2865 2722 2595 2490 2424 2387 2374 2396 2420 2422 2377 2296 2167 2024 1892 1791 1712 1665 1633 1603 1563 1514 1463 1399 1338 1269 1196 1120 1043 980 935 909 894 886 870 843 799 749 694 652 631 +Japan 325889 328362 330840 333323 335812 338306 340102 342606 345115 347629 350158 352681 355209 355613 356726 357129 358242 358644 359044 360157 360555 361668 362066 363179 363574 363969 365082 365474 366587 366979 368091 368481 368871 369986 370378 371496 371889 373011 373406 374530 375657 377563 378790 380067 381396 382775 384943 386429 387968 389561 391207 393621 395347 397128 398966 400860 403566 405577 407647 409776 411964 415030 417391 419813 410618 400603 390101 380893 371676 360446 351165 341857 331436 292358 302042 314174 326513 319597 314027 312609 316205 335819 328115 357473 344319 360624 370535 372329 412537 424226 398545 376868 419684 408085 419172 430374 440344 457869 466996 471877 470841 506975 505963 493937 474333 468233 454298 524087 536148 542857 529534 546897 535116 532686 539455 513470 519597 513939 498198 488486 544112 565414 528307 539329 502687 472298 456074 466303 467482 470387 406928 436549 383712 401649 415759 346003 387943 345679 383914 353335 287231 265495 274572 279904 292756 306167 320210 334893 226201 230173 222405 183303 150848 126411 108270 94844 84541 77534 72497 68172 63789 59517 55164 50969 47117 43555 40453 37667 35109 33312 32059 31160 30915 30548 29524 27663 25110 22075 18851 16188 14282 12928 12355 12082 11882 11358 10612 9775 8963 8199 7732 7403 7198 7083 6992 6771 6544 6196 5957 5584 5316 5037 4735 4542 4354 4080 3930 3805 3693 3580 3461 3670 3222 3094 2964 2834 +Jordan 4384 4384 4384 4384 4384 4384 4384 4384 4384 4384 4384 4384 4386 4389 4392 4397 4402 4408 4415 4422 4431 4441 4451 4462 4475 4488 4502 4517 4533 4550 4567 4586 4605 4623 4642 4661 4680 4699 4719 4738 4757 4776 4796 4815 4835 4855 4875 4895 4915 4935 4955 4972 4990 5007 5025 5043 5060 5078 5096 5114 5132 5150 5170 5190 5210 5231 5253 5276 5299 5322 5347 5372 5398 5421 5448 5476 5505 5533 5564 5595 5627 5659 5691 5723 5756 5788 5821 5854 5887 5921 5955 5989 6023 6057 6092 6126 6160 6193 6226 6258 6289 6320 6348 6377 6405 6432 6458 6482 6506 6529 6552 6572 6594 6615 6639 6664 6689 6714 6744 6774 6803 6832 6861 6891 6920 6950 6998 7056 7104 7153 7208 7262 7316 7369 7422 7475 7321 7190 7036 6884 6732 6665 6599 6532 6466 7555 7227 6920 6629 6342 6036 6082 5957 5830 5769 5805 5924 6090 6273 6407 6455 6506 6471 6426 6456 6598 6646 6741 6835 6873 6830 6903 6901 6817 6653 6405 6113 5747 5380 5079 4901 4789 4778 4808 4818 4759 4631 4440 4250 4129 4101 4101 4192 4319 4414 4421 4457 4415 4317 4210 4103 3967 3845 3740 3674 3660 3642 3662 3719 3773 3788 3826 3845 3829 3786 3670 +Kazakhstan 45332 45332 45332 45332 45332 45332 45332 45332 45332 45332 45332 45351 45392 45451 45532 45633 45755 45898 46061 46247 46453 46682 46932 47205 47500 47817 48157 48520 48906 49316 49749 50207 50668 51133 51603 52077 52556 53039 53526 54018 54514 55015 55520 56031 56546 57065 57589 58118 58653 59191 59735 60281 60832 61388 61948 62514 63086 63663 64244 64831 65423 66021 66625 67233 68865 70531 72453 74200 75997 76692 77163 77868 78347 79041 79286 79545 79802 80035 80288 80539 80799 81040 81297 81551 81788 82050 82312 82558 82815 83070 83336 83599 83860 84119 84372 84632 84763 85003 86141 87015 88273 88084 88128 88025 88051 87800 87923 87617 87583 87399 87340 86728 86256 85648 85042 84560 83946 83603 83120 82511 81909 81415 80809 80197 79698 79091 78012 76443 75129 73588 71790 70025 68295 66585 65144 63488 61868 60275 58702 57165 55028 53142 51095 49096 47141 45231 43552 41724 39936 38183 36477 37257 38658 40106 41218 42372 43140 43908 44419 44402 44253 43429 42276 40706 38822 36767 34722 32849 31247 29941 28906 25757 26561 27832 28956 29381 29230 28396 27191 26001 25135 24546 24208 23996 23856 23590 23337 23066 22688 22032 21046 19938 18519 16769 15062 13479 12139 10998 10183 9643 9335 9064 9054 9155 9285 9324 9255 9069 8785 8393 7944 7439 6970 6489 5994 5528 +Kenya 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62181 62208 62234 62261 62287 62314 62341 62368 62395 62421 62448 62474 62501 62528 62555 62581 62608 62635 62661 62688 62715 62741 62768 62795 62822 62848 62875 62902 62928 62955 62982 63009 63035 63062 63089 63115 63142 63169 63196 63222 63249 63276 63302 63329 63354 63376 63393 63403 63405 63397 63378 63351 63313 63264 63207 63138 63060 62973 62874 62767 62654 62536 62414 62354 62293 62232 62170 62108 62013 61924 61836 62092 62699 64228 65792 67400 69428 71212 71856 72719 75967 79371 82723 85768 89003 91901 95017 97795 100495 103120 105694 106034 106256 106368 106377 106288 106107 105838 105491 105066 104571 101483 96287 93494 90517 87649 84965 82279 79831 77795 76298 75105 74441 74286 74475 74991 75642 76262 76845 77540 78371 79389 80429 81408 82087 82576 82738 82461 82028 81758 81702 81855 82268 82981 84016 85502 87389 89876 92870 96204 99742 103214 106196 108856 111263 113577 116153 118673 120849 122225 122565 122137 120675 118314 115154 111190 107337 103176 96539 92039 88167 84089 80929 78651 76416 74429 +Kiribati 322 321 319 318 317 316 315 314 312 311 310 309 308 307 306 305 304 303 302 302 301 300 300 299 299 299 298 298 297 297 297 297 296 296 296 295 296 295 295 295 294 294 294 294 294 293 293 293 293 292 292 293 294 295 296 297 298 299 299 301 301 302 303 304 305 306 307 308 308 309 310 311 312 313 314 315 316 317 317 318 319 320 321 322 323 323 324 325 326 327 328 329 329 330 331 332 333 334 335 335 336 337 338 339 339 340 341 342 343 344 344 345 346 347 348 349 349 350 350 349 349 349 349 348 348 348 347 347 347 347 349 351 353 355 357 358 360 362 364 366 368 370 371 373 375 377 378 380 382 383 385 390 400 408 410 410 409 406 402 397 390 381 371 351 337 321 306 289 272 256 242 229 218 210 207 208 215 227 240 253 262 267 265 260 255 253 252 253 255 254 248 240 230 219 210 204 199 197 195 190 181 167 150 133 123 124 134 156 182 203 214 214 204 188 173 162 +Kuwait 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1924 1923 1923 1922 1921 1921 1920 1920 1919 1918 1918 1918 1918 1919 1920 1922 1925 1928 1931 1935 1940 1945 1950 1954 1961 1968 1977 1984 1994 2004 2015 2025 2036 2046 2057 2068 2079 2089 2100 2111 2122 2133 2145 2156 2167 2178 2189 2200 2211 2221 2232 2241 2250 2260 2269 2277 2285 2293 2300 2307 2314 2321 2328 2338 2352 2371 2389 2408 2428 2447 2468 2489 2510 2532 2553 2575 2600 2629 2655 2684 2733 2781 2829 2876 2924 2971 3018 3064 3111 3157 2991 2829 2673 2520 2371 2225 2081 1941 1803 1667 1644 1555 1444 1373 1338 1338 1369 1431 1524 1350 1416 1463 1563 1688 1799 1885 1960 2012 2061 2119 2188 2295 2411 2503 2539 2502 2376 2197 2000 1818 1675 1573 1484 1404 1323 1239 1160 1075 974 867 749 792 587 523 486 479 468 490 523 553 573 567 542 514 502 518 552 611 678 736 763 753 725 677 634 598 +Latvia 8775 8760 8745 8745 8730 8715 8699 8684 8684 8669 8654 8643 8635 8646 8647 8650 8658 8670 8701 8721 8745 8772 8804 8855 8895 8938 8986 9038 9110 9170 9235 9303 9372 9458 9528 9599 9670 9741 9831 9904 9977 10050 10125 10218 10293 10369 10445 10522 10619 10698 10776 10816 10875 10914 10953 11012 11050 11089 11148 11186 11246 11180 11077 11030 10962 10859 10812 10744 10640 10591 10522 10418 10368 10295 10246 10140 10069 10016 9909 9838 9786 9677 9604 9552 9442 9369 9315 9206 9152 9077 8968 8913 8837 8728 8673 8595 8484 8425 8364 8302 8237 8152 8084 8015 7915 7843 7770 7695 7619 7542 7466 7387 7278 7181 7103 7024 6946 6868 6789 6710 6602 6523 6444 6366 6288 6063 5863 5665 5470 5278 5166 5055 4945 4836 4729 4623 4589 4555 4521 4488 4454 4421 4388 4331 4299 4267 4234 4202 4170 4138 3736 3397 3107 2834 2578 2339 2117 1912 1722 1547 1325 1164 1212 1212 1039 902 848 874 921 879 900 802 799 801 936 1011 1002 899 936 839 828 836 863 893 900 885 858 839 837 859 883 889 834 732 621 526 447 392 358 337 321 311 310 311 305 294 283 267 248 227 207 187 167 149 137 129 +Lebanon 5969 5969 5969 5969 5969 5969 5969 5969 5969 5969 5969 5971 5975 5981 5989 6000 6012 6027 6044 6063 6084 6108 6134 6161 6191 6224 6259 6296 6335 6377 6421 6467 6514 6561 6609 6656 6705 6753 6802 6851 6900 6951 7001 7051 7102 7154 7205 7258 7310 7363 7416 7462 7507 7553 7600 7646 7693 7740 7787 7835 7882 7931 7979 8028 8077 8126 8176 8225 8276 8326 8377 8428 8479 8529 8582 8634 8687 8738 8791 8845 8898 8952 9006 9061 9115 9170 9226 9281 9337 9394 9451 9509 9566 9624 9683 9741 9798 9855 9911 9965 10019 10071 10121 10170 10218 10264 10309 10352 10393 10435 10474 10513 10551 10641 10783 10979 11178 11381 11605 11829 12058 12290 12527 12769 13015 13266 13522 13782 14048 14318 14692 15063 15433 15801 16167 16530 16892 17251 17608 17963 18316 17027 15778 14564 13379 12267 11132 10356 9631 8954 8322 7694 7205 6749 6323 5924 5689 5512 5286 5079 4947 4907 4956 5045 5102 5088 5023 4892 4729 4602 4544 4524 4564 4624 4646 4604 4564 4458 4313 4152 3993 3815 3642 3471 3278 3067 2828 2586 2364 2182 2066 1972 1925 1900 1857 1784 1681 1556 1419 1309 1226 1149 1096 1046 975 881 772 656 556 504 506 556 644 741 816 835 +Lesotho 4589 4589 4589 4589 4589 4589 4589 4589 4589 4589 4589 4591 4594 4599 4606 4614 4624 4636 4649 4665 4682 4701 4721 4744 4768 4794 4822 4852 4883 4917 4952 4990 5027 5065 5104 5142 5181 5220 5259 5299 5339 5379 5420 5460 5502 5543 5585 5627 5670 5712 5755 5799 5842 5886 5930 5975 6019 6065 6110 6156 6202 6249 6296 6343 6391 6438 6487 6536 6585 6634 6684 6734 6785 6834 6886 6937 6989 7041 7094 7147 7200 7253 7308 7363 7417 7473 7529 7584 7641 7699 7757 7815 7874 7933 7992 8052 8110 8169 8228 8284 8341 8397 8450 8503 8556 8607 8658 8706 8753 8801 8847 8893 8938 8972 9005 9040 9074 9108 9142 9177 9211 9246 9280 9315 9350 9385 9420 9454 9489 9525 9588 9651 9714 9775 9836 9896 9956 10015 10073 10130 10187 9944 9706 9474 9245 9022 8803 8589 8379 8174 7973 7666 6928 6731 6585 6499 6452 6443 6477 6533 6619 6713 6812 6913 7018 7128 7225 7293 7331 7336 7319 7291 7241 7173 7097 7006 6869 6708 6532 6345 6150 5969 5781 5607 5431 5260 5112 4974 4848 4766 4737 4755 4854 5045 5321 5652 6025 6355 6620 6805 6909 6922 6863 6759 6647 6575 6525 6352 6314 5879 5680 5574 5554 5641 5629 5570 +Liberia 5786 5786 5786 5786 5786 5786 5786 5786 5786 5786 5786 5788 5792 5799 5809 5820 5834 5850 5869 5890 5913 5940 5968 5999 6033 6069 6107 6149 6192 6239 6288 6340 6392 6445 6498 6552 6606 6660 6715 6770 6826 6882 6939 6996 7054 7112 7170 7230 7289 7349 7410 7473 7536 7600 7665 7730 7797 7863 7930 7997 8065 8134 8203 8273 8344 8415 8486 8559 8631 8705 8779 8854 8929 9003 9080 9157 9235 9312 9391 9471 9552 9631 9713 9796 9878 9962 10047 10131 10217 10304 10392 10480 10569 10659 10750 10841 10931 11021 11111 11199 11286 11373 11457 11541 11623 11704 11785 11861 11939 12015 12090 12165 12239 12313 12388 12434 12481 12527 12568 12611 12654 12697 12739 12782 12825 12868 12910 12953 13015 13057 13171 13284 13395 13503 13611 13717 13821 13924 14025 14125 14223 14320 14415 14509 14601 14691 14645 14574 14501 14427 14351 14307 14446 14584 14723 15130 15606 15061 15327 15597 15944 16315 16677 17068 17423 17747 18023 18199 18337 18454 18611 18798 18993 19198 19385 19608 19829 19971 20157 20416 20816 21375 22076 22770 23270 23443 23856 24025 23921 23650 23307 22531 21434 20426 19950 20306 20417 21101 21900 22205 21700 21076 19844 18343 16935 15861 14955 14279 13748 13232 12697 12218 11746 11253 10842 10509 +Libya 10626 10632 10639 10645 10652 10659 10665 10672 10678 10685 10691 10700 10711 10724 10740 10758 10778 10801 10825 10853 10883 10914 10949 10986 11025 11067 11111 11157 11206 11258 11312 11369 11425 11483 11540 11598 11655 11714 11772 11832 11891 11950 12010 12070 12130 12191 12252 12313 12375 12437 12499 12577 12655 12734 12813 12893 12973 13054 13135 13217 13299 13381 13465 13548 13632 13717 13802 13888 13974 14061 14148 14236 14324 14412 14501 14591 14681 14771 14863 14955 15047 15139 15233 15327 15421 15516 15612 15708 15805 15902 16001 16099 16199 16299 16399 16499 16597 16696 16792 16887 16978 17068 17155 17240 17324 17404 17482 17557 17630 17701 17770 17838 17904 17971 18038 18105 18173 18236 18273 18317 18360 18404 18448 18491 18534 18578 18621 18665 18708 18751 18836 18919 19003 19086 19167 19248 19329 19408 19487 19565 19642 19763 19882 20002 20122 20241 20360 20480 20598 20717 20836 21075 21570 22079 22601 23138 23696 22786 21919 18934 18144 17466 17001 16652 16342 16071 15782 15458 15088 14674 14212 13671 13080 12476 11881 11322 10791 10301 9836 9414 9003 8584 8153 7751 7358 7022 6763 6531 6283 5983 5601 5148 4651 4170 3775 3509 3361 3313 3339 3362 3351 3311 3238 3126 3013 2901 2811 2717 2621 2512 2378 2503 2101 1946 1797 1684 +Lithuania 15362 15319 15276 15233 15190 15148 15105 15062 15019 14976 14933 14897 14867 14844 14827 14817 14814 14816 14826 14842 14865 14894 14930 14972 15021 15076 15138 15207 15283 15364 15453 15548 15643 15739 15835 15932 16029 16127 16224 16323 16422 16521 16621 16721 16822 16923 17025 17126 17229 17332 17435 17539 17644 17750 17856 17961 18068 18175 18283 18390 18499 18607 18717 18826 18936 19047 19158 19269 19381 19493 19605 19483 19300 19171 19048 18922 18742 18613 18489 18364 18182 18054 17927 17803 17617 17492 17365 17180 17053 16924 16798 16613 16486 16356 16226 16041 15907 15773 15635 15442 15298 15153 15056 14904 14804 14648 14542 14378 14268 14102 13987 13818 13701 13532 13415 13245 13127 12958 12838 12670 12550 12381 12262 12093 11973 11805 11586 11371 11106 10890 10585 10287 9948 9660 9378 9101 8828 8518 8256 7999 7747 7459 7217 6979 6746 6517 6257 6037 5824 5613 5352 5206 5131 5029 4903 4758 4594 4417 4229 4033 2909 2687 2650 2508 2119 1812 1683 1641 1557 1424 1307 1247 1248 1292 1347 1384 1382 1331 1252 1179 1131 1110 1120 1139 1148 1127 1071 1009 958 938 954 1006 1048 1002 872 724 614 538 488 449 419 386 358 332 314 299 287 269 252 234 215 198 182 172 167 164 +Luxembourg 1546 1546 1543 1543 1543 1543 1540 1540 1540 1540 1537 1538 1539 1540 1540 1542 1545 1545 1549 1553 1558 1561 1567 1573 1580 1585 1592 1601 1610 1617 1627 1634 1645 1652 1660 1671 1679 1686 1698 1705 1716 1724 1732 1744 1752 1760 1771 1779 1787 1799 1884 1950 1811 1784 1849 1748 1855 1868 1952 2082 1994 1977 1938 2044 2002 1982 1946 1987 1972 2019 2079 2008 2033 2087 2143 2016 2257 2204 2140 2213 2101 2092 2018 1925 2044 1876 1909 1831 1763 1746 1676 1729 1631 1676 1612 1610 1582 1616 1562 1614 1581 1628 1615 1685 1816 1714 1640 1490 1644 1560 1442 1587 1385 1265 1218 1101 1160 1250 1535 1393 920 843 871 883 789 859 928 837 866 993 810 768 793 721 654 673 592 587 643 594 537 590 637 763 992 917 501 451 407 393 377 350 330 310 291 273 256 240 224 209 194 169 189 176 152 146 138 130 121 112 103 93 84 76 69 64 61 60 59 59 58 56 55 52 50 48 46 45 44 43 42 41 40 39 38 36 34 32 31 29 26 25 23 22 20 19 18 16 15 15 14 14 13 13 13 13 +Macedonia, FYR 6400 6397 6395 6392 6390 6387 6385 6382 6380 6377 6375 6375 6378 6384 6392 6404 6417 6434 6454 6476 6502 6530 6561 6595 6632 6672 6715 6761 6810 6863 6918 6977 7035 7095 7155 7215 7276 7338 7400 7462 7525 7589 7653 7718 7783 7848 7915 7982 8049 8117 8186 8205 8225 8245 8264 8282 8301 8319 8337 8368 8385 8402 8419 8873 9319 9414 9510 9593 9690 9789 9873 9883 9877 9883 9875 9882 9873 9877 9866 9870 9857 9941 10010 10096 10165 10253 10324 10412 10484 10575 10649 10794 10942 11073 11224 11376 11531 11687 11846 11987 12148 11880 11630 11361 11092 10843 10924 11022 11103 11202 11303 11247 11191 11136 11081 11025 10990 10934 10876 10818 10761 10703 10665 10607 10550 10492 10434 10376 10338 10281 10407 10531 10455 10376 10294 10208 10120 10029 9936 9840 9742 9642 9541 9437 9333 9227 9120 9012 8903 8794 8684 8680 8611 8546 8483 8423 8369 8320 8281 8256 8250 7870 7533 7232 6958 6697 6434 6160 5872 5572 5268 4833 4433 4074 3756 3475 3229 3011 2812 2628 2512 2354 2300 2202 2082 1992 1920 1805 1615 1407 1257 1177 1110 1019 899 782 669 576 509 455 417 389 369 361 355 343 323 295 267 242 215 188 167 154 145 135 +Madagascar 31999 32138 32278 32418 32560 32701 32843 32986 33129 33273 33430 33579 33733 33892 34057 34226 34400 34579 34763 34953 35147 35348 35553 35763 35980 36201 36429 36661 36900 37144 37394 37650 37907 38167 38428 38691 38956 39222 39491 39761 40033 40306 40582 40860 41140 41421 41704 41990 42277 42566 42858 43148 43440 43734 44030 44328 44628 44930 45235 45541 45849 46160 46473 46787 47104 47423 47744 48067 48392 48720 49050 49382 49717 50046 50384 50725 51069 51407 51756 52106 52459 52807 53165 53525 53882 54247 54614 54978 55351 55725 56103 56482 56865 57250 57635 58021 58405 58785 59160 59528 59889 60242 60583 60922 61252 61574 61890 62188 62486 62775 63060 63337 63616 63892 64171 64449 64729 65009 65297 65583 65870 66159 66448 66739 67029 67322 67795 68179 68658 68878 69103 69316 69526 69729 69922 70112 70293 70468 70635 70799 70952 71100 71243 71379 71508 71630 69583 67783 65799 63850 62126 61803 61745 61603 61559 61231 59495 57806 56157 54553 52997 51490 50036 48641 47315 46072 45621 45144 39875 41400 43188 45197 47397 49888 52578 55238 57961 60538 62975 65101 66968 68625 69450 69875 70437 71754 73414 76039 78804 80782 81636 81918 81014 79479 77943 76797 75719 74568 73288 71521 69116 66322 63150 59816 56509 53526 50675 48313 46352 44877 43647 42741 41952 41272 40700 40075 +Malawi 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15149 15159 15169 15178 15188 15198 15207 15217 15226 15236 15246 15255 15265 15274 15284 15294 15303 15313 15323 15332 15342 15351 15361 15371 15380 15390 15400 15409 15419 15428 15438 15448 15457 15467 15476 15486 15496 15505 15515 15525 15534 15543 15553 15563 15572 15581 15588 15633 15716 15839 16002 16207 16337 16638 16993 17402 17868 18312 18796 19291 19771 20260 20704 21115 21533 21961 22396 22840 23273 23720 24175 24582 24914 25193 25475 25761 26304 27115 28206 29343 30717 32079 33432 34773 36106 37429 38742 40044 41335 42618 43890 45125 46349 47562 48762 49953 51133 52302 53460 54608 55745 56120 57140 58236 59407 60654 61972 63364 64825 66358 67959 69626 71296 72973 71244 72633 74352 76329 78454 80442 82231 83453 83860 83607 83120 82698 82034 80989 79855 78632 77601 76804 76399 77234 80454 86184 92037 98366 103874 106628 105576 104521 100284 94845 90504 88431 87130 87011 86959 85635 82502 77767 71959 66369 61997 59020 57239 56314 55401 54458 53219 50363 46621 43405 41189 40048 +Malaysia 4790 4790 4790 4790 4790 4790 4790 4790 4790 4790 4790 4795 4805 4819 4839 4863 4893 4928 4968 5015 5066 5124 5187 5257 5332 5414 5503 5597 5699 5807 5922 6045 6169 6297 6427 6560 6695 6834 6975 7119 7266 7416 7569 7726 7886 8049 8216 8386 8559 8737 8918 9102 9290 9482 9678 9878 10083 10292 10505 10722 10944 11180 11429 11694 11973 12269 12581 12911 13258 13625 14011 14418 14846 15205 15678 16176 16699 17174 17758 18375 19012 19611 20291 20995 21664 22416 23194 23942 24773 25633 26523 27444 28397 29383 30403 31456 32511 33565 34615 35666 36715 37765 38823 39853 40875 41889 42922 43913 45006 46104 47149 48199 49115 49947 50803 51681 52586 53505 54453 55425 56424 56999 57599 58230 58867 59414 60066 60726 61388 62055 64098 63936 63486 63144 62522 62015 61228 60563 59621 58810 57931 56787 55781 54510 53385 51997 50765 48949 47178 45451 43766 41861 40583 39333 38113 36915 34455 33230 32036 30989 30175 29524 29033 28533 27788 26644 25129 23348 21505 19899 18724 17951 17597 17361 16996 16385 15472 14404 13329 12412 11743 11367 11147 10970 10761 10471 10012 9541 9012 8591 8267 8006 7823 7643 7542 7345 7199 6964 6633 6155 5648 5125 4753 4425 4198 4023 3842 3651 3531 3466 3484 3539 3631 3752 3787 3793 +Maldives 809 808 807 806 804 803 802 801 799 798 797 796 795 795 794 794 794 795 795 796 797 798 800 801 803 805 808 810 813 816 820 823 827 830 834 837 841 845 848 852 856 859 863 867 870 874 878 882 886 889 893 896 899 902 905 908 910 913 917 919 922 925 928 931 934 937 941 943 946 949 952 956 959 962 965 968 971 974 977 980 983 986 990 993 996 999 1002 1005 1009 1012 1015 1018 1022 1025 1028 1032 1035 1038 1041 1045 1048 1051 1055 1058 1061 1065 1068 1071 1075 1078 1080 1082 1079 1073 1067 1061 1056 1050 1046 1041 1037 1037 1043 1054 1065 1076 1084 1093 1101 1111 1106 1100 1095 1090 1085 1080 1075 1069 1064 1059 1054 1049 1044 1039 1034 1029 1024 1019 1014 1009 1004 1050 1141 1223 1304 1379 1447 1510 1566 1617 1661 1700 1733 1583 1561 1543 1527 1508 1488 1467 1444 1405 1362 1314 1260 1208 1158 1106 1061 1031 1021 1028 1049 1072 1084 1076 1055 1015 963 907 851 794 739 681 622 561 498 436 379 327 281 242 209 183 178 143 129 117 108 100 93 86 80 76 71 67 +Mali 30013 30013 30013 30013 30013 30013 30013 30013 30013 30013 30013 30027 30054 30094 30147 30214 30295 30390 30500 30623 30760 30912 31079 31261 31457 31668 31895 32137 32394 32667 32955 33260 33567 33877 34190 34506 34824 35146 35471 35798 36129 36463 36800 37139 37483 37829 38178 38531 38887 39246 39608 39983 40361 40742 41127 41517 41909 42305 42705 43109 43516 43928 44342 44762 45185 45612 46043 46478 46918 47361 47809 48261 48717 49164 49628 50097 50571 51036 51518 52005 52497 52981 53482 53987 54487 55002 55522 56037 56567 57102 57641 58186 58736 59291 59850 60411 60972 61532 62090 62642 63190 63731 64259 64790 65315 65834 66347 66838 67336 67829 68318 68800 69286 69773 70263 70756 71252 71751 72233 72722 73214 73172 73129 73086 72984 72882 72885 72783 72788 72792 73641 75563 77500 79451 81416 83397 85393 87403 89428 91468 93523 95593 97678 99778 101893 104025 106173 108335 110513 112708 114917 115606 116564 117612 118747 119974 121294 122708 124216 125822 127530 125249 123096 115854 115165 114749 115028 114487 113795 113410 113940 115161 115681 115500 114863 114090 113520 112129 110357 108826 107824 107461 106590 105397 103990 102615 101862 100542 99146 98194 98211 98549 99602 101215 103312 105448 107671 109207 110008 110025 109556 108253 106178 103624 100949 98396 96454 94834 93487 91998 90659 89451 87738 85933 83962 82710 +Malta 2375 2343 2312 2281 2250 2220 2190 2160 2131 2103 2074 2047 2021 1996 1971 1948 1925 1904 1883 1863 1843 1825 1807 1790 1774 1758 1743 1729 1715 1702 1690 1678 1666 1654 1643 1631 1620 1608 1597 1586 1575 1564 1553 1542 1531 1520 1510 1499 1489 1478 1468 1458 1447 1437 1427 1417 1407 1397 1388 1378 1368 1359 1349 1340 1330 1321 1312 1303 1293 1284 1275 1266 1258 1249 1240 1231 1223 1214 1205 1197 1188 1178 1166 1156 1146 1134 1124 1114 1103 1093 1084 1073 1063 1054 1045 1034 1025 1016 1006 997 1044 1048 1051 1054 1057 1060 1027 995 963 932 901 867 833 800 767 735 749 763 776 789 802 791 780 769 758 748 747 745 744 743 733 724 715 706 697 688 679 671 662 654 645 637 629 621 613 605 598 590 583 575 568 557 543 527 396 362 349 346 348 346 336 317 290 258 227 200 173 150 131 118 112 112 116 124 129 131 128 123 117 109 102 95 88 80 74 71 69 70 71 71 70 67 62 57 51 47 45 42 41 39 37 34 31 28 25 24 23 24 25 26 26 26 26 25 24 24 +Mauritania 7021 7021 7021 7021 7021 7021 7021 7021 7021 7021 7021 7022 7025 7029 7035 7042 7050 7060 7071 7084 7099 7114 7131 7150 7170 7191 7214 7239 7265 7292 7321 7352 7382 7413 7444 7475 7506 7538 7569 7601 7632 7664 7696 7728 7760 7793 7825 7858 7890 7923 7956 7989 8023 8056 8089 8123 8157 8191 8224 8259 8293 8327 8362 8396 8431 8467 8502 8537 8572 8608 8644 8679 8715 8751 8788 8824 8861 8897 8934 8971 9008 9045 9083 9120 9158 9196 9234 9272 9310 9349 9388 9427 9466 9505 9544 9583 9622 9659 9695 9730 9763 9777 9788 9799 9807 9814 9820 9824 9826 9827 9826 9825 9823 9821 9819 9817 9814 9812 9809 9807 9804 9802 9799 9796 9794 9790 9773 9756 9738 9721 9772 9823 9873 9923 9971 10019 10066 10113 10159 10203 10248 10236 10237 10234 10239 10226 10209 10184 10148 10100 9453 9554 9637 9706 9790 9910 10051 10145 10208 10238 10248 10245 10166 10055 9941 9857 9779 9684 9612 9594 9660 9799 9985 10185 10362 10473 10530 10529 10469 10386 10323 10257 10166 10041 9888 9709 9546 9403 9310 9262 9285 9348 9447 9600 9781 10008 10254 10501 10761 11004 11279 11523 11791 12022 12182 12253 12302 12255 12166 12046 11915 11802 11630 11470 11271 11050 +Mauritius 958 979 1000 1021 1043 1065 1088 1112 1135 1160 1194 1219 1246 1272 1299 1327 1355 1385 1414 1444 1475 1507 1539 1572 1605 1640 1675 1711 1747 1785 1823 1862 1901 1942 1984 2026 2069 2114 2159 2205 2252 2304 2362 2426 2496 2572 2656 2747 2846 2954 3070 3196 3321 3443 3565 3684 3802 3918 4032 4144 4254 4362 4146 3933 3725 3523 3326 3134 2949 2770 2597 2430 2736 4239 3336 3472 3253 3156 3271 2978 2873 3570 3784 4460 3599 3744 3325 3982 3547 2825 3766 3646 4526 4756 4213 4709 6701 5414 4374 4061 4726 5150 4495 3519 3136 4300 3810 3494 4014 3467 3218 3510 4029 3122 3084 3494 2861 3792 4233 4525 4148 3962 3768 3697 3508 3287 3131 3468 2971 2974 4380 4635 3742 3119 3153 3509 3697 4162 4536 4504 4739 3955 5001 4395 4458 6167 4808 3689 6498 2915 2390 2711 2627 3211 2748 3167 3485 3159 2946 2827 2785 2762 2697 2577 2508 2580 2698 2642 2347 2020 1805 1692 1644 1617 1552 1422 1271 1135 1037 964 904 845 775 694 634 613 612 588 535 483 453 445 463 496 530 551 547 507 439 372 322 294 288 297 311 317 313 296 269 241 221 208 201 198 195 192 +Mexico 141136 141585 142035 142487 142940 143395 143851 144308 144767 145228 145716 146193 146685 147192 147714 148251 148804 149373 149957 150557 151173 151805 152453 153118 153799 154496 155210 155941 156689 157454 158236 159035 159838 160646 161458 162273 163093 163917 164745 165577 166414 167290 168206 169163 170161 171200 172282 173406 174575 175787 177043 178375 179753 181179 182652 184172 185741 187360 189028 190747 192518 194369 196266 198210 200202 202242 204332 206473 208663 210907 213203 215552 217957 220188 222711 225295 227940 230492 233289 236156 239057 241900 244872 247881 250841 253981 257221 260337 263747 267273 270978 284735 299217 314479 289356 269181 278930 305720 302558 325264 304834 304805 302354 302197 300935 324788 316147 317710 309438 302379 315833 308068 298749 290782 282957 274494 266998 259694 260843 262692 264428 266665 271097 265901 273947 282189 266390 219855 269673 265878 268574 264702 267320 286133 286380 273874 302419 326531 307636 254180 325736 296688 334665 308408 310778 306178 305775 294917 278247 312399 305615 296230 290668 285066 279459 273838 268225 262631 257089 251654 248878 246257 243859 230074 233598 235833 237443 237484 236423 235620 235521 236793 238519 240199 239342 234814 226650 214211 199329 184275 171603 161154 153483 148265 144184 139904 135418 130719 125662 120379 115008 109242 103469 97800 92366 86981 82275 77596 73075 68589 64086 59954 55646 52056 49081 46553 44763 43385 42138 40965 39580 37776 36230 34428 32785 31278 +Micronesia, Fed. Sts. 310 308 306 304 302 300 298 296 294 292 290 288 287 285 283 282 281 279 278 277 276 274 274 272 271 271 270 270 269 268 268 267 267 267 266 266 265 265 265 264 264 264 263 263 262 262 262 261 261 260 260 260 259 259 258 258 257 257 257 256 256 255 255 254 254 254 253 253 252 252 252 251 251 250 250 250 249 249 248 248 247 247 247 246 246 245 245 245 244 244 243 243 242 242 242 241 241 241 240 240 239 239 238 238 238 237 237 236 236 236 235 235 235 234 234 233 233 233 232 232 232 231 231 231 230 230 231 233 234 236 238 240 242 244 245 247 249 251 252 254 256 257 259 260 262 263 265 266 267 269 270 269 269 267 266 264 262 259 257 254 252 250 249 248 247 246 243 240 236 231 226 219 210 202 194 187 182 178 175 173 176 160 172 183 192 196 196 192 184 177 174 175 179 186 192 194 197 196 191 184 175 167 157 147 138 129 121 115 109 105 101 96 93 90 87 85 +Moldova 12516 12493 12469 12446 12423 12400 12377 12354 12331 12308 12286 12268 12256 12249 12248 12252 12263 12278 12299 12326 12358 12395 12439 12488 12543 12603 12669 12741 12819 12902 12991 13086 13182 13278 13376 13474 13573 13672 13772 13872 13974 14076 14179 14283 14388 14493 14599 14706 14813 14922 15031 15141 15251 15362 15473 15586 15700 15814 15929 16045 16161 16279 16398 16517 16637 16758 16880 17003 17127 17252 17377 17503 17631 17754 17883 18014 18145 18272 18405 18539 18674 18806 18943 19080 19215 19355 19496 19635 19778 19921 20066 20213 20359 20508 20657 20807 20959 21111 21204 21266 21328 21148 20966 20788 20641 20465 20290 20112 19940 19769 19628 19457 19289 19121 18955 18790 18655 18491 18330 18169 18010 17851 17722 17565 17409 17255 17101 16616 16107 15603 15395 15022 14662 14312 13969 13635 13308 12990 12679 12375 12079 11790 11509 11233 10964 10702 10445 10196 9952 9713 9481 9501 9628 9641 9643 9585 9472 9302 9079 8863 8548 8191 7733 7257 6780 6323 5904 5537 5228 4977 4777 4518 4671 4872 5003 5001 4886 4634 4315 4047 3888 3812 3791 3799 3762 3666 3531 3373 3198 3022 2863 2722 2577 2430 2280 2146 2010 1894 1780 1645 1490 1312 1142 1004 902 837 804 797 801 805 807 794 777 749 719 687 +Mongolia 10767 10767 10767 10767 10767 10767 10767 10767 10767 10767 10767 10768 10769 10772 10775 10779 10783 10789 10795 10802 10810 10819 10828 10838 10850 10861 10874 10887 10902 10917 10933 10949 10966 10983 11000 11016 11033 11050 11067 11084 11100 11118 11134 11151 11168 11185 11202 11220 11236 11254 11271 11287 11304 11320 11336 11353 11369 11386 11402 11419 11435 11452 11469 11486 11504 11521 11539 11557 11576 11594 11613 11633 11652 11670 11691 11711 11731 11751 11772 11794 11816 11837 11859 11880 11902 11924 11946 11967 11989 12011 12033 12055 12077 12099 12121 12143 12163 12181 12200 12215 12229 12240 12250 12258 12264 12268 12270 12270 12268 12265 12260 12254 12247 12240 12234 12228 12221 12215 12210 12205 12199 12193 12187 12181 12176 12169 12126 12083 12058 12015 12006 11998 11990 11981 11972 11964 11955 11946 11937 11931 11926 11920 11914 11907 11901 11895 11136 10377 9683 8986 8347 8267 8257 8317 8446 8639 8890 9188 9522 9870 10208 10515 10768 10955 11075 11141 11173 11198 11235 11287 11350 11412 11456 11477 11474 11458 11438 11427 11234 10698 10303 10008 9814 9680 9558 9430 9291 9121 8870 8486 7930 7308 6529 5709 4977 4398 3939 3634 3427 3240 3029 2790 2547 2325 2158 2053 2006 1994 1997 1985 1946 1893 1826 1751 1673 1581 +Montenegro 1955 1955 1955 1955 1955 1955 1955 1955 1955 1955 1955 1956 1957 1960 1963 1967 1972 1978 1985 1993 2001 2011 2021 2032 2045 2058 2072 2087 2103 2120 2138 2157 2176 2195 2215 2234 2254 2274 2294 2315 2335 2356 2377 2398 2419 2441 2462 2484 2506 2528 2551 2557 2563 2569 2572 2578 2583 2589 2595 2601 2602 2607 2613 2635 2654 2677 2696 2719 2743 2762 2786 2806 2831 2850 2874 2900 2920 2945 2965 2991 3017 3038 3064 3086 3112 3134 3161 3188 3211 3239 3261 3290 3318 3342 3371 3394 3423 3446 3475 3503 3525 3553 3574 3601 3627 3647 3673 3691 3716 3734 3758 3762 3766 3777 3780 3784 3788 3791 3802 3806 3809 3716 3624 3539 3450 3361 3273 3198 3118 3033 2965 2896 2827 2759 2691 2623 2556 2488 2421 2354 2287 2230 2164 2098 2032 1966 1901 1837 1773 1709 1646 1650 1653 1651 1634 1612 1567 1526 1461 1401 1327 1248 1165 1084 1002 920 841 773 708 650 599 560 525 498 473 447 423 403 385 370 329 325 320 312 309 284 257 228 201 179 163 154 148 145 144 141 138 133 127 121 115 108 103 97 91 86 79 74 67 61 56 50 44 39 36 33 +Morocco 45408 45571 45735 45899 46064 46229 46394 46561 46728 46895 47075 47251 47435 47628 47829 48039 48257 48483 48719 48963 49216 49477 49748 50028 50317 50616 50923 51241 51567 51904 52250 52606 52964 53325 53689 54054 54422 54793 55166 55542 55921 56302 56685 57071 57460 57852 58246 58643 59042 59444 59850 60258 60669 61083 61500 61920 62342 62768 63196 63627 64061 64499 64941 65387 65836 66290 66747 67208 67673 68143 68616 69094 69576 70046 70537 71031 71530 72021 72530 73043 73560 74071 74595 75123 75645 76181 76720 77255 77801 78352 78906 79465 80027 80593 81161 81730 82295 82855 83408 83953 84488 85012 85519 86024 86515 86997 87468 87916 88363 88800 89231 89650 90072 90738 91657 92835 94024 95192 96377 97571 98780 100007 101244 102498 103769 105053 106348 107665 108994 110338 113074 115787 118481 121165 123824 126466 129097 131707 134296 136875 139432 136731 133953 131101 128175 128993 129766 130498 131188 131839 132451 133285 136591 139805 142918 144673 142932 142276 140268 138328 137627 137967 139702 141848 143135 142801 141304 138117 133801 129558 126067 123072 120462 117934 115478 113071 110301 107304 104132 100987 97890 95013 92076 88821 84968 80556 75592 70031 64527 59797 55979 53140 51059 49382 47440 45067 42271 39179 35988 33102 30721 28853 27277 26084 25154 24433 23888 23510 23175 22936 22552 22189 21733 21279 20579 19759 +Mozambique 39918 40030 40142 40254 40366 40479 40592 40705 40819 40933 41053 41179 41318 41469 41633 41810 41999 42201 42416 42645 42887 43143 43412 43695 43992 44304 44629 44969 45324 45694 46078 46478 46881 47288 47698 48112 48529 48950 49375 49803 50235 50671 51110 51554 52001 52452 52907 53366 53829 54296 54767 55224 55684 56149 56617 57090 57566 58046 58530 59018 59511 60007 60508 61013 61521 62035 62552 63074 63600 64130 64665 65205 65748 66280 66833 67390 67952 68504 69075 69651 70232 70804 71394 71989 72577 73182 73792 74397 75017 75643 76273 76909 77551 78197 78847 79499 80149 80796 81438 82072 82698 83315 83913 84514 85104 85685 86257 86803 87354 87895 88432 88958 89487 90017 90547 91082 91620 92160 92742 93319 93899 94482 95069 95670 96276 96886 97499 98115 98730 99353 100567 101775 102974 104165 105353 106531 107704 108871 110026 111179 112322 113462 114592 115712 116830 117939 119042 120140 121225 122307 123382 123255 122921 122485 121902 119838 117843 115913 114044 112231 110472 108766 107110 108795 110410 105509 107561 109296 111180 113022 115103 117088 118831 120715 123082 126047 129712 133676 137941 141908 145282 149012 151468 152571 151958 149924 148093 144646 141051 139226 140492 141198 144166 148198 151313 152117 151433 148458 143816 138855 134506 130625 127062 123800 120672 117650 114744 109702 105572 101691 98980 95496 90502 86765 83765 82387 +Myanmar 63751 63751 63751 63751 63751 63751 63751 63751 63751 63751 63751 63762 63786 63821 63868 63926 63997 64079 64173 64280 64398 64528 64671 64825 64992 65171 65363 65567 65783 66012 66253 66506 66761 67017 67273 67531 67790 68049 68310 68571 68834 69098 69362 69628 69895 70163 70432 70702 70973 71245 71518 71809 72102 72396 72692 72988 73286 73585 73885 74187 74489 74885 75378 75969 76664 77464 78374 79397 80537 81797 83181 84694 86340 87512 89450 91543 93797 95804 98473 101332 104275 107074 110183 113383 116457 119864 123394 126785 130557 134470 138529 142741 147109 151641 156337 161197 166225 171102 175811 180338 184674 188806 193331 196952 200264 203258 205915 208474 211130 213793 216206 218693 220535 221965 223410 224859 226323 227790 228659 230096 231546 233676 235428 237315 239214 241135 243062 245010 246963 248988 253133 257244 261333 265408 269454 273479 277489 281471 285438 289377 293287 297190 327646 326925 335012 340159 335105 328992 323846 315707 306647 300044 294812 289820 285050 280497 276139 271982 268007 264231 260647 251430 242665 234322 226347 218704 211321 204186 190926 189905 188629 187077 184586 181493 178740 176256 174468 172544 170967 169528 167939 166633 164919 162731 159347 154858 149122 142130 134322 126893 120691 115506 111523 108356 105795 103524 101527 99595 97742 95798 93816 92217 90246 87920 84880 81345 77211 72571 94929 63246 59301 55568 52581 50149 48048 46284 +Namibia 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3922 3923 3924 3925 3926 3927 3928 3929 3930 3931 3932 3933 3935 3935 3937 3937 3939 3939 3941 3942 3943 3944 3945 3946 3947 3948 3949 3950 3951 3952 3953 3954 3955 3956 3957 3958 3959 3960 3961 3962 3963 3964 3965 3966 3967 3968 3968 3968 3968 3967 3965 3962 3959 3956 3951 3947 3941 3935 3928 3921 3913 3905 3897 3889 3880 3872 3863 3855 3845 3836 3827 3841 3879 3941 4004 4068 4132 4198 4263 4328 4503 4677 4849 5021 5191 5360 5528 5695 5860 6025 6188 6194 6194 6188 6195 6177 6153 6124 6089 6050 6005 5684 5424 5180 4952 4738 4537 4348 4169 4000 3840 3678 3525 3381 3246 3122 3011 2610 2686 2781 2899 3041 3198 3365 3521 3649 3786 3885 3950 3992 4010 3986 3928 3863 3807 3789 3736 3736 3752 3766 3771 3794 3814 3843 3895 3969 4072 4173 4267 4339 4372 4405 4401 4372 4308 4200 4030 3804 3621 3483 3393 3350 3358 3325 3329 3318 +Nepal 67555 67555 67555 67555 67555 67555 67555 67555 67555 67555 67555 67567 67592 67629 67678 67740 67815 67902 68002 68114 68240 68378 68528 68692 68869 69058 69261 69477 69706 69948 70203 70471 70741 71012 71283 71556 71829 72104 72380 72657 72935 73214 73494 73776 74058 74341 74626 74911 75198 75486 75775 76097 76421 76746 77073 77401 77730 78061 78393 78727 79062 79403 79750 80104 80463 80829 81201 81579 81964 82355 82753 83157 83568 83957 84383 84817 85257 85689 86149 86617 87087 87555 88030 88508 88984 89444 89884 90355 90764 91147 91505 91837 92143 92423 92675 92895 93107 93341 93590 93852 94131 94422 94659 94993 95349 95726 96088 96430 96763 97084 97396 97675 97948 98393 99012 99802 100603 101405 102159 102932 103713 104493 105281 106075 106873 107680 108328 109144 109799 110457 112426 114380 116325 118254 120174 122081 123975 125854 127724 129581 131426 133258 134319 135350 136356 137332 138284 139213 140113 140987 141838 142280 143464 144541 145510 146285 148197 145515 141564 137389 134608 132740 132641 133717 134755 135054 134493 133273 131772 130458 129616 129073 128443 127870 127364 127100 126962 126555 125921 124955 123833 122504 120668 118574 116238 113771 111053 107910 104598 101245 97907 94264 90646 87008 83461 79912 76595 73273 69584 65685 61512 57405 53153 48970 45008 41556 38417 35795 33375 31105 28848 26597 24390 22480 21017 19900 +Netherlands 26361 26406 26452 26497 26542 26587 26633 26679 26724 26770 26818 26879 26958 27054 27170 27306 27455 27613 27782 27963 28154 28354 28559 28771 28995 29230 29481 29744 30023 30316 30627 30364 30099 29830 29559 29285 29002 28706 28401 28089 26898 28102 32701 28010 27314 28068 38722 35326 31143 29130 30950 31790 32800 30262 30934 35897 32529 36210 35189 42823 35951 38808 37760 39510 38879 42110 40878 38265 41606 36242 41848 47932 45614 42068 39033 44682 41750 39964 42415 40228 44743 39400 38368 40541 44026 39410 43447 37818 39867 40331 39611 40700 41125 39458 36682 38844 36046 34184 36106 35949 36442 38922 34341 33642 35704 32626 31820 29586 32051 26438 27414 31441 23492 24352 25327 22883 24591 24691 31026 25491 24080 21967 19400 17687 15180 14638 15316 14689 13208 14471 12590 12209 11477 10588 10627 10009 10050 9630 9787 8986 10543 11642 11218 13015 14995 22234 13446 9163 7938 7468 8522 7195 6203 5521 5124 4949 4884 4976 5103 5239 5281 5288 5152 4993 4785 4592 4446 4276 4101 3908 3670 3435 3166 2897 2669 2467 2286 2135 2010 1922 1865 1827 1820 1820 1800 1792 1776 1730 1676 1622 1572 1526 1482 1438 1388 1353 1311 1265 1237 1213 1196 1188 1167 1147 1137 1093 1034 963 888 821 765 739 725 699 692 682 +New Zealand 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1448 1445 1441 1434 1425 1413 1400 1385 1368 1349 1328 1309 1290 1273 1258 1244 1231 1219 1210 1201 1194 1190 1190 1196 1206 1221 1242 1267 1298 1334 1375 1425 1482 1369 1269 1249 1123 1098 996 908 874 841 743 1160 1452 1494 1485 1523 1583 1722 1740 1548 2005 2296 2523 3190 2725 2434 2351 3172 2813 2704 2611 3213 2350 2668 2968 2799 1981 2214 2209 2632 2502 2483 2269 2510 2141 1987 2285 2845 2196 2166 2623 2682 2377 2344 2154 3429 2558 2344 2554 2072 1938 2314 1974 1939 1988 1835 1691 1470 2049 1828 1591 1616 1454 1619 1639 1645 1406 1268 1348 1350 1432 1473 1559 1694 1739 1687 2290 1924 1710 1907 1789 1937 1978 1793 1661 1578 1554 1711 1851 1734 1644 1593 1576 1592 1636 1691 1744 1775 1768 1719 1649 1553 1467 1399 1347 1304 1274 1252 1239 1228 1233 1230 1209 1153 1081 983 885 799 741 712 707 722 739 744 743 728 708 680 653 623 591 564 539 511 487 460 433 415 401 390 382 384 381 385 392 399 412 414 410 403 389 372 356 342 +Nicaragua 4784 4784 4784 4784 4784 4784 4784 4784 4784 4784 4784 4787 4795 4806 4821 4840 4863 4890 4921 4956 4995 5039 5087 5139 5196 5257 5324 5394 5470 5551 5636 5727 5819 5912 6007 6104 6202 6301 6403 6505 6610 6712 6813 6911 7007 7100 7191 7280 7366 7450 7531 7611 7688 7762 7833 7902 7967 8029 8088 8144 8197 8249 8303 8360 8420 8483 8549 8618 8690 8766 8844 8926 9010 9083 9176 9271 9371 9465 9575 9689 9804 9917 10035 10155 10272 10394 10518 10640 10766 10894 11024 11155 11288 11422 11558 11694 11835 11979 12126 12277 13359 13529 13689 13867 14050 14237 14425 14605 14793 14979 15173 15363 15556 15695 15886 16085 16349 16657 16961 17271 17499 17737 17527 17408 17198 17027 16819 16616 16362 16161 16549 16868 17217 17547 17805 18100 18377 18578 18822 19047 19198 19329 19382 19480 19497 19499 19209 18913 18610 18302 17991 17780 17979 18035 17965 17555 17830 17791 17612 17361 17170 17003 16963 17028 17152 17332 17502 17725 17972 18202 18415 18593 18657 18599 18390 18071 17626 17024 16349 15645 14967 14373 13823 13314 12816 12318 11800 11280 10761 10256 9790 9308 8865 8420 7987 7543 7108 6685 7048 5878 5511 5175 4853 4567 4326 4106 3932 3790 3666 3545 3405 3255 3102 2928 2787 2662 +Niger 25373 25373 25373 25373 25373 25373 25373 25373 25373 25373 25373 25379 25392 25411 25436 25468 25507 25553 25604 25663 25728 25799 25878 25963 26055 26154 26260 26372 26492 26619 26752 26893 27035 27177 27320 27463 27608 27753 27899 28046 28193 28341 28490 28640 28791 28942 29094 29248 29401 29556 29711 29882 30053 30225 30398 30572 30747 30923 31100 31279 31458 31638 31819 32002 32185 32369 32554 32741 32929 33117 33307 33497 33689 33879 34073 34268 34464 34659 34857 35057 35257 35456 35659 35863 36066 36272 36480 36687 36897 37108 37320 37534 37749 37965 38181 38396 38609 38820 39027 39228 39425 39617 39801 39981 40156 40325 40489 40644 40795 40942 41084 41223 41360 41496 41634 41770 41908 42045 42157 42276 42395 42513 42632 42750 42869 42989 43107 43227 43355 43484 44192 44897 45597 46295 46988 47677 48364 49045 49724 50399 51069 51736 52399 53059 53715 54366 53683 52987 52278 51396 50668 51212 52466 53571 54856 55968 57062 58122 59778 61455 63117 64732 66272 67731 69121 70482 71869 67779 69801 72104 74955 78197 81511 84865 87881 90462 92957 94276 95036 95855 97495 100542 103849 107550 111811 116543 121434 125338 128198 130594 132725 134740 135098 134245 132582 130757 129632 128460 127476 126639 125955 125209 122900 119481 115562 111741 108213 104444 100687 97317 94376 92089 90233 88945 88347 87967 +Nigeria 240248 240248 240248 240248 240248 240248 240248 240248 240248 240248 240248 240297 240395 240543 240740 240987 241284 241631 242029 242478 242977 243528 244130 244783 245488 246245 247055 247917 248831 249799 250820 251894 252972 254056 255143 256236 257333 258435 259542 260653 261769 262890 264015 265146 266281 267422 268566 269716 270871 272031 273196 274391 275591 276796 278006 279222 280443 281670 282901 284139 285381 286629 287883 289142 290406 291676 292952 294233 295519 296812 298110 299413 300723 302020 303340 304667 305999 307321 308664 310014 311370 312716 314084 315457 316823 318209 319600 320986 322390 323800 325215 326638 328066 329500 330934 332351 333751 335126 336461 337747 338984 340170 341304 342388 343428 344415 345348 346213 347037 347821 348565 349272 349967 350652 351346 352030 352714 353396 354036 354685 355333 355804 356097 356221 356335 356978 357113 357246 357881 358014 375259 392478 409650 426776 443864 460915 477916 494891 511804 528691 545539 562336 579093 595796 612459 629083 633867 638306 642189 647634 650605 651285 655525 660978 666800 672950 679385 686074 692953 699886 706814 713625 720351 730225 718634 714707 712087 707635 702530 697907 695144 693576 691541 689067 687976 687324 686869 685921 685636 686931 690697 700348 711222 725017 740632 759801 780276 798836 816214 832827 848601 864743 880034 895042 908346 920421 930523 934778 935026 932307 929285 925970 919556 911538 901407 888926 875564 859543 843274 826798 811738 798817 786546 775020 762534 750111 +Norway 8748 8298 8020 8657 8168 9023 9194 9002 8473 6834 8294 8592 9240 8204 7758 9766 11180 10331 9785 10139 10587 11036 10474 10798 10337 10942 11117 9987 9699 10033 9423 8834 8341 8378 8457 8514 7500 7468 7973 8486 7748 6683 7562 7135 7083 7548 8517 9418 8978 8077 7304 7638 8148 7765 7702 8070 8300 8384 8063 9415 9078 11202 12748 11576 9820 9545 9061 9623 10249 8943 8267 8948 9408 9683 10924 10949 11523 10708 9808 8857 8857 9580 12080 10571 10507 9796 9601 9771 10103 11076 10844 10051 10005 9205 10526 9458 9136 8922 8929 10142 8780 8787 7297 7704 6925 7333 6301 5937 6780 6521 5751 5850 5871 5501 5987 5320 5921 5823 6418 5519 6017 4628 4663 4195 3777 3501 3337 3219 3175 3335 2905 2925 2972 2950 2628 2861 2859 2879 2638 2625 2734 3103 3025 3076 3149 2899 2825 2511 2203 2100 2248 1965 1741 1582 1485 1447 1444 1468 1494 1508 1503 1480 1422 1356 1291 1240 1209 1187 1175 1158 1116 1064 996 913 829 751 678 611 556 514 491 481 489 508 530 550 569 569 560 538 510 470 433 400 372 348 329 314 305 296 287 271 256 248 236 227 225 219 214 213 204 198 190 174 166 160 +Oman 6231 6231 6231 6231 6231 6231 6231 6231 6231 6231 6231 6232 6234 6236 6240 6244 6249 6255 6262 6270 6278 6288 6298 6310 6322 6335 6348 6363 6379 6396 6413 6432 6450 6468 6487 6506 6524 6543 6562 6581 6600 6619 6638 6657 6676 6695 6714 6734 6753 6772 6791 6811 6830 6849 6868 6887 6906 6925 6945 6964 6984 7004 7024 7046 7067 7090 7113 7137 7161 7186 7212 7238 7265 7289 7317 7346 7376 7405 7437 7469 7502 7534 7567 7600 7633 7666 7699 7732 7766 7800 7834 7869 7903 7937 7972 8006 8039 8072 8104 8135 8165 8196 8227 8259 8291 8323 8354 8386 8418 8450 8483 8515 8547 8569 8581 8582 8583 8584 8587 8589 8588 8587 8586 8586 8585 8584 8595 8617 8628 8651 8665 8680 8695 8710 8724 8739 8753 8768 8782 8797 8811 8826 8840 8854 8869 8883 8897 8912 8926 8940 8954 9032 9197 9370 9550 9737 9932 10132 10341 10556 10281 10015 9738 9848 9483 9163 8866 8595 8337 8088 7859 7570 7278 7034 6859 6772 6658 6588 6507 6387 6192 5925 5594 5216 4810 4391 4003 3628 3285 2983 2701 2428 2187 1963 1754 1554 1402 1259 1123 1008 918 828 761 710 680 667 658 671 696 734 799 823 865 914 932 935 +Pakistan 299895 300486 301079 301673 302267 302863 303461 304059 304659 305259 305883 306506 307149 307814 308500 309207 309936 310685 311457 312250 313065 313902 314760 315642 316544 317470 318418 319388 320382 321397 322436 323498 324563 325632 326704 327780 328860 329943 331029 332119 333213 334310 335411 336516 337624 338736 339851 340970 342094 343220 344350 345516 346685 347858 349035 350216 351401 352590 353783 354980 356181 357418 358690 359998 361343 362723 364141 365596 367089 368618 370187 371793 373438 374946 376679 378456 380275 382044 383981 385967 387964 389943 391960 393987 396001 398049 400107 402156 404236 406326 408428 410539 412663 414797 416934 419056 421156 423225 425252 427213 429122 430971 432740 434464 436125 437721 439260 440705 442109 443453 444754 446557 448346 450606 453340 456554 459808 479859 499178 520809 541772 565276 557526 549918 543972 536546 530787 523487 516333 512377 512957 513282 516378 519206 521796 524131 526231 528090 529702 531087 532250 542734 553236 563758 574299 584845 595424 606022 616640 627262 637918 598815 557209 527614 510036 502392 498775 498980 501024 501734 499643 494128 483849 471221 460000 452420 447698 446136 446252 447099 448088 448431 448849 450183 452881 458569 465053 473071 483011 493880 505054 515248 524959 533868 543121 553002 564918 576878 586722 592626 592722 587387 576235 561632 546441 534584 525224 519031 513953 507029 496972 483541 467625 451814 440180 435282 437490 445458 456056 465546 470193 470143 464260 454447 442647 431568 +Panama 1208 1208 1208 1208 1208 1208 1208 1208 1208 1208 1208 1209 1211 1214 1218 1224 1230 1238 1247 1257 1268 1280 1294 1310 1326 1344 1363 1383 1405 1429 1453 1480 1507 1534 1561 1590 1618 1647 1677 1708 1739 1770 1801 1832 1863 1894 1926 1957 1989 2020 2052 2083 2115 2147 2178 2210 2242 2273 2305 2337 2368 2400 2432 2465 2498 2531 2565 2599 2634 2670 2705 2742 2778 2814 2852 2890 2929 2967 3007 3048 3089 3129 3171 3214 3255 3299 3344 3388 3433 3479 3527 3574 3622 3671 3721 3770 3824 3881 3942 4006 4318 4408 4494 4577 4663 4755 4847 4933 5074 5220 5369 5522 5680 5715 5795 5926 6020 6108 6446 6801 7069 7241 7308 7240 7172 7103 7041 6978 6893 6836 7047 7138 7243 7314 7400 7452 7521 7555 7607 7624 7661 7265 6884 6519 6170 5835 5515 5210 4919 4642 4379 4050 4055 4067 4078 4095 4112 4122 4133 4138 4142 4139 4122 4099 4078 4057 4025 3981 3923 3855 3763 3656 3539 3420 3293 3180 3071 2960 2861 2762 2675 2587 2504 2424 2346 2274 2215 2156 2102 2057 2005 1958 1911 1876 1848 1847 1853 1878 1899 1901 1883 1834 1766 1683 1616 1567 1539 1528 1517 1516 1489 1456 1421 1371 1327 1277 +Papua New Guinea 13842 13842 13842 13842 13842 13842 13842 13842 13842 13842 13842 13846 13854 13867 13884 13905 13930 13959 13993 14032 14075 14122 14173 14229 14290 14355 14425 14499 14578 14661 14750 14843 14936 15030 15125 15220 15316 15413 15510 15608 15706 15805 15904 16005 16106 16207 16309 16412 16515 16620 16724 16829 16935 17041 17148 17255 17363 17472 17582 17692 17803 17915 18027 18140 18254 18368 18483 18600 18716 18834 18951 19071 19190 19308 19429 19551 19673 19794 19918 20044 20169 20293 20421 20549 20676 20805 20936 21066 21198 21331 21464 21599 21734 21871 22007 22143 22279 22413 22544 22673 22799 22923 23041 23159 23272 23383 23491 23593 23694 23792 23888 23982 24075 24168 24261 24354 24448 24540 24635 24729 24824 24919 25014 25108 25204 25299 25396 25491 25588 25684 25789 25894 25998 26101 26202 26304 26403 26504 26602 26699 26796 26892 26987 27081 27174 27267 26116 25013 23956 22942 21970 21008 20184 19409 18679 17518 17128 16645 16151 15716 15370 15068 14866 14729 14620 14516 14364 14198 14046 13999 14098 14339 14698 15045 15229 15177 14860 14294 13629 13039 12685 12512 12558 12747 12898 12952 12890 12712 12490 12318 12268 12349 12532 12800 13097 13383 13665 13913 14146 14303 14414 14459 14438 14333 14239 14171 14089 14042 13930 13784 13569 13298 12965 12643 12285 11963 +Paraguay 2401 2401 2401 2401 2401 2401 2401 2401 2401 2401 2401 2405 2412 2422 2437 2455 2478 2504 2535 2571 2610 2655 2704 2758 2817 2882 2952 3028 3109 3196 3289 3389 3492 3597 3706 3819 3934 4053 4176 4302 4433 4560 4684 4804 4920 5033 5142 5247 5347 5444 5535 5623 5706 5785 5858 5925 5987 6043 6093 6136 6173 6204 6233 6264 6294 6325 6356 6386 6417 6449 6480 6511 6542 6573 6605 6637 6669 6701 6733 6765 6797 6829 6862 6895 6928 6961 6994 7027 7061 7094 7128 7162 7197 7231 7266 7300 7346 7405 7478 7563 7660 7771 7861 8006 8168 8349 8532 8704 8891 9082 9275 9466 9668 9874 10085 10300 10520 10745 10971 11203 11438 11678 11922 12176 12434 12696 12961 13231 13505 13782 14216 14647 15076 14769 14443 14095 13730 13298 12898 12480 12049 11603 10961 10349 9767 9213 8685 8184 7709 7259 6831 6356 6410 6474 6533 6594 6508 6474 6433 6417 6434 6486 6590 6735 6880 6999 7098 7196 7249 7262 7236 7141 6992 6845 6729 6711 6773 6926 7124 7311 7436 7488 7465 7394 7292 7174 7052 6908 6743 6578 6401 6230 6050 5892 5734 5591 5458 5359 5247 5101 4912 4692 4433 4152 3916 3735 3634 3583 3553 3519 3446 3330 3192 3039 2896 2780 +Peru 22950 22952 22954 22957 22960 22962 22964 22967 22970 22972 22974 22992 23025 23074 23139 23220 23317 23431 23562 23710 23875 24058 24258 24477 24714 24970 25244 25537 25850 26183 26535 26907 27285 27668 28057 28450 28850 29255 29666 30083 30505 30932 31364 31800 32242 32688 33139 33596 34057 34523 34995 35477 35964 36458 36956 37460 37970 38485 39006 39533 40066 40603 41146 41694 42248 42809 43375 43946 44524 45108 45698 46294 46896 47487 48101 48722 49348 49961 50599 51243 51895 52533 53202 53879 54545 55210 55853 56532 57146 57733 58293 58823 59359 59903 60453 61006 61561 62152 62779 63439 64140 64775 65427 66091 66753 67408 68062 68685 69328 69965 70600 71230 71860 72485 73114 73748 74388 75029 75660 76299 77026 77836 78729 79634 80551 81482 82414 83352 84306 85271 87194 89107 91006 92895 94773 96637 98491 100331 102162 103985 105792 105189 104181 105731 107269 108790 110299 111792 113268 114732 116184 117021 114632 112712 110424 108081 106351 104238 102538 101322 100750 100334 99972 99414 98541 97238 95765 93965 92010 90144 88339 86548 84577 82669 81007 79770 79151 79040 79239 79139 78348 76774 74113 70629 67005 63798 60920 58631 56778 54874 52692 50153 47102 43712 40269 36910 33823 30917 28275 25900 23784 21979 20439 19121 17917 16867 15893 14947 14063 13339 12676 12116 11658 11267 10843 10483 +Philippines 36520 36312 36156 35949 35741 35534 35378 37791 37333 36874 36416 35988 35587 36842 38135 39470 40850 42279 42732 43226 43762 44342 44965 45846 46779 47765 48807 49906 49989 50100 50237 50400 50554 50411 50249 50067 49864 49639 50017 50393 50767 51140 51510 53091 54711 56370 58070 59812 61358 62940 64558 66221 67921 69000 70095 71208 72339 73487 74966 76474 78011 79559 81117 82105 83085 84054 85014 85963 87674 89397 91132 92879 94638 94825 94935 95009 95046 94347 93579 92754 96474 100232 104109 108068 112069 116192 119974 126625 119852 109505 105734 114242 120688 121434 124749 123696 128206 131014 129062 130775 132575 134461 239478 138275 112414 123802 111818 129649 137951 125090 143381 148465 150650 154243 166254 158922 162939 166682 191112 151840 169008 174873 178880 183780 184519 185227 186149 196749 201595 205671 213232 213405 212553 212008 210436 209206 207666 205108 202965 199846 195768 192507 189166 185750 182281 178753 175202 171617 168007 164401 160787 152877 147053 139167 139093 136584 133307 128038 122203 117015 113588 111470 111705 112999 114636 115307 115564 115047 114091 113464 113555 114361 115934 117979 120325 123090 125886 128649 131273 133316 134834 136182 136991 137266 137057 136132 134521 131829 128123 123620 118360 112957 107889 102907 98988 95970 93699 92286 91423 90750 90148 89784 89282 88502 87249 85393 82803 80026 76875 73994 71913 70521 69223 68102 66959 65613 +Poland 152954 153212 153694 153952 154436 154693 155177 155434 155920 156175 156490 157000 157296 157850 158190 158789 170616 171567 176380 181267 174591 183464 176753 169973 163121 204252 185472 190809 189693 188577 187457 186334 185185 203511 217827 189316 203717 213954 197938 212693 218727 206911 217627 214853 207469 186046 192437 180035 172212 198087 204999 207151 204397 211694 203893 185627 208692 227056 251240 265227 268630 266619 292681 279498 267384 254919 242091 228887 256519 260135 288956 273976 264999 281625 285750 276480 280590 270660 274765 286116 283226 280008 291769 296227 292884 312821 314178 315669 324638 341365 334085 334504 318740 334661 350313 349763 341018 332249 323428 322447 321403 312445 311243 294490 293207 284152 290419 288914 279816 276920 267216 257590 252821 261537 268871 215297 199255 176057 175013 239202 254741 242972 238681 243589 236368 237795 220844 209191 204892 212689 201217 197898 199380 172155 191221 167563 187846 178470 182943 176295 169883 163679 157696 151914 146337 140947 135741 130715 125867 119120 119257 131541 107804 100478 94680 91973 77718 70481 65657 55999 48196 41702 35800 30473 25949 22602 20515 19804 20106 20621 20718 20303 19526 18521 17716 17374 17322 17172 16855 16518 16301 16181 16056 15762 15198 14312 13274 12174 11080 10094 9287 8765 8516 8363 8097 7419 6507 5486 4539 3833 3376 3068 2874 2785 2741 2760 2773 2806 2833 2716 2581 2427 2262 2108 1999 1917 +Portugal 36498 36651 36803 36957 37111 37266 37422 37578 37735 37892 38063 38225 38390 38559 38732 38909 39089 39273 39462 39654 39850 40050 40254 40462 40619 40836 41058 41285 41517 41754 41995 42235 42470 42701 42927 43149 43365 43578 43785 43987 44184 44376 44564 44746 44921 45146 45306 45462 45626 45799 45981 45922 45877 45833 45805 45782 45856 45843 45833 45828 45828 45832 45840 45852 45868 46285 46712 47151 47700 48147 48597 49051 49488 49907 50345 50795 51255 51686 52168 52447 52734 52991 53190 53510 53819 54166 57866 61654 61065 62685 61130 60482 59432 61231 57437 58442 58862 60073 60105 59932 61569 60228 58677 57698 52691 50575 48698 44419 41818 39364 39779 52210 50724 50635 45111 46751 48201 45160 60874 49313 54311 47197 47230 55288 47972 43605 50219 46298 49956 49094 46515 45401 47628 48365 46521 48368 45033 49106 43912 37503 40759 49436 44032 42713 39057 36169 35899 31694 31783 34430 28785 27870 29254 27983 25445 24973 24554 24277 24057 23905 23643 23186 22301 21097 19651 18099 16601 15125 13705 12419 11410 10458 9709 9082 8493 7836 7084 6253 5488 4859 4355 3958 3616 3319 3053 2783 2526 2272 2022 1815 1634 1494 1377 1272 1186 1100 1031 963 902 835 776 727 670 625 575 529 489 454 428 400 376 356 346 338 321 304 +Qatar 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 293 292 292 292 292 292 292 292 291 291 291 291 291 291 291 292 292 293 293 294 295 295 296 297 298 298 300 301 302 304 305 307 308 310 312 313 315 317 318 320 321 323 325 327 328 330 331 333 335 336 338 339 340 342 343 344 345 346 348 349 350 351 351 353 355 357 359 361 364 366 369 371 374 376 378 381 383 386 388 391 398 404 410 416 423 429 435 441 447 454 460 434 409 385 361 338 314 292 271 249 227 227 231 235 241 248 255 263 272 282 294 284 275 268 261 254 246 239 231 254 254 249 246 245 244 244 246 247 252 262 280 286 300 313 317 310 300 279 253 226 201 185 171 161 153 149 145 144 146 147 148 141 134 131 133 141 137 138 145 151 159 178 197 214 224 226 +Romania 74808 75395 75987 76583 77185 77790 78401 79017 79637 80262 80982 81617 82255 82897 83542 84190 84843 85499 86159 86823 87490 88162 88837 89516 90198 90885 91575 92270 92968 93670 94376 95086 95801 96522 97248 97980 98717 99460 100208 100962 101722 102484 103248 104015 104785 105557 106331 107107 107887 108668 109452 107570 105654 103702 101714 100377 98981 97525 96210 96888 104859 107642 109114 105070 126117 109143 108399 89773 99620 97042 81365 71415 95499 94164 112024 120977 112075 104580 110324 107996 137192 116919 128822 120643 119435 119429 126704 130648 140133 129561 136514 149449 160997 150283 159624 147131 162836 161503 143519 147497 136467 142695 149557 214499 208822 194205 197001 197565 188625 187716 175526 184718 186487 197230 184599 162532 147702 132260 116195 99471 149169 154318 157619 156421 155300 144306 146157 156392 141971 151462 134389 136624 139578 130361 135574 142168 128640 130037 132853 126886 134731 118228 125823 129229 113076 130280 112934 136716 95846 89779 74469 76658 68437 62200 56731 47718 49394 46851 36848 39239 33267 28924 25370 25721 26730 28094 29443 30380 33414 36010 35835 33123 28859 24175 20305 17986 17168 17496 18382 18935 18718 17750 16228 14646 13524 13104 13397 14278 15242 15509 14811 13399 11315 9093 7243 6108 5692 5932 6470 6934 7019 6799 6290 5586 4912 4365 3956 3669 3438 3236 3010 2774 2495 2247 2028 1882 +Russia 626632 626632 626632 626632 626632 626632 626632 626632 626632 626632 626632 626908 627461 628296 629414 630817 632509 634492 636769 639343 642216 645391 648871 652659 656757 661168 665896 670943 676312 682007 688030 694383 700796 707267 713799 720391 727043 733757 740533 747372 754273 761239 768269 808610 817703 826895 836187 845580 855075 862631 870254 877930 885674 893486 899718 905989 912300 918649 919605 920568 921518 922456 927359 932298 937228 942217 947197 952213 1099695 1075290 961096 1115558 1180881 1116320 1115737 1140997 1182315 1093498 1221703 1095031 1223873 1066000 1354630 1264306 1131877 1199243 1068381 1136384 1176899 1277377 1351994 1402847 1417739 1276772 1357385 1473117 1476740 1398244 1473856 1292722 1385367 1497211 1446891 1412636 1323538 1451040 1399124 1273982 1318960 1344303 1503921 1317090 1226578 1260098 1136080 1141278 1103508 1066959 1031601 997390 964278 932213 901209 871214 842205 840940 806605 791075 789393 725915 690535 656574 624217 593323 563891 535821 509046 483536 459195 436028 413910 392880 372786 353697 335468 318136 301621 285872 270898 256624 243059 237686 235226 231266 225981 219546 212008 203497 194067 183765 158811 136068 125942 113356 97340 86312 78590 74063 72222 69005 80110 79154 80711 83377 84914 85052 83301 79730 75488 71807 69784 69672 70740 72492 73934 74071 72824 70512 67429 63341 58899 53681 47564 40904 35043 31203 29083 29641 31466 33124 33636 33123 31642 29534 27451 25573 23893 22343 21141 20221 19607 19314 19145 19260 18916 18542 +Rwanda 18944 18944 18944 18944 18944 18944 18944 18944 18944 18944 18944 18950 18961 18977 19000 19028 19063 19102 19148 19200 19257 19321 19390 19465 19547 19634 19728 19828 19934 20046 20165 20290 20416 20542 20669 20797 20926 21056 21186 21317 21450 21582 21716 21851 21986 22122 22260 22397 22536 22676 22816 22974 23133 23293 23454 23616 23779 23944 24109 24276 24444 24613 24783 24954 25126 25300 25475 25651 25828 26006 26186 26367 26549 26729 26914 27099 27286 27471 27661 27852 28044 28235 28430 28626 28821 29020 29220 29419 29622 29827 30032 30240 30448 30658 30868 31079 31288 31496 31701 31901 32098 32292 32479 32665 32845 33023 33195 33360 33523 33682 33839 33992 34146 34298 34452 34605 34758 34938 35084 35239 35395 35552 35708 35864 36023 36181 36530 36832 37185 37490 37840 37721 37595 37578 37442 37298 37146 36992 36949 36782 36611 36431 36251 36180 35986 35464 34946 34434 33925 33421 32923 32915 33585 34079 34407 34658 31641 31648 31582 31389 31054 30871 30464 30104 30063 30569 31276 32413 33996 35885 37976 40292 42774 45601 48907 52505 56023 58712 59711 58806 56678 53896 51037 48863 47947 48099 49003 50672 52243 52457 50493 47784 42467 37967 55555 44301 32739 44152 58565 60029 60833 59724 54460 47484 40792 35747 32087 29357 27178 25318 23396 21081 18765 16815 15250 14207 +Samoa 1070 1064 1060 1055 1050 1045 1040 1035 1031 1026 1021 1017 1012 1007 1002 998 993 988 984 979 975 970 966 961 957 952 948 943 939 935 930 926 922 918 914 909 905 901 897 893 888 884 879 874 869 864 858 852 846 840 833 826 819 812 805 797 790 782 774 765 757 748 740 731 723 715 707 699 691 683 675 668 660 652 645 638 630 623 616 609 602 595 588 582 575 568 562 555 549 543 537 530 525 519 513 507 502 499 497 496 496 498 498 501 506 511 515 522 524 524 523 523 520 515 510 505 500 495 490 485 481 480 484 492 500 508 521 536 554 572 599 625 651 677 702 727 752 777 802 826 850 874 898 921 956 992 1028 1065 1102 1139 1176 1126 1083 1045 1011 981 954 930 909 888 867 872 874 874 871 865 856 845 833 820 806 762 720 680 641 605 570 538 507 478 402 394 385 375 193 184 176 168 162 157 153 150 149 146 143 139 134 128 121 115 111 107 104 103 103 103 103 103 104 133 103 100 96 90 85 80 +Sao Tome and Principe 442 440 438 436 434 432 430 429 427 425 423 421 420 418 417 416 416 415 414 414 413 413 413 413 414 414 415 416 417 418 418 420 421 422 424 425 427 428 430 431 432 433 435 436 438 439 440 442 443 445 446 448 449 450 452 453 455 456 458 459 461 462 464 465 467 468 470 471 473 475 476 477 479 481 482 484 485 487 489 490 492 493 495 496 498 500 501 503 505 506 508 509 511 513 515 516 518 519 521 523 525 526 528 530 532 533 535 537 539 540 542 544 545 547 549 551 553 555 556 558 560 562 563 565 567 569 570 572 574 576 580 584 589 593 597 601 605 609 613 617 621 625 629 633 636 640 644 647 651 654 658 652 641 633 621 610 568 530 494 461 429 398 369 341 314 268 270 276 284 293 301 308 311 313 318 328 343 365 387 406 415 418 406 388 373 372 380 407 444 480 507 524 527 520 509 498 487 479 471 462 453 446 435 423 408 393 377 361 346 333 324 316 311 308 303 297 +Saudi Arabia 41115 41115 41115 41115 41115 41115 41115 41115 41115 41115 41115 41119 41128 41141 41158 41180 41207 41238 41273 41313 41357 41405 41459 41517 41579 41645 41716 41792 41872 41957 42047 42141 42235 42329 42424 42519 42614 42709 42805 42900 42996 43093 43189 43285 43382 43479 43576 43673 43771 43869 43967 44061 44155 44250 44345 44440 44535 44630 44726 44821 44917 45015 45115 45218 45322 45429 45539 45650 45764 45880 45998 46119 46242 46356 46484 46615 46749 46879 47019 47163 47307 47450 47594 47739 47884 48030 48176 48322 48469 48617 48765 48914 49063 49213 49362 49508 49651 49789 49922 50046 50164 50273 50375 50468 50555 50633 50704 50764 50818 50865 50906 50944 50978 51029 51095 51179 51264 51348 51438 51527 51615 51703 51792 51880 51967 52056 52213 52442 52599 52756 52957 53155 53351 53543 53732 53919 54105 54289 54471 54652 54830 55008 55185 55358 55529 55701 52821 50199 47494 44866 42314 42150 42422 42783 43229 43753 44353 45022 45751 46533 47353 47491 47641 47804 47996 48224 48508 48858 49284 49789 50360 49104 44922 44080 43559 43158 42582 41862 41311 40860 40554 40013 39597 39028 38011 36356 34675 32463 29958 27445 25049 22987 21103 19480 18128 16941 15874 15035 14312 13633 13110 12468 11935 11487 11112 10952 10866 10868 10837 10818 10644 10440 10151 9795 9405 9002 +Senegal 20640 20640 20640 20640 20640 20640 20640 20640 20640 20640 20640 20647 20660 20680 20707 20740 20781 20828 20882 20944 21012 21087 21170 21259 21356 21460 21572 21690 21816 21950 22091 22240 22390 22540 22692 22845 22999 23154 23310 23466 23625 23784 23944 24105 24267 24431 24595 24761 24928 25095 25264 25442 25622 25802 25984 26167 26351 26537 26724 26912 27101 27292 27484 27678 27873 28069 28267 28466 28666 28868 29072 29276 29482 29685 29894 30105 30317 30526 30741 30958 31175 31391 31613 31835 32056 32281 32509 32735 32965 33197 33431 33666 33903 34142 34381 34621 34859 35095 35329 35558 35783 36003 36217 36429 36637 36839 37037 37226 37414 37598 37778 37957 38135 38314 38492 38670 38850 39030 39196 39364 39535 39705 39876 40405 40821 41361 41983 42739 42745 42877 43232 43700 44030 44478 44781 45201 45480 45883 46135 46372 46604 46244 45874 45496 43220 43112 43027 42920 42851 42738 37360 38451 39548 40439 41140 41826 42817 43376 43751 44250 45190 46325 47623 49001 50444 51860 53221 54317 55203 56076 56952 57933 58424 58449 58042 57295 56727 55577 54265 53061 52232 51640 50935 50146 49196 48155 46862 45586 44541 43899 43760 44288 45170 46299 47554 48884 50229 51141 51576 51425 50600 49197 47299 45148 42851 40542 38363 36199 34188 32430 30940 29727 28894 28312 27779 27059 +Serbia 33051 33051 33051 33051 33051 33051 33051 33051 33051 33051 33051 33065 33093 33135 33191 33262 33347 33447 33562 33691 33836 33995 34171 34361 34567 34789 35027 35280 35550 35836 36139 36458 36780 37105 37432 37762 38096 38432 38771 39114 39459 39808 40159 40514 40871 41232 41596 41964 42334 42708 43085 43196 43305 43413 43520 43625 43728 43830 43931 44101 44199 44295 47094 49854 52659 53182 53710 54243 54781 55324 55873 55849 55820 55771 55732 55688 55638 55572 55512 52678 49983 47847 45811 43863 41989 40204 38493 36850 35282 39909 37317 44053 52421 47422 44843 44016 47217 47872 46792 44586 44536 42190 43462 42736 36908 44761 39451 41441 45693 53298 40960 37943 37207 36484 35711 35012 34265 33591 32932 32223 31584 30958 30284 29680 29085 28446 27873 27309 26701 26159 25815 25473 25135 24800 24467 24138 23812 23488 23168 22851 22536 22226 21918 21614 21205 20804 20407 20018 19634 19255 18883 17955 16683 15546 14538 13648 12869 12191 11605 11099 10659 10274 9933 9624 9341 9079 8842 8628 8439 8269 8117 7978 7849 7722 7595 7458 7307 7143 6964 6770 6970 6666 6315 5918 6246 5987 5764 5491 5134 4699 4225 3764 3407 3137 2859 2511 2205 1962 1787 1689 1607 1510 1371 1184 1014 897 815 765 744 720 697 668 651 635 628 619 +Seychelles 204 202 201 199 197 195 194 192 190 189 187 185 184 182 180 179 178 176 175 174 173 171 170 169 168 167 166 165 164 163 162 161 160 159 158 158 157 156 155 154 153 153 152 151 150 149 149 148 147 146 145 144 144 143 142 141 141 140 139 138 138 137 136 136 135 134 133 133 132 131 131 130 129 128 128 127 126 126 125 124 124 123 122 122 121 120 120 119 119 119 119 119 119 119 120 121 122 123 124 125 126 127 128 129 131 132 133 135 136 137 139 140 140 140 140 140 140 140 140 140 140 139 139 139 139 139 139 139 138 138 141 143 145 147 150 152 154 156 158 160 162 164 165 162 164 167 170 172 175 177 125 146 163 173 178 177 174 166 157 150 146 145 148 154 158 160 158 153 145 136 129 121 114 107 100 92 84 76 69 61 55 50 46 43 39 37 34 32 30 28 27 26 25 25 24 23 23 22 21 20 20 21 22 23 24 25 25 25 25 25 24 25 24 24 24 23 +Sierra Leone 16333 16333 16333 16333 16333 16333 16333 16333 16333 16333 16333 16338 16349 16364 16386 16412 16444 16481 16524 16572 16626 16686 16750 16821 16897 16980 17067 17161 17261 17366 17478 17595 17713 17832 17951 18072 18193 18316 18439 18562 18687 18812 18939 19066 19194 19323 19453 19583 19715 19847 19980 20121 20263 20406 20551 20696 20842 20989 21138 21287 21437 21589 21741 21895 22050 22206 22362 22520 22679 22840 23001 23163 23327 23488 23654 23821 23989 24156 24326 24498 24671 24842 25018 25194 25370 25549 25729 25909 26092 26276 26461 26648 26836 27026 27216 27406 27595 27783 27968 28150 28329 28504 28674 28843 29007 29168 29326 29476 29625 29772 29915 30055 30196 30336 30476 30618 30759 30901 31028 31159 31291 31423 31555 31688 31821 31955 32088 32317 32550 32881 33433 33985 34435 34779 35223 35558 35994 36319 36750 37176 37489 37910 38213 38626 38923 39331 38919 38620 38854 39084 39310 39247 39385 39537 39702 39880 40070 40020 39954 39947 37547 37631 37426 37005 36579 36268 36089 35799 35454 35300 35374 35653 35947 36281 36655 37106 37630 38003 38330 38645 39087 39613 40123 40642 41306 42200 43271 44398 45513 46099 46005 45968 45275 44146 43024 42279 41362 40575 40125 40200 40915 41198 41766 42315 42596 42287 41891 40880 39340 37500 35436 33372 31290 29344 27733 26466 +Singapore 526 526 525 525 525 524 524 523 523 523 522 523 524 524 527 529 532 536 540 545 534 523 515 506 497 504 512 521 531 540 551 562 573 586 598 609 622 634 648 661 674 688 702 716 731 746 760 776 791 808 824 840 857 875 891 910 927 946 965 983 1004 1025 1045 1069 1093 1117 1144 1171 1201 1232 1263 1297 1332 1361 1400 1441 1482 1521 1566 1616 1667 1712 1767 748 785 825 866 908 953 1002 1054 1108 1164 1223 1285 1349 1416 1485 1557 1632 1710 1791 1871 1959 2039 2122 2208 2292 2384 2489 2599 2711 2829 2945 3088 3235 3388 3543 3702 3883 4125 4379 4676 4920 5248 5572 5942 6312 6702 7156 7561 7423 7013 7021 7424 7328 8292 7795 8354 6973 8030 9265 10676 12287 18638 14607 5630 5570 5260 4698 5649 5252 5145 4735 4001 3944 3885 3790 3649 3428 3137 2839 2535 2270 2044 1851 1681 1523 1387 1283 1214 1167 1121 1052 962 853 746 658 595 552 520 502 503 514 524 515 498 461 421 380 358 341 342 345 343 337 317 284 246 207 180 160 148 144 141 140 142 145 142 143 145 147 148 149 150 145 +Slovak Republic 32207 32207 32207 32207 32207 32207 32207 32207 32207 32207 32207 32212 32223 32240 32263 32291 32325 32364 32410 32461 32518 32580 32649 32723 32803 32890 32981 33079 33183 33293 33409 33531 33653 33776 33899 34023 34147 34272 34397 34522 34648 34774 34901 35028 35156 35285 35413 35543 35672 35802 35933 36061 36191 36320 36450 36581 36712 36844 36975 37108 37241 37374 37508 37642 37777 37912 38048 38185 38322 38459 38597 38735 41586 41771 41958 42147 42335 42524 42350 42175 41997 41817 41636 42019 42403 42791 43181 43573 43232 42888 42541 42191 41838 41846 41853 41857 41452 41041 40393 39742 39088 38436 37783 37090 36399 35712 35024 34335 33523 32715 31912 31118 30334 27241 24202 21218 18285 15403 19343 22390 25373 28817 26746 25494 23494 21849 21151 19685 18936 17524 17231 17008 16852 16623 16390 16154 15985 15742 15428 15113 14793 14738 14682 14625 14566 14506 14444 14382 14319 14254 14189 13771 9644 8179 6584 5778 5176 5733 4474 3989 3440 3172 2834 2905 2736 2979 2750 2510 2379 2631 2570 2496 2647 2741 2574 2636 2719 2406 2450 2306 2238 2493 2308 2135 1980 1848 1751 1677 1620 1556 1486 1392 1303 1198 1099 1000 903 806 725 654 601 568 549 545 539 537 530 526 521 510 500 480 460 437 416 400 +Slovenia 5934 5923 5913 5902 5891 5880 5869 5859 5848 5837 5816 5807 5802 5798 5797 5799 5803 5809 5818 5830 5844 5860 5879 5901 5925 5952 5981 6013 6036 6073 6112 6154 6197 6239 6282 6326 6369 6413 6457 6501 6545 6591 6636 6681 6727 6773 6805 6852 6898 6946 6993 7041 7088 7137 7185 7234 7283 7828 7683 8182 7289 7962 7786 8227 8175 8196 8447 8290 8908 9143 9303 9066 8905 9468 9279 9553 9915 9440 9354 9665 10067 9922 10156 10304 10632 10605 10911 10914 10887 11077 10296 11179 10926 11119 11217 11676 11612 11812 11507 11705 11799 11928 12228 11866 12096 11901 12094 11816 12042 12451 12312 11726 11467 11690 11312 9108 6875 6918 6963 8837 10656 11638 11182 11246 10764 10224 9564 9158 8760 7970 7702 7439 7180 6897 6646 6400 6132 5894 5659 5429 5178 4936 4700 4447 4223 4004 3791 3563 3361 3166 2956 2713 2461 2238 2041 1866 1710 1572 1449 1338 1238 1177 1120 1065 1013 963 915 871 830 792 758 725 694 666 640 615 589 562 535 506 477 541 498 457 418 384 351 324 298 272 246 220 195 171 150 135 125 118 112 107 101 95 90 83 78 76 73 73 73 74 72 69 67 63 60 57 +Solomon Islands 1279 1279 1279 1279 1279 1279 1279 1279 1279 1279 1279 1279 1280 1281 1282 1283 1285 1287 1289 1292 1294 1298 1301 1305 1309 1313 1318 1322 1328 1333 1339 1345 1351 1357 1363 1369 1375 1382 1388 1394 1401 1407 1413 1420 1426 1432 1439 1445 1452 1459 1465 1468 1471 1474 1477 1480 1484 1487 1490 1493 1496 1499 1502 1505 1508 1511 1514 1517 1520 1523 1526 1529 1532 1535 1538 1541 1544 1547 1550 1553 1557 1560 1563 1565 1568 1571 1574 1577 1580 1583 1586 1589 1592 1595 1598 1600 1603 1606 1608 1610 1612 1613 1614 1615 1616 1616 1616 1616 1616 1615 1614 1614 1612 1611 1610 1609 1607 1606 1611 1615 1618 1621 1624 1627 1631 1634 1637 1640 1643 1647 1644 1641 1638 1636 1633 1630 1627 1624 1621 1619 1616 1613 1610 1607 1604 1460 1326 1201 1080 971 868 862 870 879 888 897 906 916 925 934 923 897 872 849 826 806 781 752 725 705 691 687 689 689 680 661 633 599 562 530 505 488 475 468 464 461 459 460 462 464 464 464 460 456 453 449 448 448 449 451 455 463 474 488 504 518 533 542 547 545 541 531 519 504 485 470 +Somalia 21201 21210 21219 21228 21237 21246 21255 21264 21273 21282 21292 21307 21328 21355 21388 21428 21474 21525 21583 21648 21719 21796 21880 21970 22066 22170 22280 22396 22520 22650 22786 22930 23075 23220 23367 23514 23662 23812 23962 24113 24265 24418 24572 24727 24883 25039 25198 25356 25516 25677 25839 26000 26162 26325 26489 26654 26820 26987 27155 27324 27494 27665 27838 28011 28186 28361 28538 28715 28894 29074 29255 29438 29621 29801 29987 30173 30361 30547 30737 30929 31121 31312 31507 31703 31898 32096 32296 32495 32697 32900 33105 33311 33519 33728 33937 34146 34353 34558 34759 34956 35150 35338 35520 35699 35873 36042 36206 36363 36517 36666 36813 36956 37098 37239 37381 37523 37665 37808 37955 38101 38248 38394 38542 38690 38838 38986 39240 39442 39698 39901 40179 40455 40730 41002 41272 41541 41807 42071 42334 42595 42854 43111 43367 43622 43876 44128 43314 42634 41833 41161 40364 40290 40249 40177 40072 39926 39750 39531 39274 39031 38800 38585 38377 38175 37974 37721 37379 36939 36499 36122 35916 36136 36594 37729 39195 40951 42924 44977 46970 48801 57600 59242 52429 50483 49045 48556 48722 49381 50244 50796 50586 49825 48975 48435 48678 50032 51395 53505 56079 58597 60657 62245 63141 63635 64198 65149 66296 67346 67982 68052 67647 66509 64918 63195 61499 60537 +South Africa 25704 25798 25892 25987 26082 26178 26273 26369 26466 26563 26667 26773 26887 27011 27144 27285 27436 27597 27767 27946 28136 28335 28544 28764 28993 29233 29484 29745 30018 30301 30595 30900 31209 31520 31835 32153 32474 32798 33125 33456 33790 34127 34468 34812 35160 35511 35865 36223 36584 36950 37319 37691 38067 38447 38830 39218 39609 40004 40403 40806 41213 41648 42110 42601 43122 43674 44256 44871 45518 46200 46916 47668 48456 49118 49986 50897 51851 52738 53802 54916 56054 57151 58335 59544 60718 61976 63260 64516 65853 67217 68610 70031 71482 72963 74472 76009 77572 79158 80767 82395 84043 85708 87335 89038 90761 92504 94262 95948 97742 99556 101393 103224 105115 107073 109110 111221 113375 115568 117807 120084 122408 124774 127187 129643 132149 134699 137301 139750 142448 144988 148715 150032 151264 152368 153385 154388 155317 156118 156850 157464 158009 158433 158795 159045 159227 159306 159322 159231 159083 158838 158528 156888 154041 151777 149519 147817 146634 145359 143926 143022 141951 140661 139076 137197 135075 132803 130696 128887 127437 126294 125381 124540 123616 122505 122326 117588 112799 107431 101671 96082 90995 86500 82959 80038 77684 75332 72941 70536 68063 65807 63994 62294 61311 61397 62532 64988 69084 74210 79612 84324 87878 89323 88430 85759 82308 80104 78917 79699 79742 76073 65444 60356 56085 48552 44141 41930 +Spain 188758 189278 189799 190323 190848 191374 191901 192430 192961 193493 194053 194625 195236 195886 196577 197306 198077 198888 199740 200634 201569 202547 203568 204631 205738 206889 208084 209323 210608 211938 213314 214735 216166 217607 219057 220516 221986 223465 224954 226453 227962 229466 230966 232460 233949 235433 236911 238377 239828 230400 221311 210326 199834 189817 180255 171126 162719 154401 154873 173315 161955 167003 172322 184578 202288 200962 184178 188856 198198 190642 196062 195626 195209 194727 194345 193973 193629 193197 192892 187283 185609 193792 193069 202736 191500 196590 181936 204741 191780 194389 186190 193630 197882 200504 198585 202365 210320 202473 200436 208723 209778 197494 193253 175270 188279 176726 189504 170833 190536 187907 194798 208616 168579 178072 170983 171681 162068 169458 218001 171227 197625 187048 170528 169297 154101 147918 145713 131019 144086 133117 141201 134642 122746 116852 112480 108533 105752 123892 112959 117668 126050 123653 97634 92131 79961 73893 70593 61668 56117 55651 68327 58040 50708 46076 43885 43284 43047 42559 41642 40013 37882 35386 32845 30404 28318 26601 25114 23672 22203 20619 19086 17586 16392 15770 15856 16279 16303 15573 14245 12636 11056 9647 8458 7475 6612 5973 5481 5189 5024 4881 4666 4426 4209 3896 3584 3282 2984 2763 2599 2474 2439 2436 2514 2614 2665 2679 2674 2590 2515 2402 2249 2132 1978 1808 1665 1566 +Sri Lanka 19764 19764 19764 19764 19764 19764 19764 19764 19764 19764 19764 19783 19822 19880 19959 20058 20179 20321 20485 20672 20882 21115 21371 21652 21959 22290 22647 23030 23440 23878 24344 24838 25343 25857 26382 26918 27465 28022 28591 29172 29764 30353 30939 31521 32100 32674 33243 33808 34369 34924 35473 36021 36562 37097 37625 38146 38660 39166 39664 40153 40634 41106 41576 42043 42506 42967 43425 43878 44329 44776 45219 45658 46098 46559 46998 47444 47886 48321 48749 49172 49601 53346 52051 56792 59483 53203 50845 60782 59393 51436 59848 59817 56643 58161 60768 57946 58171 68590 70685 58737 70332 67746 69788 72500 69923 52476 68143 64476 80268 74916 79297 78817 69149 79959 78698 77636 83205 86771 86359 75986 77543 86516 81456 78650 74035 76640 78550 75005 74237 65870 64404 62922 61424 59693 58164 56626 57668 58723 60012 61079 62154 59528 57005 54579 52249 50012 47864 45802 43822 41921 40098 40502 39397 38651 38388 38534 38703 39025 39154 38857 37952 36516 34543 32445 30643 29394 28568 28297 28286 28229 27931 27330 26459 25369 24362 23593 23083 22756 22408 21819 20805 19420 17676 15750 13754 11885 10239 8906 8012 7457 7241 7269 7357 7423 7388 7236 6945 6545 6127 5721 5464 5350 5328 5369 10358 5181 4924 4661 4368 4127 3912 3718 3547 3375 3218 3091 +Sudan 77880 77983 78086 78189 78293 78396 78500 78604 78707 78812 78918 79034 79163 79304 79457 79622 79799 79990 80192 80408 80636 80877 81130 81397 81676 81969 82275 82594 82926 83272 83631 84003 84378 84754 85132 85511 85892 86275 86659 87045 87433 87823 88214 88607 89002 89398 89797 90197 90599 91002 91408 91512 91616 91718 91820 91921 92021 92120 92218 92315 92412 92507 92601 92694 92786 92878 92968 93057 93145 93232 93318 93402 93486 93563 93644 93725 93804 93876 93953 94029 94104 94172 94244 94315 94380 94448 94516 94578 94642 94706 94767 94828 94887 94945 94999 95048 95086 95114 95127 95125 95106 95069 95014 94946 94862 94760 94642 94502 94350 94184 94007 93821 93626 93429 93240 93052 92860 92667 92995 93196 93393 93591 93789 93986 94186 94384 94581 94776 94973 95304 95750 96191 96630 97067 97500 97931 98357 98779 99202 99617 100031 96788 93604 90475 86346 82401 78634 75038 71602 68319 65187 62464 60519 54594 54970 55411 55852 56275 56762 57310 57994 58769 59593 60467 61414 62558 63828 65123 66498 67993 69705 71497 73279 75010 76873 78838 80801 82702 84640 86633 88531 90316 92068 93589 94781 95661 96368 96630 97051 98139 100383 103025 106550 110337 113342 114898 116312 116272 115059 113614 112259 111362 110576 109796 108798 107515 105764 103803 101505 99144 97052 95360 93926 92351 90971 89488 +Suriname 1490 1490 1490 1490 1490 1490 1490 1490 1490 1490 1490 1491 1491 1493 1496 1498 1502 1505 1510 1515 1520 1526 1533 1541 1548 1557 1566 1576 1586 1597 1608 1621 1633 1645 1658 1670 1683 1695 1708 1721 1734 1747 1761 1774 1787 1801 1815 1828 1842 1856 1870 1884 1898 1912 1926 1940 1955 1969 1984 1999 2014 2029 2044 2059 2074 2089 2105 2120 2136 2152 2168 2184 2200 2216 2233 2249 2266 2282 2299 2316 2334 2351 2368 2386 2403 2421 2439 2457 2475 2493 2512 2530 2549 2568 2587 2606 2625 2644 2663 2681 2699 2717 2734 2751 2768 2784 2800 2815 2830 2845 2860 2875 2889 2904 2918 2933 2947 2962 2977 2992 3008 3023 3038 3054 3069 3085 3014 2954 2885 2817 2768 2728 2677 2627 2584 2532 2479 2435 2381 2327 2272 2225 2170 2101 2042 1974 1906 1839 1780 1714 1648 1623 1582 1549 1517 1486 1461 1444 1417 1397 1374 1355 1323 1293 1250 1202 1148 1098 1041 990 934 882 836 798 760 723 689 660 636 617 602 593 587 598 616 626 615 596 571 545 523 507 492 480 468 455 441 427 411 393 373 355 335 317 301 289 278 270 262 256 251 243 235 225 216 209 +Swaziland 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1647 1648 1649 1649 1649 1650 1651 1651 1652 1652 1653 1654 1654 1655 1655 1656 1657 1657 1657 1658 1659 1659 1660 1660 1661 1661 1662 1663 1663 1664 1664 1665 1666 1666 1666 1667 1668 1668 1669 1669 1670 1671 1671 1672 1672 1672 1673 1672 1672 1677 1687 1689 1707 1732 1765 1804 1840 1900 1961 2012 2067 2091 2093 2095 2098 2101 2103 2105 2107 2108 2123 2152 2193 2235 2279 2323 2368 2413 2460 2581 2702 2822 2941 3059 3177 3294 3410 3526 3641 3755 3710 3662 3612 3558 3503 3446 3387 3326 3164 2962 2962 2970 2989 3010 3048 3092 3135 3187 3231 3271 3323 3355 3379 3401 3427 3457 3485 3517 3551 3589 3610 3611 3585 3543 3483 3431 3365 3307 3257 3202 3133 3048 2957 2874 2811 2750 2724 2719 2719 2731 2787 2870 2992 3152 3352 3574 3801 4020 4210 4366 4489 4539 4558 4535 4484 4241 4095 4033 3723 3182 2870 2652 2474 2291 2221 +Sweden 25768 23254 21182 20518 20746 20336 24811 21089 25831 23571 27681 27955 25695 22260 23162 23834 24278 23341 23266 24894 22287 28275 23208 21357 20885 22610 23168 19646 26564 29872 23953 24257 23001 24508 25292 19574 21656 26312 22921 23036 21739 21180 24489 23073 23659 22188 24786 26736 21745 25402 23911 25627 26988 28659 26390 26020 28326 37168 32219 30644 26076 27142 34388 31152 31267 30483 29549 26373 28087 31705 26495 23509 23832 26018 30581 31487 32031 31187 30030 26872 26967 25711 27703 26258 26711 26728 25556 24203 21872 21422 23734 24320 22320 22221 21449 19933 21092 19818 19196 22959 21413 21868 18622 18601 17221 17905 16151 15389 16984 14417 14661 13857 13818 12786 13241 13108 12525 11396 12687 12284 13782 10975 9567 8551 9071 8005 7609 7931 7946 7034 6755 7029 6413 6141 6062 5998 5975 6165 5791 5363 5111 5207 4259 4298 4713 4393 3728 3589 3320 3311 3289 2875 2553 2318 2181 2114 2092 2105 2153 2187 2212 2209 2155 2070 1972 1880 1795 1736 1685 1628 1561 1489 1399 1294 1188 1093 1008 935 867 815 782 749 733 726 734 749 768 791 816 835 822 803 751 702 628 556 486 420 365 323 310 318 340 373 393 408 397 387 368 349 345 332 333 335 338 343 +Switzerland 18880 18960 19040 19120 19200 19281 19362 19443 19525 19607 19696 19781 19867 19955 20044 20135 20228 20323 20420 20518 20618 20721 20824 20930 21038 21147 21259 21372 21487 21604 21724 21846 21971 22098 22227 22358 22492 22628 22767 22907 23051 23198 23342 23485 23628 23774 23920 24068 24216 24365 24514 24036 24024 23233 22775 21625 24169 24436 25876 27449 27095 26890 27291 28395 28585 28337 28973 27388 26187 26388 25000 24620 24243 23770 23938 24633 24993 25336 24461 22021 21154 22183 19818 18018 17773 18503 17934 17598 16568 17748 16456 19040 16451 17420 17479 17270 15775 16332 18149 17100 18575 17763 16189 15828 17237 15943 15674 14538 13589 14143 13048 14089 11058 11107 10271 8509 7538 7445 9101 7963 8676 6917 6432 5772 5724 5512 5180 5129 5013 4678 4574 4473 4633 4281 4232 4493 4317 4427 4133 4063 4645 4130 3903 3979 4192 4059 3952 3850 3569 3459 3365 3049 2822 2683 2590 2532 2481 2460 2464 2498 2549 2598 2625 2612 2551 2459 2356 2236 2106 1975 1832 1692 1543 1399 1253 1117 1001 904 826 767 735 712 706 704 706 701 696 681 655 634 622 611 600 590 573 553 525 506 474 450 430 418 401 382 372 367 363 356 358 360 361 359 356 351 338 334 +Syria 27074 27074 27074 27074 27074 27074 27074 27074 27074 27074 27074 27078 27087 27100 27117 27139 27165 27196 27231 27271 27315 27364 27417 27474 27537 27604 27675 27751 27831 27916 28006 28101 28195 28290 28386 28481 28577 28674 28770 28867 28964 29062 29160 29258 29357 29456 29555 29655 29755 29855 29956 30055 30155 30255 30356 30457 30558 30659 30761 30863 30966 31072 31181 31294 31410 31530 31654 31781 31911 32046 32184 32326 32471 32603 32757 32916 33078 33235 33409 33588 33768 33946 34127 34310 34491 34675 34861 35045 35232 35421 35610 35801 35992 36184 36377 36568 36758 36945 37128 37306 37479 37647 37807 37965 38117 38264 38405 38537 38667 38791 38912 39029 39144 39380 39759 40263 40771 41287 41811 42341 42878 43422 43972 44528 45093 45662 46363 47012 47669 48335 49378 50417 51451 52478 53504 54523 53691 52830 51943 51028 50087 50713 51327 51932 52528 53114 53691 54259 54819 55369 55909 53611 51940 52203 51164 49309 46952 44176 41328 38841 36979 35607 34885 34511 34171 33603 32822 31837 30743 29754 28954 28420 27941 27574 27152 26656 26133 25510 24825 24125 23455 22810 22143 21521 20848 20148 19459 18738 17995 17273 16548 15742 14936 14202 13578 13143 12883 12787 12727 12514 12162 11543 10816 10030 9359 8947 8707 8691 8638 8504 8078 7832 7999 7188 6333 5515 +Tajikistan 7292 7276 7259 7243 7227 7211 7195 7180 7164 7148 7132 7119 7110 7103 7100 7100 7103 7110 7120 7133 7149 7168 7190 7216 7245 7277 7313 7352 7394 7439 7488 7540 7592 7645 7698 7752 7806 7860 7915 7970 8025 8081 8137 8194 8251 8308 8366 8424 8483 8542 8601 8660 8719 8779 8839 8900 8961 9022 9084 9146 9209 9272 9335 9400 9464 9528 9594 9660 9726 9792 9859 9927 9995 10061 10129 10199 10269 10337 10407 10479 10550 10620 10693 10766 10838 10912 10987 11060 11136 11213 11289 11367 11445 11523 11601 11681 11761 11842 11923 12004 12087 12169 12251 12335 12419 12504 12591 12674 12761 12848 12936 13024 13114 13203 13294 13385 13476 13569 13664 13759 13854 13951 14047 14145 14244 14342 14443 14543 14644 14746 14990 15233 15274 15310 15343 15370 15394 15413 15428 15438 15445 15449 15449 15445 15437 15427 15413 15397 15376 15354 15328 15510 16057 16526 16916 17234 17481 17666 17797 17882 17935 17971 18003 18046 18109 18204 18337 18505 18696 18902 19098 19256 17710 18270 18650 18782 18638 18334 18038 17995 18390 19180 20199 21261 22174 22776 23133 23249 23320 23456 23658 24174 24612 24660 24092 23116 22047 21063 20115 19055 17821 16323 14801 13412 12341 11663 11291 11235 11367 11604 11822 11985 12110 12154 12055 11799 +Tanzania 58241 58241 58241 58241 58241 58241 58241 58241 58241 58241 58241 58251 58271 58300 58340 58389 58449 58518 58597 58687 58787 58897 59017 59147 59288 59439 59600 59772 59954 60146 60349 60563 60777 60992 61208 61424 61642 61860 62079 62299 62519 62740 62962 63185 63408 63633 63858 64084 64311 64539 64767 64986 65205 65426 65647 65869 66092 66315 66539 66765 66990 67216 67444 67672 67900 68130 68360 68591 68823 69056 69290 69524 69759 69992 70228 70465 70704 70940 71180 71420 71662 71902 72145 72389 72631 72877 73123 73368 73616 73865 74115 74365 74617 74869 75120 75366 75610 75846 76073 76288 76492 76684 76863 77031 77189 77333 77466 77586 77694 77791 77880 77962 78043 78119 78197 78277 78353 78430 78522 78609 78698 79238 80236 81706 83199 84720 86269 87842 89447 90956 93410 95852 98282 100695 103098 105488 107861 110224 112571 114908 117231 119538 117795 116023 114226 112411 110581 108740 106890 105032 103170 96707 96679 97251 98709 100914 103455 106464 109705 112846 115837 118650 120827 122473 123948 125717 127434 129240 130873 132751 134784 136957 138785 140474 141981 143526 145034 146089 147082 148394 150573 153550 156661 160263 163555 166668 169287 171151 172670 174771 177635 181399 185173 188970 191598 192567 192256 189440 184822 179032 173227 167206 161756 156356 150635 144612 138036 130760 123662 117550 111200 106181 103423 101993 99367 98180 +Thailand 90022 90022 90022 90022 90022 90022 90022 90022 90022 90022 90022 90039 90072 90121 90187 90269 90368 90484 90617 90766 90933 91116 91317 91535 91770 92022 92291 92578 92882 93204 93544 93901 94260 94620 94981 95344 95707 96073 96440 96808 97178 97554 97937 98328 98726 99131 99543 99962 100389 100823 101265 101748 102239 102739 103246 103761 104285 104816 105356 105904 106461 107038 107631 108238 108862 109501 110156 110826 111514 112218 112938 113675 114430 115126 115919 116730 117561 118368 119249 120152 121061 121960 122883 123813 124735 125700 126694 127651 128692 129768 130878 132022 133201 134416 135665 136940 138288 139679 141109 142575 144078 145617 147060 148695 150381 152115 153844 155511 157227 159021 160898 162745 164871 167023 169216 171435 173679 176231 179031 182184 185399 188671 192164 195897 199855 203894 207711 211931 216579 221997 228102 224344 220352 216138 211008 206370 201501 196462 200706 204933 216347 213458 210496 207484 204427 201316 198183 195013 191819 188470 182277 179106 175736 172756 170479 169116 168464 168127 168206 167974 167248 166084 164320 162128 159860 157718 155524 153121 150135 146103 140676 133848 126037 117898 110073 103089 96941 91374 86480 81994 77473 73030 68667 64452 60484 56693 53146 49721 46523 43305 40293 37817 35501 33302 31271 29375 27399 25459 23536 21843 20439 19257 18216 17341 16439 15459 14544 13681 12815 12073 11476 10939 10450 10058 9560 9173 +Timor-Leste 2757 2758 2759 2759 2760 2761 2762 2763 2764 2765 2766 2768 2772 2777 2784 2792 2802 2814 2827 2842 2858 2876 2895 2917 2940 2965 2991 3019 3049 3081 3115 3150 3186 3223 3260 3297 3335 3373 3411 3450 3489 3529 3569 3610 3651 3693 3735 3778 3821 3865 3909 3953 3998 4043 4089 4135 4182 4230 4278 4326 4375 4425 4475 4525 4577 4629 4681 4734 4788 4842 4897 4952 5008 5063 5121 5179 5238 5295 5355 5416 5477 5537 5600 5664 5726 5791 5857 5922 5989 6056 6125 6195 6265 6336 6408 6480 6554 6628 6703 6779 6856 6917 6976 7038 7100 7163 7227 7289 7353 7418 7483 7549 7616 7683 7751 7819 7888 7958 8030 8101 8173 8246 8320 8394 8469 8544 8602 8642 8664 8686 8674 8657 8639 8622 8605 8587 8570 8553 8536 8519 8502 8484 8467 8450 8469 8487 8505 8524 8542 8559 8577 8543 8494 8444 8396 8347 8297 8244 8187 8134 8084 8032 7976 7910 7831 7712 7582 7414 7241 7056 6888 6755 6692 6681 6416 6158 5965 5878 5922 6094 7728 7682 7529 7300 7032 6778 6715 6242 5626 5114 4838 4782 4904 5093 5215 5186 5170 5023 4799 4548 4318 3970 3647 3336 3027 2728 2455 2210 2025 1932 1947 2058 2256 2467 2612 2642 +Togo 8360 8360 8360 8360 8360 8360 8360 8360 8360 8360 8360 8364 8371 8382 8396 8414 8435 8461 8490 8522 8559 8599 8643 8691 8743 8799 8859 8923 8992 9064 9140 9221 9302 9384 9466 9550 9634 9719 9805 9891 9978 10066 10155 10244 10335 10426 10518 10610 10704 10798 10894 10989 11085 11182 11280 11378 11478 11578 11679 11782 11885 11989 12094 12199 12306 12413 12522 12632 12742 12854 12966 13079 13194 13306 13422 13540 13658 13775 13895 14016 14139 14260 14385 14510 14635 14762 14892 15020 15151 15283 15417 15552 15688 15825 15963 16102 16240 16378 16515 16650 16784 16916 17044 17173 17300 17425 17549 17667 17786 17904 18020 18135 18251 18366 18483 18600 18717 18835 18956 19077 19198 19321 19443 19566 19691 19815 19941 20067 20194 20322 20574 20826 21076 21324 21572 21817 22061 22303 22545 22784 23022 22897 22769 22639 22506 22370 22084 21973 21867 21753 20033 20278 20194 19943 19674 19498 19397 19346 19312 19290 19228 19103 18902 18743 18799 19196 19558 20081 20676 21178 21474 21836 21993 22008 21957 21886 21814 21666 21537 21464 21554 21619 21749 21910 22099 22238 22442 22580 22684 22739 22724 22767 22721 22607 22475 22412 22302 22222 22174 22131 22124 22118 22117 22102 22078 22034 21963 21830 21649 21414 21161 20880 20566 20214 19849 19512 +Tonga 374 371 368 365 362 359 357 354 351 348 345 342 340 337 334 332 329 326 324 321 319 316 313 311 308 306 304 301 299 296 294 292 289 287 285 282 280 278 276 274 271 269 267 265 263 261 259 257 255 254 252 250 248 246 245 243 241 240 238 237 235 234 232 231 229 228 226 225 224 222 221 219 218 217 215 214 212 211 210 208 207 206 205 203 202 200 199 198 197 196 194 193 192 191 189 188 188 188 187 188 188 188 188 189 190 191 191 191 192 192 192 192 192 192 192 193 193 193 193 193 193 194 194 196 197 199 201 203 205 208 214 220 226 231 237 242 248 253 258 263 268 273 278 282 287 291 296 300 304 308 313 314 316 320 315 310 304 298 292 286 280 273 265 257 249 236 223 207 189 171 153 138 123 111 101 95 92 91 92 93 92 91 90 87 85 81 77 71 65 60 57 55 55 56 57 57 55 53 50 47 45 45 45 46 47 48 49 49 49 49 49 49 47 46 44 43 +Trinidad and Tobago 777 777 777 777 777 777 777 777 777 777 777 777 778 779 840 842 846 849 853 858 863 868 874 881 887 895 902 911 919 928 909 890 871 856 837 818 827 836 845 854 863 873 884 895 907 920 933 947 963 978 995 1013 1032 1052 1073 1095 1118 1142 1167 1194 1221 1250 1280 1311 1344 1376 1411 1446 1483 1521 1559 1600 1641 1680 1724 1770 1817 1862 1912 1965 2019 2070 2127 2185 2209 2236 2244 2248 2253 2258 2260 2358 2459 2563 2671 2783 2888 2994 3101 3210 3321 3400 3479 3557 3634 3711 3693 3668 3644 3480 3322 3259 3196 3127 3054 2976 2902 2777 2656 3017 3317 2638 2637 2510 2441 2749 2936 2387 2559 2524 2635 3209 2412 3152 3172 2440 2477 3340 2704 3015 3195 3417 3928 2996 2572 2810 2684 2844 2663 2955 2842 2686 2560 2268 2285 2295 2281 2244 2190 2131 2077 2047 2020 1980 1912 1808 1668 1492 1314 1177 1100 1086 1132 1207 1276 1309 1298 1253 1191 1141 1120 1129 1153 1182 1189 1161 1092 993 880 778 701 649 623 613 607 597 582 564 548 533 529 529 533 539 541 538 532 520 505 491 474 457 440 421 404 387 +Tunisia 17586 17599 17612 17626 17638 17652 17665 17678 17691 17705 17718 17736 17758 17784 17815 17851 17891 17936 17985 18039 18098 18161 18230 18303 18380 18463 18551 18643 18740 18843 18950 19062 19176 19289 19403 19519 19634 19751 19868 19986 20104 20223 20344 20464 20586 20708 20830 20954 21078 21203 21329 21462 21596 21731 21867 22003 22141 22279 22418 22558 22699 22846 23000 23161 23329 23503 23684 23873 24069 24272 24483 24702 24928 25127 25371 25623 25885 26134 26419 26713 27012 27304 27609 27917 28221 28536 28854 29169 29495 29824 30157 30493 30833 31177 31523 31873 32224 32575 32926 33274 33622 33967 34305 34647 34986 35323 35658 35981 36311 36638 36964 37286 37614 38024 38520 39105 39698 40300 40894 41501 42116 42741 43374 44008 44379 44625 45003 45245 45625 45873 46548 47205 47697 48324 48784 49375 49793 50355 50743 51270 51620 52119 52440 52905 52524 52285 51862 51581 51110 50794 50286 50362 50799 51228 51647 52058 52463 52858 53247 53629 54008 54376 52592 51875 50668 48940 46453 43386 40187 37240 34885 32896 31367 30044 28816 27503 26120 24731 23389 22162 21040 19945 18879 17908 16954 16059 15298 14612 13976 13308 12615 11836 10956 10034 9122 8305 7568 6926 6348 5851 5394 4988 4637 4300 4039 3811 3636 3493 3378 3270 3199 3137 3110 3087 3026 2919 +Turkey 176883 177151 177420 177689 177958 178227 178498 178768 179039 179310 179590 179876 180177 180493 180824 181170 181530 181906 182297 182703 183124 183561 184013 184481 184964 185463 185977 186507 187053 187615 188193 188787 189383 189981 190580 191181 191785 192390 192997 193606 194217 194830 195445 196062 196681 197301 197924 198549 199176 199804 200434 201066 201700 202335 202973 203612 204254 204897 205543 206191 206841 207517 208221 208952 209712 210499 211314 212157 213029 213929 214859 215818 216807 217688 218745 219834 220957 222041 223255 224506 225765 227011 228284 229563 230833 232126 233427 234721 236037 237360 238690 240028 241373 242726 244080 245429 246765 248083 249381 250641 251866 252720 253868 254648 255736 256438 257451 258055 258643 259545 260071 260914 261404 260721 259031 255856 253058 249951 247214 244181 241181 238533 235598 234123 233454 234218 234691 235901 238160 240755 247189 252777 259092 264532 270745 276023 281225 287260 300807 314728 329054 343801 360080 351114 350368 349465 348426 347252 345945 344514 342981 338977 338419 331811 338238 338773 336216 328064 317072 305671 296183 288294 283508 280681 277764 273915 269125 263216 257076 251563 247444 244196 241123 238142 234336 229522 224018 217100 209314 201180 192979 184333 175513 166412 157184 147794 138400 128960 119774 111308 103590 96658 90398 84652 79666 74972 70823 67143 63417 59652 55723 51562 47335 43147 39252 36060 33110 30629 28465 26597 24984 23690 22468 21428 20134 18936 +Turkmenistan 7897 7892 7888 7884 7880 7876 7872 7868 7864 7859 7855 7855 7858 7864 7874 7887 7904 7924 7949 7977 8009 8044 8083 8126 8172 8223 8277 8336 8398 8464 8534 8608 8683 8758 8835 8912 8989 9067 9146 9226 9306 9387 9468 9551 9634 9717 9802 9887 9973 10060 10147 10235 10324 10413 10504 10594 10687 10779 10873 10967 11062 11158 11254 11352 11450 11550 11650 11751 11853 11955 12059 12164 12269 12372 12479 12587 12696 12803 12914 13026 13139 13250 13365 13481 13595 13712 13831 13949 14070 14192 14315 14439 14564 14690 14817 14946 15075 15206 15338 15471 15605 15513 15419 15328 15238 15148 15059 14967 14878 14791 14704 14616 14530 14444 14359 14274 14190 14107 14024 13942 13860 13778 13697 13617 13537 13458 13378 13300 13222 13144 13171 13195 13120 13041 12960 12876 12790 12701 12611 12519 12425 12328 12231 12132 12030 11928 11825 11719 11614 11506 11399 11212 10878 10683 10573 10493 10522 10600 10703 10813 10847 10873 10818 10620 10391 10104 9793 9498 9703 9959 10265 10605 10955 11300 11640 11986 12351 13573 13109 12707 12390 12198 12064 11981 11932 11886 11877 11882 11911 11937 11957 11933 11903 11781 11492 11053 10432 9622 8771 8084 7679 7582 7796 8141 8370 8359 8102 7631 7042 6519 6178 5984 5943 5954 5960 5868 +Uganda 50930 50930 50930 50930 50930 50930 50930 50930 50930 50930 50930 50938 50954 50978 51011 51051 51100 51157 51222 51296 51378 51468 51567 51674 51789 51913 52045 52186 52336 52494 52661 52836 53011 53188 53365 53542 53720 53899 54078 54258 54439 54620 54802 54984 55167 55350 55535 55719 55905 56091 56277 56462 56647 56833 57020 57206 57395 57583 57772 57961 58151 58342 58533 58725 58918 59111 59305 59500 59695 59891 60087 60284 60482 60678 60877 61077 61277 61477 61678 61880 62084 62285 62490 62695 62898 63105 63312 63518 63727 63936 64146 64356 64567 64779 64989 65197 65400 65598 65788 65967 66137 66296 66445 66584 66713 66832 66942 67037 67124 67201 67263 67322 67356 67373 67373 67373 67373 67373 67375 67378 67379 67764 68537 70322 72166 73832 75755 77729 78357 79222 80878 82725 84289 86059 87530 89212 90596 92209 93502 94745 95960 97124 98241 99322 100363 97516 94709 91940 89215 86534 83901 80449 77853 75451 71445 71448 71426 70754 70108 69761 69883 70274 71160 72324 73694 75054 76633 78092 79440 80869 82498 84754 87291 90330 94118 98859 104387 110374 116584 122308 127068 130394 131553 131604 131929 133512 136242 139955 144211 148171 151343 154070 155906 157529 159322 161442 163620 164673 164273 162792 160254 156555 151925 146541 140573 134355 128052 121612 115415 109976 105540 100030 93673 90167 86880 85291 +Ukraine 207720 207720 207720 207720 207720 207720 207720 207720 207720 207720 207720 207812 207997 208275 208647 209115 209679 210340 211100 211958 212916 213974 215135 216398 217764 219235 220811 222495 224285 226184 228193 230312 232451 234609 236788 238987 241206 243446 245707 247988 250291 252615 254961 257329 259718 262130 264564 267021 269501 272004 274529 277071 279636 282225 284838 287475 290136 292823 295534 298270 301031 303818 306631 309470 312335 315227 318146 321091 324064 327064 330092 333148 336232 339249 342389 345559 348759 351897 355155 358444 361762 363222 365219 366761 368690 370231 372241 373715 375250 377267 378799 380821 382350 383874 385891 387378 389356 390761 391062 390752 390330 390359 389695 389545 388748 387847 387418 386249 385636 384352 382996 382129 380654 379117 378134 376519 375475 373780 372056 370911 369101 347905 325771 305553 286584 267747 249066 242580 236537 229578 226368 223186 219058 215845 212650 208647 205540 202480 198611 195608 195863 451838 527026 546100 392658 317918 148001 223958 128395 109740 87280 86651 84416 81499 78101 73832 68880 63909 59052 57206 47150 43716 39976 36655 33799 31459 29606 28138 26953 25982 25161 22851 23373 24352 25077 25252 24820 23853 22441 21135 20175 19550 19207 18921 18545 17675 16635 15413 14138 13038 12203 11721 11478 11285 11115 10851 10353 9696 8957 8170 7543 6953 6481 6171 5989 6008 6176 6411 6660 6712 6588 6208 5628 4968 4418 3997 +United Arab Emirates 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 833 834 834 834 834 834 834 834 835 835 835 836 837 839 840 842 844 846 849 851 854 856 859 863 867 871 875 881 885 891 896 901 906 911 916 921 927 932 938 943 948 954 959 965 970 975 981 986 991 995 1000 1005 1009 1014 1018 1022 1025 1029 1033 1036 1040 1044 1050 1056 1063 1069 1076 1082 1088 1095 1102 1108 1115 1121 1128 1135 1142 1149 1162 1176 1190 1203 1217 1230 1243 1256 1269 1282 1295 1308 1321 1334 1346 1359 1285 1210 1141 1070 1004 970 936 912 897 891 892 900 915 934 872 846 847 859 872 876 861 846 839 849 877 810 765 743 753 796 840 902 959 985 977 978 956 925 896 876 848 828 811 788 761 716 671 633 599 572 561 557 557 563 563 544 523 514 536 583 615 674 731 770 773 797 780 741 702 661 +United Kingdom 148458 138315 160048 170469 173298 171958 170840 171140 171423 167783 174785 178206 176013 181781 185429 207940 201583 203696 201854 201203 203232 212542 221550 218718 215327 215103 216668 205870 213770 201461 204132 205056 203223 210526 204054 199895 199104 194340 191688 195416 192005 189066 196427 195059 197846 188154 221896 209109 214851 220951 199815 217938 223966 216214 237835 220355 214763 228110 240672 245939 216791 232458 232548 260423 256773 254259 257559 241783 260214 255165 266419 257660 244869 238111 258893 261420 250370 239018 270369 244991 269309 224738 248822 236562 248260 232098 243521 238727 222754 240004 246057 248733 244850 255918 224938 257448 245035 246518 252077 230930 223748 214080 197572 189438 206059 183018 186037 171612 170607 156738 147925 177484 136798 150370 147014 144637 117579 101473 123712 107970 136058 104559 102299 85968 93231 89685 81067 77484 73577 83705 65837 70304 68463 64810 63959 59644 61773 59738 54618 49029 57537 60634 50790 48326 44518 41280 40195 40201 30194 28803 35795 28588 23677 20703 19374 19217 19793 21046 22570 24166 25415 26170 26370 25912 25150 24106 23151 21979 20874 19716 18585 17475 16367 15188 14115 13146 12194 11429 10712 10118 9637 9335 9107 9040 8921 8861 8719 8473 8091 7627 7113 6624 6233 5926 5603 5409 5184 5020 4849 4692 4557 4362 4254 4248 4161 4207 4317 4489 4583 4618 4533 4354 4079 3755 3460 3235 +United States 152156 154631 157141 159483 162072 164703 167371 169857 172609 175402 179445 182338 185153 188380 191770 195320 198745 202581 206563 210684 260569 265675 271020 276605 282417 288448 294684 301129 307770 314590 321614 328273 335138 342178 349394 356790 364341 372050 379913 387927 396090 401683 407385 413271 419144 425083 431073 437100 443141 449201 455259 458102 460632 462821 464678 466211 467392 468230 468724 468884 468693 475932 483086 490169 497079 503961 510751 517443 524050 530539 536936 554195 571856 588878 607301 626195 645543 664191 684507 705287 726570 715649 705003 693733 681374 669091 656244 642760 628536 623706 616426 613410 609954 608602 604534 600074 597807 592967 587881 582572 579371 575882 553056 556107 585231 574159 584532 586853 551231 534323 568605 534217 522748 539712 527639 514793 535255 534077 707735 466045 496684 443661 421229 436726 414468 376377 342061 312839 278036 249609 236739 224411 212642 201446 223452 214794 220215 216932 208336 191416 191246 189395 174370 173599 165043 160448 157363 146366 141158 142896 144132 138850 135167 133052 131916 131889 132361 133203 133908 133069 131153 127437 122198 115979 109555 103464 97547 92048 86709 82046 78075 74393 71484 69014 66597 64006 61205 58533 55784 53499 51776 50360 49398 48429 47749 47267 46673 46264 45370 44434 43143 42278 41045 39753 38699 37467 35983 34294 32985 32269 31515 31613 32070 32671 33573 33698 33518 32977 32172 30845 29940 28688 27790 26598 25627 24923 +Uruguay 929 929 928 928 928 926 926 926 925 925 925 924 927 931 935 942 950 959 971 984 997 1014 1032 1050 1073 1096 1121 1149 1177 1209 1244 1279 1317 1356 1394 1435 1477 1519 1564 1610 1655 1706 1761 1816 1879 1945 2014 2089 2170 2253 2344 2442 2546 2657 2774 2895 3028 3169 3318 3477 3645 3819 3996 4170 4354 4541 4731 4926 5124 5325 5529 5740 5949 6162 6390 6626 6869 7090 7341 7599 7859 8099 8967 9216 8694 9440 9986 10499 10857 11136 11271 11621 11705 11468 11979 12694 12581 10966 11765 12295 12313 12310 12311 12610 12898 13174 13457 13727 13868 14044 14255 14465 13538 12422 11350 10325 9322 8408 7722 7101 6537 6023 5176 5940 6310 6914 5409 6445 6013 5498 6055 6860 6072 5666 5935 6440 5716 6066 6344 5078 5418 5226 6045 4916 4057 3943 3833 4513 3815 3195 3118 3057 3030 3001 2782 2956 3145 3338 3493 3605 3639 3618 3557 3484 3415 3355 3295 3210 3108 3024 2966 2987 3093 3263 3423 3493 3423 3218 2907 2565 2235 1952 1740 1595 1504 1447 1419 1406 1399 1387 1368 1335 1303 1272 1229 1182 1130 1067 1000 941 890 850 824 794 766 737 707 677 658 638 614 595 571 542 514 487 +Uzbekistan 29246 29244 29243 29241 29240 29237 29236 29234 29233 29231 29230 29241 29265 29302 29352 29416 29493 29584 29688 29806 29938 30083 30243 30417 30606 30809 31027 31260 31507 31770 32048 32340 32636 32935 33236 33540 33847 34157 34469 34784 35102 35423 35747 36074 36405 36737 37074 37413 37755 38100 38448 38855 39266 39682 40101 40526 40954 41387 41824 42266 42712 43164 43620 44080 44546 45016 45491 45971 46455 46945 47440 47940 48446 48943 49459 49980 50507 51024 51562 52105 52653 53196 53756 54321 54882 55459 56041 56621 57216 57817 58425 59039 59659 60286 60919 61558 62203 62856 63516 64182 64856 64968 65071 65181 65294 65406 65518 65617 65728 65840 65952 66061 66173 66286 66399 66512 66623 66736 66734 66759 66786 66812 66839 66866 66891 66916 66944 66970 66995 67021 66933 66839 66189 65541 64898 64256 63616 62981 62350 61721 61091 60463 59839 59220 58601 57989 57380 56775 56176 55576 54983 54831 55416 55929 56373 56752 57064 57309 57491 57605 57649 57628 57560 57463 57380 57354 57436 57654 58028 58557 59229 60019 60880 61780 62713 63681 64711 65804 66964 68063 64355 61752 60006 58819 57666 56406 55259 54342 53419 52482 51689 50704 49296 47265 45183 43120 41247 39599 38107 36585 34947 33393 31943 30701 29807 29320 29268 29506 29887 30127 30123 29809 29248 28418 27362 26205 +Vanuatu 540 537 534 531 528 525 522 519 516 513 511 508 505 503 500 498 496 494 492 490 488 486 485 483 482 481 480 479 478 477 476 475 474 474 473 473 472 471 470 470 469 468 468 467 467 466 465 464 464 463 462 462 461 460 459 459 458 457 457 456 455 454 454 453 452 452 451 450 449 449 448 447 447 446 445 445 444 443 443 442 441 441 440 439 438 438 437 436 436 435 434 434 433 432 431 431 430 429 429 428 428 427 426 426 425 424 424 423 422 422 421 420 420 419 418 418 417 417 416 415 415 414 414 413 413 412 414 416 418 420 422 424 427 429 431 433 435 437 439 441 443 445 447 449 450 452 454 456 457 459 461 463 416 419 423 428 432 436 439 440 441 441 441 437 431 422 411 397 382 369 359 352 347 343 339 336 331 326 317 306 293 280 266 251 236 222 209 197 188 181 177 173 172 171 171 171 172 198 172 171 170 168 165 165 166 170 179 191 202 213 219 219 214 205 196 189 +Venezuela 11750 11750 11769 11769 11769 11787 11787 11787 11807 11807 11807 11837 11860 11915 11963 12024 12116 12203 12303 12437 12565 12727 12884 13057 13265 13468 13687 13944 14197 14489 14775 15080 15415 15733 16057 16414 16752 17097 17477 17837 18234 18599 18963 19353 19711 20067 20450 20799 21178 21520 21858 22253 22610 22963 23349 23694 24072 24409 24740 25105 25425 25742 26108 26443 26790 27193 27569 28003 28410 28833 29318 29774 30245 30710 31213 31779 32310 32813 33417 33971 34530 35178 35747 36312 36970 37524 38133 41414 42186 42964 43744 44536 45368 45527 45686 45843 46000 46140 46507 46890 47232 47533 47855 48811 49740 50640 51521 52380 52931 53533 54137 54766 55374 54954 54505 54001 53427 52817 52889 53000 53124 50809 48619 47059 45641 44324 43061 41819 39651 37615 37151 40211 42464 44790 45067 39569 39742 41291 43972 42549 39794 40456 39029 37483 41881 34953 37119 37062 36966 34508 28313 29401 28818 28587 28477 28359 28336 28230 28126 28141 28338 28728 29255 29758 30080 30085 29758 29087 28134 27061 26107 25133 24378 23691 23248 22951 22809 22807 22776 22610 22216 21651 20865 20118 19468 19001 18684 18467 18193 17843 17355 16791 16185 15672 15179 14777 14310 13816 13373 15938 12577 12257 11977 11677 11363 10980 10653 10371 10198 10023 9909 9809 9648 9424 9191 8946 +Vietnam 91727 91727 91727 91727 91727 91727 91727 91727 91727 91727 91727 91769 91852 91978 92147 92359 92615 92915 93260 93649 94084 94565 95091 95665 96285 96953 97670 98434 99248 100110 101023 101986 102959 103940 104931 105932 106941 107961 108990 110029 111078 112137 113206 114285 115375 116475 117585 118707 119838 120981 122134 123067 124007 124954 125907 126868 127835 128809 129790 130778 131773 132807 133882 134997 136154 137353 138594 139879 141207 142581 144000 145464 146976 148301 149916 151584 153305 154924 156782 158700 160641 162519 164505 166516 168471 170528 172610 174646 176777 178933 181114 183321 185555 187814 190092 192391 194704 197020 199334 201649 203953 204690 205320 205573 206174 206734 207250 207621 207620 207994 208334 208609 208886 214996 216506 231794 233118 248657 250789 231092 225626 234729 258745 249594 266569 266489 266401 267824 266947 275314 277885 278710 280332 281033 281679 283136 283655 274509 264581 255597 245915 237115 227601 219002 209680 201223 192121 183829 174917 166810 161008 159343 162503 164297 164903 164428 163016 160786 157874 154369 151752 148766 145559 142248 133715 133651 133453 133047 132540 132043 131481 131556 131637 131591 130899 129540 127559 124586 121323 118412 116280 114617 114031 113660 113337 112344 110694 108414 105458 102074 98623 95251 91835 87887 83220 77187 70030 62092 54082 47486 43093 40529 40269 41273 42255 42642 42518 41663 40481 39243 38200 37482 36644 35944 35143 34191 +West Bank and Gaza 3462 3462 3462 3462 3462 3462 3462 3462 3462 3462 3462 3462 3462 3461 3461 3461 3461 3461 3461 3461 3461 3461 3461 3461 3461 3461 3460 3460 3460 3460 3460 3460 3460 3460 3460 3460 3460 3460 3460 3460 3459 3461 3464 3467 3473 3480 3488 3498 3509 3521 3535 3552 3570 3590 3612 3636 3663 3691 3721 3753 3787 3823 3861 3899 3937 3977 4017 4058 4100 4144 4189 4235 4282 4326 4375 4424 4474 4522 4574 4627 4682 4734 4791 4849 4907 4967 5028 5089 5152 5216 5281 5348 5415 5483 5554 5625 5700 5775 5852 5932 6013 6082 6151 6223 6297 6371 6447 6520 6598 6696 6796 6902 7017 7102 7116 7059 6931 6806 6766 6814 6949 7086 7243 7420 7617 7820 8050 8297 8540 8791 9205 9368 9513 9644 9759 9861 9953 10033 10101 10158 10204 10239 10265 10281 10290 10289 10280 10265 10242 10213 10177 10088 9973 9887 9903 9941 9991 10076 10185 10301 10360 10334 10289 10125 9844 9536 9191 8823 8459 8112 7799 7530 7306 7124 6979 6621 6392 6162 5917 5675 5438 5189 4938 4707 4516 4367 4251 4167 4119 4094 4105 4110 4127 4146 4151 4113 4051 3950 3826 3687 3541 3435 3342 3252 3191 3156 3142 3140 3165 3192 3225 3229 3225 3213 3181 3145 +Zambia 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14172 14170 14168 14166 14165 14163 14161 14159 14157 14156 14154 14152 14150 14148 14147 14145 14143 14141 14139 14138 14136 14134 14132 14130 14129 14127 14125 14123 14121 14120 14118 14116 14114 14112 14111 14109 14107 14105 14103 14102 14100 14098 14096 14094 14092 14090 14085 14080 14073 14063 14069 14090 14086 14133 14200 14286 14393 14493 14661 14830 15012 15188 15403 15649 15899 16153 16411 16672 16941 17212 17489 17851 18300 18841 19399 19973 20564 21173 21799 22443 23419 24391 25358 26322 27280 28234 29183 30129 31070 32007 32938 33866 34789 35707 36621 35650 34680 33715 32755 31804 30864 29621 28804 26788 26859 27154 27399 27772 28150 28518 28920 29336 29715 30119 30624 31386 32335 33377 34370 35180 35738 35896 35787 35592 35623 35999 36848 38103 39592 41098 42590 44245 45940 47970 50527 53700 57358 61166 64722 67656 69664 71188 71834 71711 71209 70940 71109 71861 72673 73053 72287 70140 66478 62336 58553 55526 53223 51115 49737 47743 45817 44683 42976 41163 39737 38990 +Zimbabwe 20013 20013 20013 20013 20013 20013 20013 20013 20013 20013 20013 20020 20033 20054 20082 20117 20158 20207 20263 20326 20397 20475 20560 20653 20753 20861 20976 21099 21230 21368 21514 21668 21824 21980 22138 22296 22456 22617 22779 22942 23106 23272 23439 23607 23776 23946 24118 24290 24465 24640 24816 24991 25167 25345 25523 25703 25884 26067 26251 26436 26622 26810 26999 27189 27381 27574 27768 27964 28161 28359 28559 28760 28963 29162 29368 29575 29783 29988 30200 30413 30627 30839 31056 31275 31491 31714 31937 32159 32386 32614 32844 33075 33309 33543 33779 34014 34249 34481 34710 34937 35158 35375 35584 35793 35997 36197 36391 36577 36762 36943 37120 37295 37469 37642 37817 37991 38168 38343 38527 38708 38892 39074 39259 39444 39629 39815 40001 40188 40376 40564 40940 41312 41683 42050 42418 42780 43142 43500 43857 44210 44560 42963 41393 39838 38308 36598 34961 33392 31892 30457 29083 27861 27047 25569 26409 26665 26717 26253 25511 24825 24474 24320 24577 25064 25477 25691 25761 25666 25580 25679 26030 26592 27382 28326 29352 30396 31445 32371 33135 33585 33724 33315 32572 31626 30510 29440 28532 27835 27552 27785 28571 29986 31765 33695 35531 37324 39022 40260 41067 41630 41969 42273 42533 42652 42988 43479 43650 43902 43934 44035 43672 42864 40169 39030 38529 38087 diff --git a/src/data/gapminder/continent.txt b/src/data/gapminder/continent.txt new file mode 100644 index 0000000..6331158 --- /dev/null +++ b/src/data/gapminder/continent.txt @@ -0,0 +1,174 @@ +country continent +Afghanistan Asia +Albania Europe +Algeria Africa +Angola Africa +Antigua and Barbuda America +Argentina America +Armenia Europe +Australia Asia +Austria Europe +Azerbaijan Europe +Bahamas America +Bahrain Asia +Bangladesh Asia +Barbados America +Belarus Europe +Belgium Europe +Belize America +Benin Africa +Bhutan Asia +Bolivia America +Bosnia and Herzegovina Europe +Botswana Africa +Brazil America +Brunei Asia +Bulgaria Europe +Burkina Faso Africa +Burundi Africa +Cambodia Asia +Cameroon Africa +Canada America +Cape Verde Africa +Chad Africa +Chile America +China Asia +Colombia America +Comoros Africa +Congo, Dem. Rep. Africa +Congo, Rep. Africa +Costa Rica America +Cote d'Ivoire Africa +Croatia Europe +Cuba America +Cyprus Europe +Denmark Europe +Djibouti Africa +Ecuador America +Egypt Africa +El Salvador America +Equatorial Guinea Africa +Eritrea Africa +Estonia Europe +Ethiopia Africa +Fiji Asia +Finland Europe +France Europe +Gabon Africa +Gambia Africa +Georgia Europe +Germany Europe +Ghana Africa +Greece Europe +Grenada America +Guatemala America +Guinea Africa +Guinea-Bissau Africa +Guyana America +Haiti America +Honduras America +Hungary Europe +Iceland Europe +India Asia +Indonesia Asia +Iran Asia +Iraq Asia +Ireland Europe +Israel Asia +Italy Europe +Jamaica America +Japan Asia +Jordan Asia +Kazakhstan Asia +Kenya Africa +Kiribati Asia +Kuwait Asia +Latvia Europe +Lebanon Asia +Lesotho Africa +Liberia Africa +Libya Africa +Lithuania Europe +Luxembourg Europe +Macedonia, FYR Europe +Madagascar Africa +Malawi Africa +Malaysia Asia +Maldives Asia +Mali Africa +Malta Europe +Mauritania Africa +Mauritius Africa +Mexico America +Micronesia, Fed. Sts. Asia +Moldova Europe +Mongolia Asia +Montenegro Europe +Morocco Africa +Mozambique Africa +Myanmar Asia +Namibia Africa +Nepal Asia +Netherlands Europe +New Zealand Asia +Nicaragua America +Niger Africa +Nigeria Africa +Norway Europe +Oman Asia +Pakistan Asia +Panama America +Papua New Guinea Asia +Paraguay America +Peru America +Philippines Asia +Poland Europe +Portugal Europe +Qatar Asia +Romania Europe +Russia Europe +Rwanda Africa +Samoa Asia +Sao Tome and Principe Africa +Saudi Arabia Asia +Senegal Africa +Serbia Europe +Seychelles Africa +Sierra Leone Africa +Singapore Asia +Slovak Republic Europe +Slovenia Europe +Solomon Islands Asia +Somalia Africa +South Africa Africa +Spain Europe +Sri Lanka Asia +Sudan Africa +Suriname America +Swaziland Africa +Sweden Europe +Switzerland Europe +Syria Asia +Tajikistan Asia +Tanzania Africa +Thailand Asia +Timor-Leste Asia +Togo Africa +Tonga Asia +Trinidad and Tobago America +Tunisia Africa +Turkey Europe +Turkmenistan Asia +Uganda Africa +Ukraine Europe +United Arab Emirates Asia +United Kingdom Europe +United States America +Uruguay America +Uzbekistan Asia +Vanuatu Asia +Venezuela America +Vietnam Asia +West Bank and Gaza Asia +Zambia Africa +Zimbabwe Africa diff --git a/src/data/gapminder/fertility.txt b/src/data/gapminder/fertility.txt new file mode 100644 index 0000000..095024c --- /dev/null +++ b/src/data/gapminder/fertility.txt @@ -0,0 +1,174 @@ +fertility 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 +Afghanistan 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7.03 7.05 7.08 7.11 7.14 7.16 7.19 7.22 7.24 7.27 7.3 7.32 7.35 7.38 7.4 7.43 7.46 7.48 7.51 7.54 7.56 7.59 7.62 7.64 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.67 7.68 7.68 7.68 7.68 7.68 7.68 7.69 7.7 7.73 7.76 7.8 7.83 7.86 7.87 7.85 7.81 7.73 7.62 7.48 7.32 7.14 6.93 6.7 6.46 6.2 5.93 5.66 5.4 5.14 4.9 4.68 4.47 +Albania 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.6 4.42 4.25 4.07 3.89 3.72 3.54 3.36 3.57 3.77 3.98 4.19 4.39 4.6 3.74 4.19 3.75 4.41 4.58 4.76 4.93 5.1 5.28 5.45 5.63 5.8 5.9 6.07 6.21 6.31 6.37 6.4 6.39 6.35 6.28 6.19 6.08 5.96 5.83 5.71 5.59 5.48 5.38 5.27 5.16 5.05 4.93 4.81 4.68 4.54 4.39 4.24 4.09 3.95 3.81 3.68 3.56 3.46 3.37 3.3 3.23 3.18 3.13 3.08 3.02 2.97 2.92 2.87 2.82 2.77 2.72 2.67 2.61 2.54 2.47 2.38 2.29 2.2 2.1 2 1.92 1.85 1.8 1.76 1.74 1.74 1.75 1.76 1.77 1.78 1.78 +Algeria 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 7.02 7.05 7.07 7.1 7.12 7.15 7.18 7.2 7.23 7.26 7.28 7.31 7.33 7.36 7.39 7.41 7.44 7.46 7.49 7.52 7.54 7.57 7.59 7.62 7.65 7.65 7.65 7.65 7.65 7.65 7.65 7.65 7.65 7.65 7.65 7.65 7.65 7.65 7.65 7.66 7.66 7.66 7.66 7.65 7.64 7.62 7.59 7.55 7.49 7.42 7.34 7.24 7.14 7.02 6.89 6.74 6.58 6.39 6.19 5.98 5.75 5.51 5.26 5.01 4.76 4.5 4.24 3.97 3.71 3.45 3.21 2.99 2.79 2.63 2.51 2.44 2.41 2.41 2.45 2.51 2.58 2.66 2.73 2.78 2.82 2.83 2.82 2.8 2.76 2.71 +Angola 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.01 7.01 7 7 7 6.99 6.99 6.99 6.98 6.98 6.97 6.97 6.97 6.96 6.96 6.96 6.95 6.95 6.94 6.94 6.94 6.93 6.93 6.93 6.94 6.98 7.02 7.06 7.1 7.14 7.19 7.23 7.28 7.32 7.35 7.39 7.41 7.43 7.43 7.42 7.4 7.38 7.34 7.3 7.26 7.23 7.21 7.19 7.19 7.19 7.19 7.19 7.2 7.2 7.2 7.2 7.21 7.21 7.21 7.21 7.2 7.19 7.18 7.17 7.14 7.12 7.09 7.05 7.02 6.98 6.95 6.91 6.88 6.84 6.81 6.78 6.74 6.7 6.66 6.6 6.52 6.43 6.33 6.22 6.1 5.98 5.86 5.75 5.65 +Antigua and Barbuda 5 5 4.99 4.99 4.99 4.98 4.98 4.97 4.97 4.97 4.96 4.96 4.96 4.95 4.95 4.94 4.94 4.94 4.93 4.93 4.93 4.92 4.92 4.92 4.91 4.91 4.9 4.9 4.9 4.89 4.89 4.89 4.88 4.88 4.87 4.87 4.87 4.86 4.86 4.86 4.85 4.85 4.84 4.84 4.84 4.83 4.83 4.83 4.82 4.82 4.82 4.81 4.81 4.8 4.8 4.8 4.79 4.79 4.79 4.78 4.78 4.77 4.77 4.77 4.76 4.76 4.76 4.75 4.75 4.75 4.74 4.74 4.73 4.73 4.73 4.72 4.72 4.72 4.71 4.71 4.7 4.7 4.7 4.69 4.69 4.69 4.68 4.68 4.67 4.67 4.67 4.66 4.66 4.66 4.65 4.65 4.65 4.64 4.64 4.63 4.63 4.63 4.62 4.62 4.62 4.61 4.61 4.6 4.6 4.6 4.59 4.59 4.59 4.58 4.58 4.58 4.57 4.57 4.56 4.56 4.56 4.55 4.55 4.55 4.54 4.54 4.53 4.53 4.53 4.52 4.52 4.52 4.51 4.51 4.51 4.5 4.5 4.49 4.49 4.49 4.48 4.48 4.48 4.47 4.47 4.46 4.46 4.46 4.45 4.45 4.45 4.46 4.5 4.52 4.53 4.53 4.53 4.51 4.49 4.46 4.43 4.39 4.34 4.3 4.25 4.19 4.13 4.04 3.94 3.82 3.68 3.52 3.33 3.12 2.91 2.7 2.51 2.36 2.24 2.16 2.12 2.1 2.1 2.1 2.1 2.09 2.08 2.07 2.06 2.06 2.06 2.07 2.1 2.13 2.17 2.21 2.25 2.28 2.3 2.32 2.32 2.31 2.29 2.27 2.25 2.22 2.2 2.18 2.16 2.15 2.13 2.12 2.1 2.09 2.08 2.06 +Argentina 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.73 6.65 6.58 6.58 6.57 6.57 6.57 6.57 6.56 6.56 6.56 6.56 6.55 6.47 6.39 6.3 6.22 6.14 6.09 6.04 5.99 5.94 5.9 6.26 6.63 7 6.48 5.96 5.96 5.95 5.95 5.94 5.94 5.88 5.82 5.76 5.7 5.64 5.56 5.49 5.41 5.33 5.25 5.28 5.3 5.23 5.15 5.08 5.01 4.94 4.86 4.79 4.72 4.65 4.57 4.5 4.43 4.36 4.26 4.17 4.07 3.98 3.89 3.8 3.71 3.62 3.53 3.44 3.44 3.43 3.43 3.42 3.42 3.37 3.33 3.29 3.24 3.2 3.19 3.18 3.16 3.16 3.16 3.15 3.15 3.14 3.14 3.13 3.12 3.12 3.11 3.1 3.09 3.08 3.07 3.06 3.05 3.05 3.05 3.06 3.07 3.1 3.15 3.2 3.26 3.32 3.37 3.39 3.39 3.37 3.33 3.27 3.21 3.16 3.12 3.09 3.07 3.06 3.04 3.02 2.99 2.96 2.92 2.88 2.83 2.77 2.72 2.66 2.6 2.54 2.48 2.42 2.38 2.34 2.31 2.29 2.27 2.25 2.24 2.23 2.22 2.2 2.19 2.18 2.16 2.15 +Armenia 7.8 7.8 7.81 7.81 7.81 7.82 7.82 7.82 7.83 7.83 7.83 7.83 7.84 7.84 7.84 7.85 7.85 7.85 7.86 7.86 7.86 7.87 7.87 7.87 7.88 7.88 7.88 7.89 7.89 7.89 7.89 7.9 7.9 7.9 7.91 7.91 7.91 7.92 7.92 7.92 7.93 7.93 7.93 7.94 7.94 7.94 7.95 7.95 7.95 7.95 7.96 7.96 7.96 7.97 7.97 7.97 7.98 7.98 7.98 7.99 7.99 7.99 8 8 8 8.01 8.01 8.01 8.01 8.02 8.02 8.02 8.03 8.03 8.03 8.04 8.04 8.04 8.05 8.05 8.05 8.06 8.06 8.06 8.07 8.07 8.07 8.07 8.08 8.08 8.08 8.09 8.09 8.09 8.1 8.1 8.09 8.08 8.07 8.06 8.05 8.04 8.03 8.02 8.01 8 7.99 7.98 7.97 7.96 7.95 7.94 7.93 7.92 7.91 7.9 7.89 7.88 7.87 7.86 7.85 7.84 7.83 7.82 7.81 7.8 7.65 7.5 7.34 7.19 7.04 6.89 6.74 6.58 6.43 6.28 6.13 5.98 5.82 5.67 5.52 4.56 3.34 1.82 1.74 2.39 3.58 4.1 3.63 4.05 4.53 4.51 4.49 4.48 4.48 4.49 4.51 4.53 4.55 4.56 4.55 4.51 4.44 4.32 4.16 3.98 3.79 3.61 3.45 3.31 3.21 3.12 3.03 2.94 2.85 2.75 2.65 2.56 2.48 2.42 2.39 2.37 2.38 2.41 2.44 2.48 2.52 2.55 2.57 2.57 2.54 2.48 2.4 2.3 2.18 1.8 1.8 1.7 1.5 1.4 1.3 1.2 1.2 1.4 1.4 1.4 1.3 1.4 1.4 1.6 1.55 1.5 1.47 1.44 1.42 1.41 +Australia 6.5 6.48 6.46 6.44 6.42 6.4 6.38 6.36 6.34 6.32 6.3 6.28 6.26 6.24 6.22 6.2 6.18 6.16 6.14 6.12 6.1 6.08 6.06 6.04 6.02 6 5.96 5.92 5.87 5.83 5.79 5.75 5.7 5.66 5.62 5.58 5.54 5.49 5.45 5.41 5.37 5.32 5.28 5.24 5.2 5.16 5.11 5.07 5.03 4.99 4.94 5.01 4.7 5.03 4.86 5.32 5.19 5.63 5.71 5.75 5.71 5.67 5.8 5.59 5.75 5.64 5.33 5.41 5.43 5.19 5.19 5.09 4.97 5.01 4.93 4.81 4.81 4.69 4.74 4.8 4.73 4.73 4.62 4.66 4.77 4.78 4.74 4.77 4.76 4.65 4.69 4.62 4.52 4.4 4.13 4.07 3.81 3.78 3.64 3.66 3.66 3.64 3.58 3.39 3.54 3.51 3.35 3.35 3.35 3.35 3.35 3.51 3.51 3.51 3.51 3.51 3.07 3.07 3.07 3.07 3.07 3.12 3.11 3.02 2.97 2.95 2.85 2.8 2.77 2.64 2.58 2.36 2.19 2.17 2.11 2.12 2.18 2.21 2.21 2.22 2.26 2.36 2.38 2.57 2.63 2.74 2.99 3.08 2.99 2.99 3.07 3.06 3.18 3.19 3.19 3.28 3.33 3.42 3.42 3.44 3.45 3.55 3.43 3.34 3.15 2.97 2.89 2.85 2.89 2.89 2.86 2.95 2.74 2.49 2.32 2.15 2.06 2.01 1.95 1.91 1.89 1.94 1.93 1.92 1.84 1.92 1.87 1.85 1.83 1.84 1.9 1.85 1.89 1.86 1.84 1.82 1.8 1.78 1.76 1.76 1.76 1.73 1.76 1.75 1.76 1.79 1.82 1.92 1.96 1.9 1.89 1.88 1.89 1.88 1.88 1.88 +Austria 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.1 5.06 5.02 4.98 4.94 4.89 4.85 4.81 4.77 4.73 4.69 4.65 4.75 4.83 4.8 4.81 4.92 4.72 4.61 4.61 4.62 4.55 4.56 4.51 4.58 4.49 4.51 4.49 4.43 4.44 4.24 4.48 4.31 4.36 4.34 4.4 4.4 4.33 4.35 4.35 4.33 4.34 4.35 4.13 4.17 3.99 4.01 3.89 3.83 3.8 3.69 3.5 3.5 3.33 3.2 3.07 2.94 2.81 2.68 2.55 3.14 3.21 3.19 3.1 2.99 2.85 2.66 2.47 2.43 2.32 2.32 2.19 2.1 1.97 1.87 1.81 1.8 1.54 1.92 2.86 2.7 2.53 2.37 2.21 2.04 1.88 1.88 1.87 1.87 1.87 1.87 2.02 2.06 2.09 2.16 2.29 2.49 2.57 2.6 2.69 2.7 2.79 2.8 2.82 2.8 2.7 2.66 2.62 2.59 2.49 2.29 2.2 2.09 1.94 1.91 1.83 1.69 1.63 1.6 1.6 1.65 1.67 1.66 1.56 1.52 1.47 1.45 1.43 1.45 1.45 1.46 1.51 1.51 1.5 1.47 1.42 1.45 1.39 1.37 1.34 1.37 1.33 1.39 1.38 1.42 1.41 1.41 1.38 1.41 1.39 1.44 1.44 1.46 1.47 1.48 1.5 +Azerbaijan 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.1 8.07 8.04 8.01 7.98 7.95 7.92 7.89 7.86 7.83 7.8 7.77 7.74 7.71 7.68 7.65 7.62 7.59 7.56 7.53 7.5 7.47 7.44 7.41 7.38 7.35 7.32 7.29 7.26 7.23 7.2 7.14 7.08 7.01 6.95 6.89 6.83 6.76 6.7 6.64 6.58 6.52 6.45 6.39 6.33 6.27 6.2 6.14 6.08 6.02 5.96 5.89 5.83 5.77 5.71 5.64 5.59 5.51 5.44 5.41 5.39 5.4 5.43 5.48 5.53 5.57 5.6 5.59 5.55 5.47 5.35 5.21 5.06 4.9 4.75 4.61 4.48 4.35 4.22 4.08 3.95 3.81 3.68 3.54 3.41 3.29 3.18 3.09 3.03 2.98 2.95 2.95 2.95 2.96 2.97 2.97 2.94 2.88 2.8 2.69 2.56 2.43 2.3 2.19 2.11 2.05 2.01 2 1.99 1.99 1.99 1.99 1.99 1.99 1.98 1.97 1.96 1.94 1.92 1.91 1.89 +Bahamas 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.82 5.75 5.67 5.59 5.52 5.44 5.36 5.28 5.21 5.13 5.05 4.98 4.9 4.82 4.75 4.67 4.59 4.52 4.44 4.36 4.29 4.21 4.13 4.05 3.98 3.99 4.02 4.06 4.12 4.18 4.25 4.32 4.4 4.46 4.5 4.5 4.45 4.36 4.22 4.06 3.89 3.75 3.64 3.57 3.53 3.5 3.47 3.41 3.33 3.23 3.14 3.06 3.01 2.99 2.99 2.99 2.99 2.97 2.92 2.86 2.79 2.73 2.68 2.65 2.64 2.63 2.62 2.6 2.57 2.51 2.44 2.36 2.26 2.17 2.07 1.99 1.92 1.88 1.86 1.85 1.86 1.88 1.89 1.9 1.9 1.9 1.89 1.89 1.88 1.88 +Bahrain 7.03 7.03 7.03 7.03 7.03 7.03 7.03 7.03 7.03 7.03 7.03 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.02 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.98 6.98 6.98 6.98 6.99 6.99 6.99 6.99 7 7 7 7 7.01 7.01 7.01 7.01 7.02 7.02 7.02 7.02 7.03 7.03 7.03 7.01 6.97 6.95 6.94 6.94 6.95 6.97 7.01 7.05 7.09 7.13 7.17 7.19 7.19 7.17 7.1 7 6.86 6.69 6.5 6.29 6.09 5.9 5.72 5.56 5.41 5.28 5.16 5.04 4.92 4.8 4.69 4.58 4.47 4.36 4.25 4.13 4 3.87 3.74 3.6 3.47 3.34 3.21 3.1 3.01 2.93 2.86 2.81 2.77 2.72 2.67 2.6 2.53 2.45 2.37 2.29 2.23 2.18 2.14 2.12 2.09 2.08 2.05 2.03 +Bangladesh 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.7 6.68 6.66 6.64 6.63 6.61 6.59 6.57 6.55 6.53 6.51 6.49 6.48 6.46 6.44 6.42 6.4 6.38 6.36 6.35 6.33 6.31 6.29 6.27 6.25 6.23 6.27 6.33 6.39 6.45 6.5 6.56 6.6 6.65 6.69 6.73 6.76 6.79 6.83 6.85 6.88 6.9 6.92 6.94 6.95 6.95 6.94 6.93 6.9 6.87 6.82 6.76 6.68 6.59 6.48 6.36 6.22 6.06 5.89 5.71 5.52 5.33 5.13 4.93 4.74 4.55 4.37 4.2 4.03 3.88 3.73 3.6 3.47 3.35 3.23 3.12 3.01 2.91 2.8 2.7 2.61 2.52 2.44 2.38 2.32 2.28 2.24 2.21 2.18 2.15 2.12 +Barbados 4.96 4.93 4.9 4.87 4.84 4.82 4.79 4.76 4.73 4.7 4.68 4.65 4.62 4.59 4.56 4.53 4.51 4.48 4.45 4.51 4.58 4.64 4.7 4.77 4.83 4.89 4.96 5.02 5.08 5.15 5.21 5.27 5.34 5.4 5.4 5.39 5.39 5.38 5.38 5.37 5.37 5.36 5.36 5.35 5.35 5.34 5.34 5.33 5.33 5.32 5.32 5.31 5.31 5.3 5.3 5.29 5.29 5.28 5.28 5.27 5.27 5.26 5.26 5.25 5.25 5.24 5.24 5.23 5.23 5.22 5.22 5.21 5.21 5.2 5.2 5.19 5.18 5.18 5.17 5.17 5.16 5.16 5.15 5.15 5.14 5.14 5.13 5.13 5.12 5.12 5.11 5.11 5.1 5.1 5.09 5.09 5.08 5.08 5.07 5.07 5.06 5.06 5.05 5.05 5.04 5.04 5.03 5.03 5.02 5.02 5.01 5.01 5 5 4.99 4.99 4.98 4.99 5 5.01 5.03 4.96 4.89 4.82 4.75 4.68 4.62 4.56 4.5 4.44 4.38 4.35 4.32 4.29 4.26 4.23 4.26 4.28 4.3 4.32 4.34 4.34 4.34 4.33 4.33 4.33 4.37 4.4 4.44 4.48 4.52 4.49 4.43 4.39 4.36 4.34 4.33 4.33 4.33 4.34 4.33 4.31 4.27 4.2 4.09 3.96 3.81 3.64 3.46 3.28 3.11 2.95 2.79 2.65 2.51 2.39 2.29 2.2 2.12 2.06 2 1.96 1.92 1.89 1.86 1.83 1.81 1.78 1.77 1.75 1.74 1.73 1.73 1.73 1.72 1.73 1.73 1.74 1.75 1.76 1.77 1.78 1.79 1.8 1.81 1.82 1.82 1.83 1.83 1.84 1.84 1.84 1.85 1.85 1.85 1.86 +Belarus 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 6.95 6.89 6.84 6.78 6.73 6.68 6.62 6.57 6.51 6.46 6.41 6.35 6.3 6.24 6.19 6.14 6.08 6.05 6.02 5.99 5.96 5.92 5.89 5.86 5.83 5.8 5.77 5.73 5.7 5.67 5.64 5.61 5.58 5.54 5.51 5.48 5.45 5.42 5.38 5.35 5.32 5.29 5.26 5.23 5.19 5.16 5.05 4.94 4.83 4.71 4.6 4.49 4.38 4.26 4.15 4.04 3.93 3.82 3.7 3.59 3.49 3.38 3.27 3.17 3.06 2.96 2.85 2.74 2.64 2.53 2.55 2.6 2.63 2.67 2.69 2.72 2.73 2.75 2.75 2.74 2.73 2.7 2.65 2.6 2.54 2.48 2.43 2.38 2.34 2.3 2.28 2.25 2.22 2.19 2.16 2.13 2.11 2.09 2.08 2.08 2.08 2.09 2.1 2.1 2.09 2.08 2.05 2.01 1.95 1.89 1.81 1.72 1.64 1.55 1.47 1.4 1.34 1.29 1.25 1.23 1.22 1.23 1.25 1.28 1.32 1.35 1.39 1.42 1.44 1.46 1.47 1.48 1.49 1.5 1.51 +Belgium 4.85 4.85 4.84 4.84 4.83 4.83 4.82 4.82 4.82 4.81 4.81 4.8 4.8 4.79 4.79 4.78 4.78 4.78 4.77 4.77 4.76 4.76 4.75 4.75 4.75 4.74 4.74 4.73 4.73 4.72 4.72 4.77 4.82 4.87 4.92 4.97 4.97 4.98 4.98 4.99 5 4.94 4.88 4.82 4.76 4.7 4.64 4.58 4.51 4.45 4.38 4.32 4.25 4.18 4.25 4.31 4.38 4.44 4.51 4.53 4.56 4.58 4.61 4.63 4.66 4.68 4.71 4.73 4.76 4.78 4.8 4.83 4.85 4.87 4.85 4.83 4.82 4.8 4.78 4.75 4.71 4.68 4.64 4.61 4.55 4.49 4.42 4.36 4.3 4.27 4.25 4.22 4.2 4.17 4.13 4.09 4.06 4.02 3.98 3.91 3.84 3.79 3.73 3.68 3.63 3.57 3.52 3.47 3.42 3.36 3.31 3.26 3.2 3.15 3.1 3.04 2.99 2.94 2.89 2.83 2.78 2.73 2.67 2.62 2.57 2.51 2.46 2.41 2.36 2.3 2.25 2.22 2.19 2.08 2.04 1.94 1.95 1.99 2.11 2.1 1.84 1.66 1.81 2.06 2.12 2.17 2.53 2.47 2.45 2.39 2.3 2.31 2.33 2.35 2.38 2.42 2.45 2.49 2.53 2.57 2.6 2.63 2.63 2.63 2.6 2.56 2.5 2.43 2.36 2.28 2.21 2.13 2.05 1.98 1.91 1.84 1.78 1.73 1.69 1.66 1.63 1.61 1.59 1.58 1.57 1.56 1.56 1.56 1.57 1.57 1.58 1.59 1.6 1.6 1.61 1.61 1.61 1.61 1.61 1.62 1.63 1.65 1.68 1.7 1.73 1.75 1.78 1.8 1.82 1.83 1.84 1.85 1.85 1.85 1.86 1.86 +Belize 6.69 6.69 6.69 6.69 6.69 6.69 6.69 6.69 6.69 6.69 6.69 6.69 6.69 6.69 6.69 6.69 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.68 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.66 6.66 6.66 6.66 6.66 6.66 6.67 6.67 6.67 6.67 6.67 6.67 6.68 6.68 6.68 6.68 6.68 6.68 6.69 6.69 6.69 6.69 6.68 6.66 6.64 6.62 6.6 6.58 6.56 6.54 6.52 6.5 6.48 6.46 6.44 6.42 6.4 6.38 6.36 6.34 6.32 6.3 6.29 6.28 6.29 6.29 6.28 6.25 6.2 6.11 5.99 5.85 5.68 5.51 5.34 5.17 5.02 4.89 4.77 4.67 4.58 4.51 4.44 4.36 4.29 4.2 4.11 4.01 3.91 3.8 3.7 3.59 3.49 3.4 3.3 3.21 3.12 3.04 2.97 2.91 2.85 2.8 2.76 2.72 2.68 2.64 2.6 +Benin 5.55 5.55 5.55 5.55 5.55 5.55 5.56 5.56 5.56 5.56 5.56 5.56 5.56 5.56 5.56 5.56 5.56 5.56 5.57 5.57 5.57 5.57 5.57 5.57 5.57 5.57 5.57 5.57 5.57 5.58 5.58 5.58 5.58 5.58 5.58 5.58 5.58 5.58 5.58 5.58 5.59 5.59 5.59 5.59 5.59 5.59 5.59 5.59 5.59 5.59 5.59 5.59 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.6 5.61 5.61 5.61 5.61 5.61 5.61 5.61 5.61 5.61 5.61 5.61 5.62 5.62 5.62 5.62 5.62 5.62 5.62 5.62 5.62 5.62 5.62 5.62 5.63 5.63 5.63 5.63 5.63 5.63 5.63 5.63 5.63 5.63 5.63 5.64 5.64 5.64 5.64 5.64 5.64 5.64 5.64 5.64 5.64 5.64 5.65 5.65 5.65 5.65 5.65 5.65 5.65 5.65 5.65 5.65 5.65 5.65 5.66 5.66 5.66 5.66 5.66 5.66 5.66 5.67 5.67 5.67 5.68 5.68 5.69 5.69 5.69 5.7 5.7 5.7 5.71 5.71 5.71 5.72 5.72 5.73 5.73 5.73 5.74 5.74 5.74 5.75 5.75 5.78 5.83 5.88 5.94 5.99 6.05 6.11 6.17 6.23 6.28 6.34 6.39 6.45 6.5 6.54 6.59 6.63 6.67 6.71 6.75 6.79 6.82 6.86 6.9 6.93 6.96 6.98 7 7.02 7.03 7.03 7.02 7.01 6.99 6.97 6.94 6.9 6.86 6.81 6.74 6.68 6.6 6.53 6.45 6.37 6.28 6.21 6.13 6.05 5.98 5.9 5.82 5.73 5.65 5.55 5.46 5.37 5.27 5.18 5.1 5.01 4.93 4.85 4.77 4.69 +Bhutan 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.68 6.69 6.69 6.69 6.69 6.67 6.64 6.6 6.55 6.5 6.46 6.41 6.36 6.31 6.23 6.13 5.99 5.83 5.64 5.43 5.22 5 4.8 4.6 4.4 4.21 4.01 3.81 3.61 3.42 3.24 3.07 2.92 2.79 2.68 2.59 2.51 2.44 2.38 2.32 2.28 2.23 2.19 2.15 +Bolivia 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.49 6.5 6.52 6.53 6.54 6.55 6.56 6.57 6.59 6.6 6.61 6.62 6.63 6.65 6.66 6.67 6.68 6.69 6.7 6.72 6.73 6.75 6.76 6.77 6.77 6.77 6.75 6.74 6.72 6.7 6.67 6.65 6.63 6.61 6.59 6.59 6.59 6.59 6.59 6.58 6.55 6.5 6.42 6.31 6.18 6.04 5.9 5.76 5.63 5.52 5.42 5.34 5.26 5.19 5.13 5.07 5.03 4.99 4.95 4.91 4.87 4.81 4.74 4.66 4.58 4.48 4.39 4.3 4.22 4.14 4.06 3.98 3.9 3.81 3.72 3.63 3.55 3.48 3.41 3.36 3.31 3.26 3.22 3.18 3.14 +Bosnia and Herzegovina 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.91 5.87 5.83 5.78 5.74 5.7 5.66 5.61 5.57 5.53 5.49 5.44 5.4 5.4 5.39 5.39 5.38 5.38 5.38 5.37 5.37 5.36 5.36 5.35 5.35 5.35 5.34 5.34 5.33 5.33 5.33 5.32 5.32 5.31 5.31 5.3 5.3 5.3 5.29 5.29 5.28 5.28 5.28 5.27 5.27 5.26 5.26 5.25 5.25 5.25 5.24 5.24 5.23 5.23 5.23 5.22 5.22 5.21 5.21 5.2 5.2 5.2 5.19 5.19 5.19 5.18 5.18 5.18 5.17 5.17 5.17 5.16 5.16 5.16 5.15 5.15 5.14 5.14 5.14 5.13 5.13 5.13 5.12 5.12 5.12 5.11 5.11 5.11 5.1 5.1 5.1 5.09 5.09 5.09 5.08 5.08 5.08 5.07 5.07 5.07 5.06 5 4.88 4.76 4.64 4.54 4.43 4.34 4.24 4.15 4.05 3.95 3.85 3.74 3.62 3.5 3.37 3.24 3.11 2.99 2.88 2.78 2.68 2.58 2.49 2.41 2.34 2.27 2.2 2.14 2.09 2.05 2.02 1.99 1.97 1.95 1.93 1.89 1.84 1.78 1.71 1.65 1.59 1.56 1.54 1.53 1.52 1.5 1.47 1.43 1.38 1.33 1.28 1.24 1.21 1.2 1.2 1.21 1.22 1.23 1.24 1.26 1.27 1.28 1.3 1.32 +Botswana 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.47 6.47 6.47 6.47 6.47 6.48 6.49 6.51 6.52 6.54 6.55 6.57 6.58 6.6 6.62 6.63 6.65 6.67 6.68 6.69 6.7 6.7 6.69 6.67 6.64 6.61 6.58 6.55 6.51 6.48 6.44 6.4 6.35 6.29 6.22 6.13 6.01 5.88 5.73 5.57 5.39 5.21 5.04 4.86 4.7 4.54 4.39 4.25 4.12 3.99 3.87 3.75 3.63 3.52 3.41 3.32 3.23 3.15 3.08 3.02 2.96 2.91 2.86 2.81 2.76 2.71 2.67 2.62 2.58 2.54 +Brazil 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.26 6.27 6.27 6.28 6.29 6.29 6.3 6.29 6.28 6.27 6.26 6.25 6.24 6.23 6.22 6.21 6.2 6.19 6.18 6.17 6.16 6.11 6.05 5.99 5.93 5.88 5.82 5.76 5.78 5.8 5.81 5.83 5.85 5.86 5.88 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.92 5.95 5.98 6.01 6.04 6.07 6.09 6.12 6.15 6.18 6.17 6.15 6.14 6.14 6.14 6.16 6.18 6.2 6.21 6.21 6.19 6.14 6.06 5.95 5.82 5.66 5.49 5.33 5.17 5.02 4.9 4.78 4.68 4.59 4.5 4.42 4.34 4.26 4.17 4.07 3.97 3.85 3.72 3.59 3.45 3.31 3.17 3.04 2.92 2.81 2.72 2.64 2.58 2.54 2.5 2.47 2.45 2.43 2.4 2.36 2.32 2.26 2.2 2.14 2.07 2 1.94 1.9 1.86 1.84 1.82 1.81 1.8 1.79 1.78 +Brunei 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.06 7.08 7.1 7.11 7.13 7.15 7.17 7.19 7.21 7.22 7.24 7.26 7.28 7.3 7.32 7.33 7.35 7.37 7.39 7.41 7.43 7.44 7.46 7.48 7.5 7.52 7.36 7.07 6.84 6.66 6.54 6.47 6.44 6.44 6.47 6.49 6.49 6.45 6.36 6.23 6.07 5.92 5.8 5.74 5.73 5.75 5.77 5.76 5.69 5.56 5.37 5.13 4.88 4.65 4.43 4.25 4.1 3.99 3.91 3.84 3.79 3.76 3.72 3.67 3.61 3.53 3.44 3.32 3.2 3.06 2.93 2.8 2.68 2.57 2.48 2.4 2.34 2.29 2.25 2.21 2.18 2.15 2.12 2.1 2.07 2.05 2.03 2.01 1.99 1.98 1.96 +Bulgaria 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.05 4.95 4.84 4.73 4.62 4.52 4.92 5.16 5.16 5.04 4.37 5.15 5.05 4.92 4.7 5.24 4.82 4.69 5.09 5.45 5.55 5.7 5.28 5.45 5.67 5.7 5.73 5.76 5.8 5.83 5.77 5.72 5.66 5.6 5.55 5.52 5.48 5.45 5.42 5.39 5.38 5.37 5.36 5.35 5.35 5.27 5.19 5.11 5.03 4.94 4.8 4.65 4.5 4.36 4.21 4.07 3.94 3.81 3.67 3.54 3.43 3.31 3.2 3.09 2.97 3.03 3.08 3.13 3.18 3.23 3.12 3 2.89 2.77 2.66 2.62 2.55 2.49 2.43 2.39 2.35 2.31 2.29 2.26 2.25 2.23 2.21 2.2 2.18 2.17 2.15 2.14 2.13 2.13 2.14 2.14 2.16 2.17 2.18 2.19 2.19 2.18 2.17 2.14 2.11 2.08 2.06 2.03 2.02 2 1.98 1.94 1.9 1.84 1.77 1.69 1.6 1.51 1.42 1.34 1.28 1.23 1.2 1.18 1.18 1.2 1.22 1.25 1.29 1.33 1.37 1.4 1.43 1.46 1.49 1.51 1.52 1.54 1.56 1.57 +Burkina Faso 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.08 6.08 6.08 6.08 6.08 6.08 6.08 6.08 6.08 6.08 6.08 6.08 6.08 6.08 6.08 6.09 6.09 6.09 6.09 6.09 6.09 6.09 6.09 6.09 6.09 6.09 6.09 6.09 6.09 6.09 6.09 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.1 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.1 6.1 6.1 6.09 6.09 6.09 6.09 6.08 6.08 6.08 6.07 6.07 6.07 6.06 6.06 6.06 6.06 6.05 6.05 6.05 6.04 6.04 6.04 6.03 6.05 6.09 6.12 6.15 6.18 6.21 6.23 6.25 6.27 6.29 6.32 6.34 6.38 6.41 6.45 6.49 6.53 6.56 6.59 6.62 6.66 6.7 6.74 6.8 6.86 6.92 6.98 7.04 7.09 7.13 7.15 7.17 7.17 7.16 7.14 7.12 7.09 7.06 7.04 7.01 6.98 6.95 6.92 6.88 6.84 6.8 6.75 6.7 6.65 6.59 6.53 6.47 6.4 6.34 6.27 6.19 6.12 6.04 5.95 5.87 5.78 5.69 5.61 5.52 5.43 +Burundi 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.81 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.81 6.8 6.79 6.79 6.8 6.82 6.85 6.88 6.91 6.95 7 7.05 7.09 7.14 7.18 7.22 7.25 7.27 7.29 7.31 7.33 7.35 7.37 7.4 7.42 7.44 7.45 7.46 7.46 7.45 7.45 7.45 7.47 7.49 7.52 7.55 7.57 7.57 7.56 7.54 7.51 7.47 7.42 7.37 7.32 7.27 7.22 7.17 7.11 7.06 7 6.94 6.87 6.8 6.73 6.65 6.57 6.48 6.39 6.3 6.21 6.12 6.03 5.94 5.85 +Cambodia 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.96 6.96 6.97 6.97 6.96 6.96 6.94 6.91 6.87 6.82 6.75 6.67 6.58 6.48 6.34 6.17 5.99 5.8 5.62 5.5 5.44 5.46 5.55 5.69 5.85 6.01 6.13 6.2 6.21 6.16 6.07 5.94 5.79 5.62 5.44 5.24 5.03 4.83 4.62 4.42 4.24 4.06 3.9 3.75 3.62 3.5 3.4 3.31 3.23 3.16 3.1 3.05 3.01 2.97 2.93 2.89 2.86 2.83 2.8 +Cameroon 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.54 5.52 5.49 5.47 5.47 5.47 5.49 5.51 5.55 5.59 5.65 5.71 5.77 5.83 5.89 5.95 6.01 6.06 6.11 6.16 6.21 6.25 6.29 6.32 6.36 6.39 6.43 6.47 6.52 6.56 6.61 6.65 6.68 6.7 6.71 6.7 6.67 6.63 6.57 6.51 6.43 6.35 6.26 6.17 6.08 5.99 5.9 5.82 5.75 5.68 5.62 5.57 5.52 5.46 5.41 5.36 5.3 5.24 5.17 5.09 5.02 4.94 4.86 4.78 4.7 4.63 +Canada 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.63 5.54 5.44 5.35 5.26 5.17 5.07 4.98 4.89 4.8 4.77 4.75 4.72 4.7 4.68 4.65 4.63 4.6 4.58 4.56 4.52 4.49 4.45 4.42 4.38 4.35 4.31 4.27 4.24 4.2 4.19 4.17 4.15 4.13 4.11 4.1 4.08 4.06 4.04 4.02 4.03 4.03 4.03 4.03 4.04 4.04 4.04 4.04 4.05 4.05 4 3.95 3.89 3.84 3.79 3.74 3.68 3.63 3.58 3.53 3.4 3.23 3.22 3.13 3.35 3.32 3.29 3.22 3.28 3.19 3.08 2.86 2.8 2.75 2.69 2.64 2.7 2.65 2.76 2.82 2.95 3.03 3 3 3.36 3.58 3.42 3.44 3.43 3.47 3.62 3.7 3.81 3.81 3.84 3.93 3.89 3.94 3.91 3.85 3.77 3.68 3.51 3.15 2.81 2.6 2.46 2.41 2.31 2.14 1.97 1.88 1.83 1.83 1.78 1.75 1.7 1.7 1.68 1.65 1.64 1.62 1.62 1.61 1.59 1.58 1.6 1.66 1.72 1.71 1.71 1.68 1.69 1.67 1.63 1.57 1.56 1.54 1.51 1.54 1.51 1.54 1.55 1.57 1.61 1.66 1.68 1.67 1.63 1.61 1.66 1.67 1.68 1.68 +Cape Verde 6.43 6.43 6.43 6.43 6.44 6.44 6.44 6.44 6.44 6.44 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.46 6.46 6.46 6.46 6.46 6.46 6.46 6.47 6.47 6.47 6.47 6.47 6.47 6.48 6.48 6.48 6.48 6.48 6.48 6.48 6.49 6.49 6.49 6.49 6.49 6.49 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.51 6.51 6.51 6.51 6.51 6.51 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.53 6.53 6.53 6.53 6.53 6.53 6.53 6.54 6.54 6.54 6.54 6.54 6.54 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.56 6.56 6.56 6.56 6.56 6.56 6.57 6.57 6.57 6.57 6.57 6.57 6.57 6.58 6.58 6.58 6.58 6.58 6.58 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.61 6.61 6.61 6.61 6.61 6.61 6.62 6.62 6.62 6.62 6.62 6.61 6.61 6.6 6.6 6.59 6.59 6.58 6.58 6.57 6.57 6.56 6.56 6.55 6.55 6.54 6.54 6.53 6.53 6.52 6.52 6.51 6.51 6.5 6.5 6.51 6.55 6.58 6.62 6.66 6.71 6.75 6.8 6.84 6.89 6.92 6.95 6.98 6.99 6.99 6.99 6.98 6.97 6.95 6.94 6.91 6.89 6.86 6.82 6.77 6.71 6.65 6.56 6.47 6.38 6.27 6.17 6.08 5.98 5.88 5.78 5.68 5.57 5.44 5.31 5.16 5.02 4.86 4.71 4.55 4.39 4.22 4.05 3.88 3.7 3.53 3.36 3.19 3.04 2.9 2.77 2.66 2.57 2.49 2.43 2.38 2.33 2.29 2.26 2.22 +Chad 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.07 6.09 6.11 6.13 6.15 6.17 6.19 6.21 6.23 6.25 6.27 6.29 6.3 6.32 6.34 6.36 6.39 6.43 6.48 6.53 6.58 6.64 6.69 6.74 6.78 6.82 6.86 6.89 6.93 6.96 6.99 7.02 7.06 7.09 7.12 7.16 7.2 7.24 7.28 7.31 7.35 7.38 7.4 7.42 7.43 7.43 7.42 7.41 7.38 7.35 7.32 7.27 7.21 7.15 7.07 6.99 6.9 6.81 6.7 6.6 6.49 6.38 6.26 6.15 6.04 +Chile 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 6 6.02 6.05 6.07 6.09 6.11 6.13 6.16 6.18 6.2 6.22 6.24 5.99 5.8 5.99 6.1 6 5.57 5.57 6.38 5.31 5.47 5.47 5.67 4.82 5.15 5.29 5.53 5.64 5.67 5.56 5.91 6.02 5.99 5.71 5.44 5.21 4.89 5.44 5.12 6.19 5.61 5.72 5.4 3.46 4.29 4.42 4.74 5.19 5.04 4.6 5.13 5.05 5.29 4.85 4.64 4.66 4.44 4.49 5.11 5.72 6.34 6.3 6.25 6.21 6.17 6.12 6.13 6.14 6.15 6.16 6.16 6.08 6 5.92 5.84 5.76 5.75 5.73 5.71 5.7 5.68 5.67 5.65 5.64 5.63 5.61 5.58 5.54 5.5 5.46 5.43 5.32 5.22 5.11 5.01 4.9 4.9 4.89 4.89 4.88 4.88 4.86 4.84 4.82 4.8 4.78 4.73 4.67 4.62 4.71 4.88 5.04 5.18 5.3 5.41 5.49 5.55 5.58 5.58 5.54 5.46 5.34 5.19 5 4.8 4.59 4.39 4.2 4.02 3.85 3.68 3.5 3.33 3.16 3.01 2.89 2.79 2.72 2.68 2.66 2.65 2.65 2.66 2.66 2.66 2.65 2.65 2.64 2.62 2.6 2.56 2.51 2.45 2.39 2.32 2.25 2.19 2.14 2.09 2.05 2.01 1.99 1.96 1.94 1.92 1.9 1.89 1.87 1.86 1.84 1.83 1.82 1.81 1.8 +China 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.48 5.45 5.43 5.4 5.38 5.35 5.33 5.3 5.28 5.25 5.15 5.06 4.96 4.86 4.77 5 5.2 4.91 5.54 5.29 5.26 5.97 5.67 5.96 5.98 5.61 6.21 5.5 4.27 3.99 3.28 5.97 7.41 6.12 6.02 6.21 5.25 6.37 5.67 5.75 5.4 4.92 4.51 4.15 3.58 3.25 2.87 2.74 2.8 2.32 2.71 2.62 2.56 2.6 2.65 2.68 2.68 2.63 2.55 2.43 2.28 2.11 1.95 1.81 1.68 1.59 1.52 1.48 1.45 1.45 1.46 1.47 1.49 1.5 1.51 1.52 1.53 1.53 1.54 1.54 1.54 1.55 1.56 1.56 1.57 +Colombia 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.21 6.23 6.25 6.27 6.29 6.32 6.34 6.34 6.34 6.34 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.36 6.38 6.39 6.41 6.42 6.43 6.44 6.45 6.46 6.47 6.42 6.37 6.33 6.28 6.24 6.22 6.19 6.17 6.15 6.13 6.13 6.12 6.12 6.11 6.11 6.13 6.16 6.19 6.22 6.25 6.42 6.6 6.78 6.77 6.76 6.75 6.75 6.76 6.77 6.78 6.79 6.8 6.81 6.8 6.78 6.73 6.66 6.56 6.42 6.25 6.05 5.83 5.6 5.37 5.15 4.96 4.78 4.63 4.5 4.37 4.25 4.12 3.99 3.87 3.74 3.63 3.53 3.43 3.35 3.28 3.21 3.16 3.1 3.06 3.01 2.97 2.92 2.87 2.82 2.78 2.73 2.68 2.64 2.6 2.57 2.54 2.52 2.5 2.48 2.45 2.43 2.41 2.38 2.35 2.32 2.29 2.26 2.23 +Comoros 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6.01 6 5.98 5.97 5.96 5.95 5.93 5.92 5.91 5.89 5.88 5.87 5.85 5.84 5.83 5.82 5.8 5.79 5.78 5.76 5.75 5.74 5.72 5.71 5.7 5.69 5.77 5.93 6.09 6.22 6.35 6.46 6.56 6.65 6.73 6.79 6.85 6.9 6.94 6.98 7 7.03 7.04 7.06 7.06 7.06 7.06 7.06 7.06 7.05 7.05 7.07 7.08 7.11 7.13 7.13 7.1 7.03 6.92 6.77 6.58 6.36 6.14 5.93 5.74 5.57 5.45 5.36 5.29 5.26 5.25 5.25 5.27 5.29 5.31 5.32 5.31 5.3 5.28 5.25 5.22 5.17 5.11 5.05 4.99 4.92 4.85 4.78 4.71 4.65 4.58 +Congo, Dem. Rep. 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.98 5.98 5.97 5.97 5.97 5.98 5.98 5.99 6 6.02 6.03 6.05 6.07 6.09 6.11 6.14 6.16 6.19 6.21 6.24 6.27 6.3 6.33 6.37 6.4 6.44 6.49 6.54 6.59 6.64 6.69 6.74 6.79 6.85 6.9 6.96 7.02 7.08 7.13 7.18 7.22 7.25 7.27 7.27 7.25 7.23 7.19 7.14 7.09 7.03 6.96 6.89 6.81 6.73 6.64 6.55 6.45 6.35 6.25 6.15 6.04 5.93 5.83 5.72 +Congo, Rep. 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.68 5.69 5.7 5.72 5.74 5.77 5.8 5.84 5.88 5.92 5.97 6.01 6.06 6.1 6.14 6.17 6.21 6.24 6.26 6.28 6.3 6.31 6.32 6.33 6.32 6.3 6.27 6.23 6.18 6.11 6.04 5.95 5.86 5.77 5.68 5.59 5.5 5.42 5.35 5.29 5.24 5.2 5.17 5.15 5.15 5.14 5.14 5.14 5.13 5.13 5.13 5.13 5.12 5.12 5.11 5.11 5.1 5.09 5.07 5.05 5.01 4.97 4.92 4.86 +Costa Rica 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.92 6.92 6.92 6.92 6.91 6.91 6.91 6.91 6.9 6.9 6.92 6.94 6.96 6.98 7.01 7.01 7.02 7.02 7.03 7.04 7.07 7.11 7.15 7.19 7.23 7.25 7.27 7.29 7.31 7.34 7.21 7.08 6.96 6.83 6.71 6.71 6.72 6.72 6.73 6.74 6.77 6.81 6.85 6.89 6.93 6.88 6.83 6.79 6.74 6.69 6.65 6.61 6.57 6.53 6.5 6.6 6.7 6.8 6.84 6.89 6.93 6.98 7.02 6.93 6.83 6.74 6.64 6.55 6.59 6.68 6.77 6.86 6.95 7.05 7.14 7.22 7.28 7.31 7.3 7.22 7.09 6.89 6.63 6.33 6 5.66 5.32 5.01 4.73 4.49 4.28 4.11 3.97 3.86 3.78 3.72 3.67 3.62 3.58 3.54 3.52 3.49 3.46 3.43 3.38 3.32 3.25 3.18 3.09 3 2.92 2.84 2.76 2.69 2.62 2.55 2.48 2.41 2.35 2.28 2.2 2.13 2.07 2.01 1.95 1.91 1.87 1.85 1.83 1.81 1.8 1.78 1.77 +Cote d'Ivoire 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.77 6.77 6.76 6.75 6.75 6.74 6.74 6.73 6.72 6.72 6.71 6.7 6.7 6.69 6.69 6.68 6.67 6.67 6.66 6.65 6.65 6.64 6.63 6.63 6.62 6.66 6.74 6.81 6.89 6.97 7.04 7.12 7.2 7.27 7.35 7.43 7.5 7.57 7.64 7.7 7.76 7.81 7.85 7.88 7.91 7.93 7.94 7.94 7.93 7.92 7.88 7.84 7.77 7.7 7.6 7.5 7.38 7.26 7.14 7.01 6.88 6.75 6.62 6.49 6.36 6.23 6.11 6.01 5.9 5.81 5.72 5.63 5.55 5.46 5.38 5.29 5.21 5.13 5.06 5 4.96 4.93 4.91 4.91 4.91 4.91 4.89 4.87 4.82 4.76 +Croatia 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.86 5.96 6.07 6.18 6 5.83 5.65 5.48 5.31 5.42 5.53 5.64 5.76 5.87 5.79 5.7 5.62 5.54 5.45 5.41 5.38 5.34 5.3 5.26 5.22 5.18 5.14 5.1 5.06 5.02 4.98 4.94 4.9 5 5.09 5.19 5.28 5.37 5.31 5.26 5.2 5.14 5.08 4.98 4.87 4.77 4.67 4.57 4.47 4.36 4.26 4.16 4.06 3.96 3.85 3.75 3.65 3.55 3.45 3.34 3.24 3.14 3.04 2.94 2.83 2.73 2.87 3.1 2.95 2.9 2.8 2.71 2.63 2.56 2.5 2.45 2.4 2.37 2.33 2.3 2.27 2.24 2.21 2.18 2.14 2.1 2.07 2.04 2.01 1.99 1.98 1.97 1.98 1.99 2 2.01 2.01 2.01 2 1.99 1.98 1.96 1.94 1.92 1.89 1.84 1.79 1.73 1.67 1.62 1.57 1.54 1.52 1.52 1.51 1.51 1.49 1.47 1.44 1.42 1.39 1.38 1.37 1.38 1.4 1.41 1.43 1.45 1.47 1.48 1.49 1.5 1.51 1.52 +Cuba 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.58 5.39 5.19 4.99 4.8 4.6 4.4 4.21 4.01 4.55 5.09 5.63 5.67 5.7 5.74 5.78 5.82 5.82 5.81 5.81 5.81 5.8 5.8 5.8 5.79 5.79 5.79 5.78 5.78 5.67 5.57 5.46 5.35 5.25 5.14 5.03 4.93 4.82 4.71 4.61 4.5 4.46 4.42 4.38 4.33 4.29 4.25 4.21 4.17 4.13 4.08 4.04 4 4.11 4.22 4.32 4.43 4.54 4.65 4.76 4.56 4.22 3.96 3.78 3.68 3.67 3.72 3.84 4 4.18 4.36 4.51 4.61 4.64 4.62 4.54 4.43 4.31 4.18 4.03 3.86 3.65 3.4 3.13 2.84 2.57 2.33 2.13 1.99 1.89 1.84 1.83 1.83 1.83 1.84 1.84 1.83 1.81 1.79 1.75 1.72 1.68 1.65 1.63 1.61 1.61 1.61 1.62 1.62 1.63 1.63 1.62 1.61 1.59 1.57 1.55 1.52 1.5 1.48 1.47 1.46 1.45 1.45 1.45 1.45 +Cyprus 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 5.96 5.88 5.81 5.73 5.66 5.58 5.51 5.44 5.36 5.29 5.21 5.14 5.07 4.99 4.92 4.84 4.77 4.69 4.62 4.55 4.47 4.4 4.32 4.25 4.17 4.1 4.07 4.03 4 3.97 4.03 4.1 4.17 4.23 4.3 4.36 4.42 4.48 4.54 4.6 4.48 4.36 4.25 4.13 4.01 3.9 3.78 3.66 3.55 3.43 3.6 3.78 3.95 4.13 4.3 4.31 4.31 4.32 4.32 4.33 4.35 4.37 4.39 4.41 4.44 4.37 4.3 4.23 4.16 4.09 4.04 3.99 3.95 3.9 3.85 3.81 3.73 3.66 3.61 3.57 3.55 3.53 3.52 3.51 3.5 3.47 3.42 3.35 3.25 3.13 3.01 2.89 2.78 2.69 2.61 2.55 2.49 2.44 2.39 2.35 2.32 2.31 2.31 2.33 2.35 2.39 2.42 2.44 2.45 2.46 2.46 2.45 2.44 2.43 2.41 2.38 2.34 2.28 2.21 2.12 2.04 1.95 1.86 1.78 1.71 1.66 1.61 1.58 1.55 1.53 1.51 1.5 1.49 1.49 1.48 1.47 1.47 1.46 1.46 1.46 +Denmark 4.04 4.04 4.05 4.05 4.06 4.06 4.07 4.07 4.08 4.09 4.09 4.1 4.11 4.12 4.13 4.14 4.14 4.15 4.16 4.17 4.18 4.19 4.2 4.21 4.22 4.23 4.16 4.1 4.03 3.97 3.9 3.92 3.94 3.96 3.98 4 4.02 4.04 4.06 4.08 4.1 4.12 4.13 4.15 4.16 4.17 4.19 4.2 4.22 4.23 4.24 4.06 4.48 4.27 4.41 4.31 4.37 4.44 4.48 4.53 4.4 4.27 4.17 4.17 4.06 4.21 4.32 4.09 4.18 3.96 4.1 4.06 4.09 4.16 4.17 4.31 4.4 4.36 4.27 4.3 4.28 4.34 4.36 4.29 4.5 4.39 4.37 4.28 4.25 4.21 4.11 4.18 4 4.16 4.1 4.09 4.11 4.02 4.08 4.01 4.07 4.14 4.05 3.96 3.97 3.87 3.87 3.81 3.83 3.78 3.67 3.6 3.58 3.43 3.42 3.23 3.23 3.11 3.16 2.96 3.29 3.11 2.87 2.86 2.78 2.66 2.58 2.44 2.43 2.3 2.3 2.2 2.19 2.1 2.15 2.12 2.14 2.16 2.18 2.16 2.22 2.24 2.5 2.65 2.84 2.98 3.02 2.9 2.71 2.57 2.58 2.5 2.54 2.6 2.54 2.58 2.59 2.56 2.54 2.49 2.54 2.55 2.54 2.64 2.6 2.61 2.62 2.35 2.12 2 1.95 2.04 2.03 1.92 1.9 1.92 1.75 1.66 1.67 1.6 1.55 1.44 1.43 1.38 1.4 1.45 1.48 1.5 1.56 1.62 1.67 1.68 1.76 1.75 1.81 1.81 1.75 1.75 1.72 1.74 1.77 1.75 1.72 1.76 1.78 1.8 1.85 1.85 1.89 1.84 1.88 1.76 1.73 1.88 1.88 1.89 +Djibouti 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.3 6.31 6.31 6.32 6.34 6.35 6.38 6.4 6.43 6.46 6.49 6.53 6.56 6.6 6.63 6.67 6.7 6.74 6.77 6.8 6.83 6.84 6.83 6.82 6.78 6.73 6.67 6.6 6.52 6.44 6.37 6.32 6.27 6.24 6.22 6.21 6.19 6.17 6.14 6.09 6 5.88 5.73 5.55 5.35 5.15 4.95 4.77 4.61 4.47 4.35 4.25 4.16 4.07 3.99 3.91 3.83 3.76 3.68 3.6 3.53 3.46 3.39 3.32 3.26 +Ecuador 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 6.99 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7.01 7 6.98 6.97 6.96 6.94 6.93 6.92 6.9 6.89 6.88 6.87 6.85 6.84 6.83 6.81 6.8 6.79 6.82 6.86 6.89 6.93 6.96 7.01 7.05 7.09 7.13 7.17 7.15 7.13 7.12 7.1 7.08 7.06 7.03 7.01 6.99 6.96 6.91 6.86 6.82 6.77 6.72 6.71 6.71 6.71 6.7 6.7 6.7 6.69 6.69 6.69 6.71 6.72 6.72 6.72 6.72 6.72 6.71 6.7 6.69 6.67 6.65 6.62 6.59 6.55 6.49 6.42 6.34 6.24 6.13 6.01 5.87 5.74 5.59 5.45 5.3 5.16 5.02 4.88 4.74 4.62 4.51 4.4 4.31 4.22 4.13 4.04 3.96 3.86 3.77 3.67 3.58 3.49 3.41 3.34 3.27 3.21 3.16 3.11 3.07 3.03 2.98 2.94 2.9 2.85 2.81 2.77 2.73 2.69 2.66 2.62 2.59 2.56 2.53 2.5 +Egypt 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.06 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.05 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.04 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 5.99 5.97 5.94 5.97 5.99 6.02 6.05 6.08 6.08 6.07 6.07 6.07 6.07 6.15 6.24 6.33 6.42 6.51 6.4 6.29 6.18 6.07 5.97 5.95 5.93 5.91 5.89 5.87 5.91 5.95 5.99 6.03 6.07 6.17 6.27 6.38 6.48 6.59 6.6 6.62 6.64 6.65 6.66 6.66 6.66 6.66 6.65 6.63 6.61 6.57 6.53 6.47 6.41 6.33 6.24 6.14 6.04 5.94 5.85 5.76 5.69 5.63 5.59 5.55 5.51 5.47 5.42 5.37 5.31 5.25 5.19 5.12 5.05 4.95 4.83 4.68 4.52 4.35 4.18 4.02 3.88 3.76 3.66 3.58 3.51 3.44 3.37 3.31 3.24 3.18 3.13 3.09 3.05 3.02 2.99 2.95 2.92 2.88 2.85 2.81 2.77 2.73 2.7 +El Salvador 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.88 5.87 5.86 5.85 5.85 5.84 5.83 5.86 5.89 5.93 5.96 5.99 5.94 5.89 5.85 5.8 5.75 5.85 5.95 6.05 6.15 6.24 6.26 6.27 6.28 6.3 6.31 6.3 6.28 6.26 6.25 6.23 6.2 6.17 6.14 6.11 6.08 6.08 6.07 6.07 6.06 6.06 6.05 6.04 6.02 6.01 6 6.05 6.11 6.16 6.19 6.27 6.33 6.4 6.47 6.53 6.59 6.65 6.69 6.73 6.75 6.75 6.74 6.7 6.64 6.57 6.49 6.4 6.3 6.2 6.11 6.01 5.91 5.82 5.72 5.62 5.51 5.39 5.27 5.14 5 4.87 4.74 4.61 4.49 4.37 4.26 4.15 4.05 3.95 3.86 3.78 3.7 3.61 3.53 3.43 3.32 3.2 3.07 2.93 2.8 2.68 2.58 2.5 2.43 2.39 2.35 2.32 2.29 2.26 2.24 2.21 2.18 2.16 2.14 +Equatorial Guinea 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.51 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.5 5.51 5.52 5.53 5.55 5.57 5.6 5.62 5.64 5.66 5.67 5.68 5.68 5.68 5.68 5.68 5.67 5.68 5.68 5.69 5.71 5.73 5.75 5.78 5.8 5.83 5.85 5.87 5.88 5.89 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.89 5.87 5.85 5.81 5.77 5.73 5.68 5.63 5.57 5.52 5.46 5.39 5.31 5.23 5.14 5.04 4.95 4.85 4.75 4.65 +Eritrea 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.96 6.95 6.95 6.95 6.95 6.95 6.95 6.95 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.93 6.93 6.93 6.93 6.93 6.93 6.93 6.92 6.94 6.96 6.98 6.99 6.99 6.98 6.97 6.95 6.93 6.9 6.87 6.84 6.81 6.78 6.75 6.73 6.71 6.69 6.67 6.65 6.64 6.63 6.62 6.62 6.61 6.62 6.62 6.62 6.63 6.63 6.63 6.62 6.61 6.59 6.57 6.55 6.54 6.52 6.5 6.49 6.47 6.44 6.4 6.35 6.29 6.23 6.16 6.09 6.02 5.94 5.86 5.77 5.68 5.58 5.48 5.37 5.27 5.16 5.06 4.97 4.88 4.79 4.7 4.61 4.52 +Estonia 5.59 5.5 5.41 5.32 5.25 5.18 5.1 5.03 4.96 4.97 4.99 5.01 5.02 5.04 5.02 5 4.97 4.95 4.93 4.97 5.01 5.05 5.09 5.13 5.12 5.11 5.09 5.08 5.07 5.03 5 4.96 4.93 4.89 4.82 4.75 4.68 4.61 4.54 4.51 4.48 4.45 4.42 4.4 4.38 4.37 4.36 4.34 4.33 4.39 4.46 4.52 4.59 4.65 4.66 4.68 4.69 4.7 4.72 4.82 4.93 5.03 5.13 5.24 5.04 4.85 4.65 4.46 4.26 4.31 4.36 4.41 4.46 4.52 4.46 4.4 4.35 4.29 4.23 4.2 4.16 4.13 4.1 4.06 4.04 4.01 3.99 3.96 3.94 3.9 3.87 3.84 3.8 3.77 3.79 3.82 3.85 3.88 3.91 3.89 3.88 3.86 3.84 3.82 3.76 3.7 3.63 3.57 3.51 3.47 3.43 3.38 3.34 3.3 3.15 3.01 2.87 2.73 2.59 2.58 2.57 2.56 2.55 2.54 2.53 2.52 2.51 2.47 2.42 2.38 2.33 2.29 2.25 2.21 2.17 2.13 2.14 2.14 2.15 2.15 2.16 2.15 2.14 2.14 2.13 2.12 2.12 2.11 2.1 2.1 2.09 2.08 2.07 2.05 2.04 2.02 2.01 1.99 1.98 1.96 1.95 1.95 1.94 1.95 1.95 1.97 1.99 2.01 2.04 2.07 2.1 2.12 2.13 2.13 2.13 2.11 2.1 2.08 2.07 2.06 2.06 2.08 2.1 2.13 2.17 2.19 2.19 2.17 2.12 2.04 1.94 1.83 1.71 1.6 1.51 1.43 1.38 1.34 1.32 1.31 1.32 1.34 1.38 1.42 1.47 1.52 1.57 1.6 1.62 1.63 1.63 1.62 1.61 1.6 1.61 1.62 +Ethiopia 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.17 7.18 7.18 7.19 7.2 7.21 7.21 7.22 7.23 7.23 7.24 7.25 7.26 7.26 7.27 7.28 7.29 7.29 7.3 7.31 7.31 7.32 7.33 7.34 7.34 7.35 7.3 7.2 7.12 7.05 6.99 6.95 6.92 6.9 6.89 6.88 6.88 6.88 6.87 6.87 6.86 6.87 6.88 6.9 6.94 6.98 7.02 7.06 7.09 7.12 7.14 7.17 7.2 7.23 7.27 7.32 7.36 7.4 7.42 7.44 7.44 7.42 7.39 7.35 7.3 7.25 7.19 7.14 7.09 7.05 7 6.94 6.86 6.77 6.66 6.53 6.38 6.22 6.05 5.87 5.69 5.52 5.35 5.19 5.04 4.9 4.77 4.64 4.52 4.4 4.28 +Fiji 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.39 6.34 6.28 6.23 6.17 6.12 6.06 6.01 5.95 5.89 5.84 5.78 5.73 5.67 5.62 5.56 5.51 5.45 5.39 5.34 5.28 5.23 5.17 5.12 5.06 5.01 4.95 4.89 4.84 4.78 4.81 4.84 4.86 4.89 4.92 4.97 5.02 5.07 5.12 5.17 5.21 5.24 5.28 5.31 5.35 5.54 5.73 5.92 6.11 6.3 6.4 6.59 6.73 6.82 6.87 6.87 6.83 6.74 6.62 6.46 6.28 6.09 5.88 5.68 5.48 5.28 5.08 4.89 4.71 4.54 4.4 4.28 4.18 4.11 4.05 4.02 3.99 3.97 3.94 3.91 3.86 3.81 3.76 3.69 3.63 3.57 3.51 3.47 3.43 3.4 3.37 3.35 3.33 3.31 3.28 3.24 3.21 3.17 3.13 3.09 3.05 3 2.95 2.91 2.86 2.82 2.77 2.74 2.7 2.67 2.64 2.62 2.59 2.56 2.54 +Finland 4.92 5.07 5.23 4.78 5.24 5.21 4.84 4.97 4.16 3.69 5.1 4.66 4.95 4.6 4.72 4.84 4.82 4.84 4.78 4.51 4.55 5.34 4.59 5.21 4.84 4.83 4.89 4.77 5.12 4.98 4.85 4.58 4.47 3.96 4.75 4.57 4.17 4.17 4.32 4.47 4.59 4.56 4.96 4.77 4.64 4.76 4.39 4.46 4.84 4.92 4.78 5.17 4.79 4.8 5.02 4.82 4.86 4.48 4.87 4.74 4.84 5.2 5.03 4.85 5.28 4.79 4.46 4.47 3.4 4.52 4.86 4.95 4.87 4.97 5.12 4.95 4.97 5.19 4.81 5.14 5.01 4.79 4.99 4.96 5.04 4.79 4.98 5.17 5.07 4.89 4.83 5.04 4.65 4.43 4.59 4.87 4.8 4.77 5.07 4.96 4.83 4.92 4.79 4.62 4.85 4.67 4.81 4.76 4.65 4.72 4.6 4.46 4.45 4.15 4.13 3.89 3.69 3.71 3.6 2.87 3.76 3.58 3.43 3.44 3.22 3.17 3.02 2.92 2.92 2.83 2.75 2.59 2.46 2.27 2.33 2.37 2.31 2.52 2.52 2.56 2.15 2.9 2 2.46 2.56 3.07 3.41 3.47 3.47 3.33 3.16 3.01 3.06 2.96 2.93 2.93 2.91 2.86 2.68 2.75 2.71 2.65 2.66 2.66 2.58 2.46 2.41 2.32 2.15 1.94 1.83 1.7 1.59 1.5 1.62 1.69 1.72 1.69 1.65 1.64 1.63 1.65 1.72 1.74 1.7 1.64 1.6 1.59 1.7 1.71 1.79 1.8 1.85 1.81 1.85 1.81 1.76 1.75 1.71 1.73 1.73 1.73 1.72 1.76 1.8 1.8 1.84 1.83 1.85 1.86 1.87 1.83 1.8 1.85 1.85 1.86 +France 4.41 4.36 4.31 4.26 4.21 4.16 4.1 4.05 4 3.95 3.9 3.89 3.89 3.88 3.88 3.87 3.86 3.86 3.85 3.85 3.84 3.83 3.82 3.8 3.79 3.78 3.77 3.76 3.74 3.73 3.72 3.7 3.69 3.67 3.65 3.64 3.62 3.6 3.59 3.57 3.56 3.55 3.54 3.53 3.53 3.52 3.51 3.51 3.5 3.49 3.49 3.45 3.42 3.38 3.31 3.24 3.4 3.36 3.46 3.61 3.4 3.51 3.46 3.53 3.51 3.53 3.53 3.55 3.49 3.49 3.44 3.08 3.59 3.51 3.53 3.51 3.57 3.49 3.44 3.44 3.36 3.4 3.4 3.38 3.38 3.32 3.26 3.22 3.16 3.12 2.95 3.03 2.96 3.02 2.94 2.86 2.98 2.92 2.87 2.88 2.8 2.9 2.85 2.78 2.75 2.71 2.7 2.58 2.64 2.56 2.57 2.46 2.49 2.47 2.34 1.52 1.23 1.34 1.56 1.59 2.69 2.6 2.42 2.41 2.36 2.39 2.37 2.29 2.31 2.24 2.3 2.25 2.23 2.11 2.14 2.07 2.09 2.1 2.13 2.17 2 1.85 2.04 2.19 2.25 2.31 3 3.04 3.02 3 2.83 2.81 2.76 2.72 2.7 2.68 2.69 2.7 2.72 2.74 2.77 2.8 2.81 2.81 2.8 2.77 2.73 2.68 2.62 2.56 2.49 2.41 2.33 2.24 2.14 2.06 1.98 1.92 1.87 1.85 1.83 1.84 1.84 1.85 1.85 1.84 1.83 1.81 1.79 1.77 1.75 1.74 1.72 1.72 1.72 1.72 1.74 1.75 1.77 1.8 1.82 1.84 1.87 1.89 1.92 1.94 1.95 1.96 1.97 1.98 1.98 1.98 1.98 1.98 1.98 1.98 +Gabon 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.4 6.3 6.19 6.09 5.99 5.89 5.79 5.68 5.58 5.48 5.38 5.28 5.17 5.07 4.97 4.87 4.76 4.66 4.56 4.46 4.36 4.25 4.15 4.05 3.95 3.95 3.97 3.99 4.03 4.07 4.12 4.17 4.24 4.31 4.38 4.46 4.54 4.62 4.69 4.77 4.83 4.9 4.96 5.02 5.08 5.14 5.21 5.28 5.34 5.41 5.48 5.54 5.6 5.65 5.68 5.71 5.72 5.72 5.71 5.69 5.65 5.61 5.55 5.49 5.42 5.34 5.26 5.17 5.08 4.99 4.9 4.81 4.74 4.66 4.6 4.54 4.49 4.45 4.41 4.37 4.34 4.3 4.28 4.25 4.21 4.18 4.14 4.09 4.03 3.97 +Gambia 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.46 6.41 6.36 6.31 6.26 6.2 6.15 6.1 6.05 6 5.95 5.9 5.85 5.79 5.74 5.69 5.64 5.59 5.54 5.49 5.44 5.38 5.33 5.28 5.23 5.24 5.27 5.3 5.33 5.37 5.4 5.44 5.48 5.53 5.57 5.62 5.67 5.72 5.78 5.83 5.88 5.94 5.99 6.04 6.09 6.14 6.19 6.23 6.26 6.29 6.32 6.33 6.34 6.34 6.34 6.32 6.3 6.28 6.25 6.22 6.19 6.16 6.14 6.12 6.11 6.1 6.08 6.07 6.06 6.04 6.02 6 5.97 5.94 5.92 5.89 5.87 5.85 5.83 5.81 5.8 5.8 5.8 5.8 5.8 5.79 5.78 5.75 5.72 5.67 +Georgia 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.8 7.72 7.65 7.57 7.49 7.42 7.34 7.26 7.19 7.11 7.03 6.96 6.88 6.8 6.73 6.65 6.57 6.5 6.42 6.34 6.27 6.19 6.11 6.04 5.96 5.88 5.81 5.73 5.65 5.58 5.5 5.32 5.13 4.95 4.77 4.59 4.4 4.22 4.04 3.85 3.67 3.61 3.56 3.5 3.44 3.39 3.33 3.27 3.21 3.16 3.1 3.07 3.01 2.97 2.94 2.92 2.92 2.93 2.94 2.95 2.96 2.97 2.95 2.92 2.86 2.8 2.74 2.68 2.64 2.61 2.6 2.59 2.58 2.56 2.54 2.5 2.46 2.42 2.38 2.34 2.32 2.3 2.28 2.28 2.28 2.27 2.27 2.26 2.24 2.22 2.18 2.13 2.08 2.01 1.95 1.88 1.81 1.75 1.69 1.64 1.61 1.59 1.59 1.61 1.64 1.68 1.72 1.76 1.79 1.81 1.82 1.82 1.82 1.82 1.82 1.81 +Germany 5.4 5.4 5.39 5.39 5.38 5.38 5.37 5.37 5.36 5.36 5.35 5.35 5.34 5.34 5.33 5.33 5.32 5.32 5.33 5.35 5.37 5.35 5.33 5.31 5.28 5.26 5.17 5.07 4.97 4.88 4.78 4.8 4.83 4.85 4.88 4.9 4.9 4.9 4.9 4.9 4.9 4.92 4.95 4.97 5 5.02 5.02 5.02 5.01 5.01 5.01 4.87 4.74 4.6 4.47 4.33 4.45 4.56 4.67 4.79 4.9 4.93 4.96 5 5.03 5.06 5.09 5.11 5.13 5.16 5.18 5.24 5.3 5.35 5.41 5.46 5.38 5.3 5.22 5.14 5.06 5.14 5.21 5.29 5.28 5.26 5.25 5.23 5.22 5.21 5.2 5.18 5.17 5.16 5.14 5.11 5.09 5.06 5.04 4.99 4.93 4.88 4.82 4.77 4.68 4.6 4.51 4.43 4.34 4.18 4.01 3.85 3.68 3.52 3.27 3.02 2.76 2.51 2.26 2.33 2.4 2.48 2.55 2.62 2.42 2.21 2.1 1.98 1.99 1.93 1.88 1.71 1.62 1.58 1.93 2.03 2.07 2.09 2.25 2.39 2.4 2.25 1.83 2 1.89 1.53 2 2.03 2.09 2.15 2.07 2.08 2.11 2.14 2.17 2.21 2.25 2.29 2.33 2.37 2.41 2.44 2.47 2.49 2.49 2.48 2.44 2.37 2.28 2.17 2.04 1.92 1.8 1.7 1.62 1.56 1.53 1.5 1.49 1.48 1.47 1.47 1.46 1.46 1.46 1.45 1.44 1.43 1.41 1.38 1.36 1.34 1.32 1.31 1.31 1.31 1.32 1.33 1.34 1.35 1.35 1.35 1.35 1.35 1.35 1.35 1.36 1.36 1.37 1.38 1.39 1.4 1.41 1.42 1.43 1.44 +Ghana 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.43 6.42 6.42 6.42 6.42 6.41 6.41 6.41 6.41 6.4 6.4 6.4 6.4 6.39 6.39 6.39 6.39 6.38 6.38 6.38 6.38 6.37 6.37 6.37 6.37 6.39 6.42 6.46 6.5 6.54 6.58 6.62 6.67 6.71 6.75 6.79 6.83 6.86 6.89 6.92 6.94 6.95 6.96 6.96 6.95 6.94 6.92 6.89 6.86 6.82 6.77 6.72 6.67 6.61 6.54 6.47 6.39 6.31 6.22 6.13 6.04 5.94 5.83 5.73 5.62 5.51 5.39 5.28 5.17 5.06 4.96 4.87 4.79 4.73 4.67 4.62 4.57 4.51 4.46 4.39 4.33 4.26 4.19 4.12 4.05 3.99 3.92 3.86 3.8 3.74 +Greece 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 5.81 5.59 5.36 5.14 4.92 4.7 4.47 4.25 4.03 3.81 3.95 3.87 3.78 3.94 3.73 4.03 3.83 3.85 3.86 3.77 3.81 3.83 3.7 3.91 3.78 3.97 3.82 3.64 3.32 3.27 3.28 3.38 3.35 3.83 3.82 4.01 4.19 4.38 4.57 4.73 4.8 4.88 4.95 5.03 5.1 5.18 5.25 5.32 5.4 5.47 5.35 5.22 5.1 4.97 4.85 4.72 4.6 4.47 4.35 4.22 4.09 3.97 3.84 3.72 3.59 3.47 3.34 3.22 3.09 2.97 2.84 2.88 2.55 2.61 3.52 4.02 3.86 4.09 3.87 4.19 3.83 3.8 3.84 4.16 3.77 3.68 3.51 3.47 3.32 3.29 3.19 3.08 2.98 2.88 2.78 2.68 2.58 2.48 2.37 2.27 2.28 2.29 2.3 2.3 2.29 2.28 2.27 2.25 2.23 2.22 2.22 2.22 2.23 2.26 2.29 2.32 2.35 2.36 2.37 2.36 2.36 2.35 2.35 2.35 2.34 2.34 2.32 2.28 2.24 2.17 2.09 2.01 1.91 1.82 1.73 1.65 1.58 1.51 1.46 1.42 1.39 1.37 1.35 1.34 1.32 1.31 1.29 1.28 1.27 1.27 1.27 1.28 1.3 1.33 1.36 1.4 1.43 1.46 1.48 1.5 1.51 1.52 1.53 1.54 1.55 +Grenada 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.81 5.78 5.76 5.73 5.71 5.68 5.66 5.63 5.61 5.58 5.56 5.53 5.51 5.48 5.46 5.43 5.41 5.38 5.36 5.33 5.31 5.28 5.26 5.23 5.21 5.18 5.36 5.69 5.97 6.22 6.43 6.59 6.71 6.78 6.79 6.74 6.63 6.44 6.2 5.91 5.6 5.3 5.04 4.84 4.69 4.6 4.56 4.54 4.51 4.48 4.44 4.39 4.34 4.3 4.27 4.25 4.24 4.24 4.25 4.24 4.23 4.2 4.15 4.07 3.97 3.84 3.7 3.55 3.4 3.25 3.12 2.99 2.87 2.76 2.67 2.58 2.51 2.46 2.41 2.37 2.34 2.32 2.3 2.28 2.26 2.24 2.22 2.19 2.17 2.15 2.13 +Guatemala 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.39 6.34 6.28 6.23 6.17 6.12 6.06 6.14 6.23 6.31 6.39 6.48 6.38 6.29 6.19 6.1 6 6.15 6.29 6.43 6.57 6.71 6.74 6.76 6.79 6.81 6.84 6.76 6.67 6.59 6.51 6.42 6.37 6.31 6.26 6.2 6.14 6.17 6.2 6.23 6.26 6.28 6.39 6.5 6.61 6.72 6.82 6.96 7.1 7.25 7.18 7.05 6.93 6.83 6.75 6.68 6.63 6.59 6.56 6.53 6.51 6.49 6.46 6.43 6.4 6.36 6.32 6.29 6.26 6.24 6.22 6.21 6.2 6.2 6.2 6.2 6.2 6.2 6.2 6.18 6.15 6.11 6.05 5.99 5.91 5.84 5.76 5.7 5.64 5.58 5.53 5.47 5.4 5.32 5.24 5.15 5.06 4.97 4.88 4.8 4.72 4.63 4.55 4.46 4.37 4.28 4.2 4.12 4.04 3.97 3.91 3.84 3.78 3.72 3.66 +Guinea 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.11 6.1 6.1 6.09 6.09 6.08 6.08 6.07 6.07 6.06 6.06 6.05 6.05 6.04 6.04 6.03 6.02 6.02 6.01 6.01 6 6 5.99 5.99 5.98 5.98 5.98 5.99 6.01 6.02 6.03 6.05 6.06 6.08 6.09 6.1 6.11 6.12 6.13 6.13 6.14 6.14 6.15 6.16 6.17 6.2 6.22 6.25 6.28 6.32 6.35 6.39 6.43 6.47 6.5 6.53 6.56 6.59 6.61 6.63 6.64 6.65 6.64 6.63 6.61 6.58 6.54 6.49 6.44 6.38 6.31 6.24 6.16 6.09 6.01 5.94 5.87 5.79 5.72 5.65 5.58 5.5 5.42 5.34 5.26 5.17 5.09 5 4.92 4.83 4.75 +Guinea-Bissau 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.3 7.35 7.4 7.45 7.51 7.56 7.61 7.66 7.71 7.76 7.81 7.86 7.91 7.96 8.01 8.06 8.11 8.16 8.21 8.26 8.31 8.36 8.41 8.46 8.51 8.19 7.59 7.09 6.68 6.36 6.14 5.99 5.91 5.86 5.83 5.77 5.67 5.52 5.32 5.14 5.05 5.09 5.3 5.64 6.07 6.49 6.81 6.98 6.99 6.87 6.66 6.46 6.33 6.28 6.32 6.42 6.54 6.64 6.71 6.74 6.74 6.73 6.71 6.68 6.65 6.61 6.55 6.49 6.4 6.31 6.21 6.12 6.02 5.93 5.85 5.77 5.69 5.61 5.54 5.46 5.39 5.32 5.25 5.18 5.12 5.05 4.99 4.93 4.87 4.8 +Guyana 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 4.93 4.85 4.77 4.69 4.61 4.53 4.45 4.36 4.28 4.2 4.12 4.21 4.3 4.39 4.48 4.72 4.96 5.2 5.45 5.69 5.39 5.1 5.25 5.39 5.54 5.69 5.57 5.45 5.33 5.21 5.09 4.98 4.82 4.67 4.52 4.37 4.22 4.36 4.5 4.63 4.77 4.91 4.93 4.95 4.97 4.99 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.01 5.02 5.02 5.02 5.09 5.15 5.22 5.28 5.35 5.34 5.34 5.33 5.33 5.33 5.32 5.32 5.31 5.41 5.58 5.71 5.81 5.86 5.88 5.87 5.83 5.76 5.67 5.58 5.49 5.4 5.33 5.27 5.23 5.19 5.15 5.11 5.07 5.02 4.97 4.92 4.85 4.76 4.62 4.44 4.2 3.94 3.65 3.36 3.1 2.88 2.71 2.6 2.53 2.5 2.48 2.47 2.47 2.47 2.47 2.47 2.48 2.49 2.51 2.52 2.54 2.56 2.59 2.61 2.65 2.68 2.71 2.74 2.75 2.75 2.74 2.72 2.68 2.64 2.59 2.55 2.5 2.47 +Haiti 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.31 6.3 6.3 6.3 6.3 6.3 6.31 6.32 6.32 6.32 6.32 6.3 6.27 6.23 6.18 6.11 6.03 5.94 5.85 5.76 5.69 5.64 5.62 5.62 5.64 5.7 5.78 5.87 5.97 6.06 6.12 6.15 6.15 6.11 6.03 5.92 5.8 5.67 5.55 5.43 5.32 5.21 5.1 5 4.89 4.78 4.67 4.55 4.43 4.3 4.18 4.07 3.95 3.85 3.75 3.66 3.58 3.5 3.42 3.35 3.28 3.21 3.15 3.09 3.03 +Honduras 6.05 6.05 6.05 6.06 6.06 6.06 6.06 6.07 6.07 6.07 6.07 6.07 6.08 6.08 6.08 6.08 6.08 6.09 6.09 6.09 6.09 6.1 6.1 6.1 6.1 6.1 6.11 6.11 6.11 6.11 6.12 6.12 6.12 6.12 6.12 6.13 6.13 6.13 6.13 6.13 6.14 6.14 6.14 6.14 6.15 6.15 6.15 6.15 6.15 6.16 6.16 6.16 6.16 6.16 6.17 6.17 6.17 6.17 6.18 6.18 6.18 6.18 6.18 6.19 6.19 6.19 6.19 6.2 6.2 6.2 6.2 6.2 6.21 6.21 6.21 6.21 6.21 6.22 6.22 6.22 6.22 6.23 6.23 6.23 6.23 6.23 6.24 6.24 6.24 6.24 6.25 6.25 6.25 6.25 6.25 6.26 6.26 6.26 6.26 6.26 6.27 6.27 6.27 6.27 6.28 6.28 6.28 6.28 6.28 6.29 6.29 6.29 6.29 6.24 6.18 6.12 6.06 6 6.08 6.15 6.23 6.3 6.38 6.37 6.37 6.36 6.36 6.35 6.29 6.23 6.17 6.11 6.05 6.05 6.04 6.04 6.04 6.03 6.09 6.14 6.2 6.25 6.31 6.33 6.35 6.37 6.39 6.41 6.76 7.12 7.47 7.48 7.5 7.51 7.51 7.51 7.51 7.5 7.49 7.47 7.46 7.45 7.44 7.44 7.44 7.44 7.44 7.42 7.38 7.33 7.27 7.2 7.11 7.03 6.94 6.84 6.75 6.65 6.54 6.43 6.31 6.19 6.06 5.93 5.8 5.68 5.55 5.44 5.34 5.24 5.14 5.05 4.95 4.85 4.74 4.62 4.49 4.37 4.24 4.12 4 3.88 3.78 3.67 3.58 3.49 3.41 3.34 3.27 3.21 3.15 3.1 3.05 3 2.95 2.91 +Hungary 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.18 5.15 5.12 5.09 5.06 5.03 5 4.97 4.94 4.91 4.88 4.85 5.11 5.41 5.03 5.11 5.02 4.64 5.09 5.12 5.14 5.23 4.96 5.18 5.23 5.55 5.61 5.29 5.23 5.58 5.23 5.28 5.4 5.5 5.59 5.48 5.57 5.41 5.36 5.35 4.93 5.2 4.96 5.25 5.08 5.11 4.97 4.95 4.62 4.79 5.28 5.22 5.16 5.1 5.04 4.98 4.91 4.85 4.79 4.73 4.67 4.59 4.5 4.42 4.34 4.26 4.17 4.09 4.01 3.93 3.84 3.81 3.6 3.39 3.18 3.36 3.24 3.05 3.08 2.92 2.84 2.84 2.78 2.72 2.57 2.55 2.48 2.42 2.46 2.5 2.49 2.52 2.55 2.58 2.61 2.64 2.67 2.7 2.73 2.76 2.79 2.77 2.72 2.67 2.6 2.52 2.43 2.34 2.24 2.14 2.05 1.97 1.92 1.89 1.88 1.89 1.92 1.95 1.98 2.01 2.03 2.05 2.07 2.09 2.11 2.12 2.12 2.11 2.08 2.03 1.98 1.93 1.88 1.85 1.83 1.83 1.83 1.84 1.85 1.84 1.83 1.8 1.75 1.69 1.63 1.56 1.49 1.43 1.37 1.33 1.31 1.29 1.29 1.29 1.29 1.3 1.31 1.32 1.33 1.35 1.36 1.38 1.4 1.41 1.43 1.44 +Iceland 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.88 4.87 4.86 4.85 4.85 4.84 4.83 4.82 4.82 4.81 4.8 4.74 4.68 4.62 4.56 4.5 4.44 4.38 4.32 4.26 4.2 4.16 4.13 4.09 4.05 4.01 3.97 3.93 3.89 3.85 3.81 3.81 3.82 3.82 3.83 3.83 3.84 3.84 3.85 3.85 3.86 3.88 3.9 3.92 3.94 3.97 3.99 4.01 4.03 4.06 4.08 4.1 4.09 4.07 4.06 4.04 4.03 4.01 4 3.85 3.69 3.8 3.9 4 3.98 3.96 3.94 3.92 3.9 3.89 3.87 3.86 3.67 3.72 3.6 3.54 3.66 3.55 3.32 3.38 3.49 3.49 3.33 3.09 3.14 3.05 3.03 2.8 2.76 2.68 2.79 2.91 3.24 3.33 3.36 3.53 3.46 3.63 3.75 3.76 3.62 3.69 3.82 3.93 4.02 4.1 4.15 4.18 4.19 4.17 4.13 4.07 3.98 3.86 3.74 3.6 3.46 3.34 3.22 3.12 3.03 2.95 2.88 2.8 2.73 2.65 2.57 2.49 2.42 2.36 2.31 2.27 2.23 2.2 2.17 2.15 2.14 2.13 2.14 2.15 2.16 2.17 2.17 2.17 2.15 2.13 2.1 2.07 2.05 2.02 2.01 2 2 2.02 2.04 2.06 2.09 2.11 2.12 2.12 2.12 2.11 2.1 2.08 2.07 2.06 +India 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.95 5.92 5.89 5.86 5.82 5.79 5.76 5.76 5.75 5.75 5.75 5.75 5.74 5.74 5.74 5.73 5.73 5.73 5.73 5.73 5.73 5.73 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.71 5.71 5.71 5.71 5.71 5.7 5.7 5.7 5.71 5.72 5.73 5.74 5.76 5.77 5.78 5.79 5.8 5.81 5.82 5.83 5.85 5.86 5.87 5.88 5.89 5.91 5.92 5.93 5.93 5.93 5.92 5.92 5.92 5.92 5.92 5.91 5.91 5.91 5.9 5.9 5.89 5.89 5.89 5.9 5.91 5.91 5.91 5.91 5.9 5.89 5.88 5.87 5.86 5.84 5.83 5.81 5.78 5.75 5.7 5.64 5.57 5.49 5.41 5.32 5.24 5.16 5.08 5 4.92 4.84 4.76 4.68 4.6 4.52 4.44 4.36 4.28 4.2 4.13 4.04 3.96 3.88 3.79 3.71 3.63 3.55 3.47 3.4 3.33 3.27 3.21 3.15 3.08 3.02 2.95 2.88 2.82 2.75 2.69 2.64 2.6 2.56 2.53 2.51 2.48 2.45 2.43 +Indonesia 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.07 6.06 6.06 6.05 6.05 6.04 6.04 6.03 5.99 5.95 6.06 6.26 6.23 6.2 6.17 6.14 6.11 6.08 5.84 5.72 5.59 5.46 5.34 5.21 5.48 5.48 5.47 5.47 5.46 5.46 5.45 5.45 5.44 5.44 5.44 5.43 5.43 5.42 5.42 5.41 5.41 5.4 5.4 5.4 5.39 5.39 5.38 5.38 5.37 5.37 5.36 5.36 5.35 5.35 5.35 5.39 5.46 5.53 5.58 5.62 5.65 5.67 5.67 5.67 5.67 5.66 5.65 5.63 5.62 5.61 5.6 5.58 5.56 5.52 5.47 5.41 5.34 5.25 5.15 5.04 4.93 4.81 4.68 4.56 4.43 4.3 4.17 4.03 3.89 3.75 3.61 3.47 3.35 3.23 3.12 3.02 2.93 2.84 2.76 2.69 2.63 2.58 2.53 2.5 2.48 2.48 2.47 2.48 2.49 2.49 2.5 2.49 2.48 2.46 2.43 2.4 2.37 2.34 2.31 2.28 +Iran 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.08 7.07 7.07 7.06 7.05 7.05 7.04 7.03 7.03 7.02 7.01 7.01 7 6.99 6.99 6.98 6.97 6.97 6.96 6.95 6.95 6.94 6.93 6.93 6.92 6.92 6.91 6.91 6.91 6.91 6.91 6.91 6.92 6.92 6.93 6.93 6.92 6.91 6.9 6.87 6.83 6.77 6.7 6.62 6.53 6.44 6.36 6.29 6.24 6.21 6.21 6.24 6.29 6.35 6.42 6.48 6.52 6.52 6.47 6.37 6.22 6.02 5.76 5.47 5.15 4.82 4.48 4.14 3.81 3.49 3.2 2.95 2.72 2.51 2.34 2.19 2.08 1.99 1.93 1.9 1.87 1.87 1.87 1.88 1.89 1.9 1.91 1.92 1.92 1.92 1.91 +Iraq 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.13 7.17 7.21 7.25 7.29 7.33 7.37 7.41 7.45 7.48 7.52 7.56 7.6 7.64 7.68 7.72 7.76 7.8 7.84 7.88 7.91 7.95 7.99 8.03 8.07 8.11 7.88 7.44 7.07 6.76 6.52 6.34 6.23 6.18 6.19 6.25 6.36 6.51 6.69 6.87 7.04 7.19 7.3 7.36 7.38 7.36 7.31 7.23 7.15 7.07 6.99 6.92 6.83 6.75 6.66 6.57 6.49 6.41 6.34 6.28 6.22 6.16 6.11 6.04 5.97 5.88 5.79 5.7 5.61 5.51 5.42 5.32 5.23 5.14 5.05 4.97 4.88 4.8 4.71 4.63 4.56 4.48 4.41 4.34 4.28 4.21 4.15 4.09 4.03 3.97 3.91 +Ireland 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.2 4.13 4.06 3.99 3.93 3.86 3.79 3.72 3.65 3.58 3.51 3.45 3.38 3.31 3.24 3.47 3.54 3.53 3.58 3.58 3.71 3.67 3.72 3.63 3.57 3.51 3.57 3.54 3.4 3.44 3.31 3.33 3.22 3.15 3.2 3.15 3.11 3.1 3.06 3.04 2.99 3.05 3.01 3.09 3.08 3.12 3.17 3.16 3.13 3.09 3.04 2.92 3.08 3.09 3.16 3.13 3.15 3.11 3.12 3.14 3.12 3.07 3.1 3.09 3.05 2.99 2.87 2.71 2.73 2.75 3.2 2.79 2.61 2.74 2.83 2.79 2.76 2.72 2.69 2.66 2.67 2.61 2.56 2.6 2.61 2.63 2.92 2.57 2.6 2.56 2.56 2.9 2.99 2.93 2.98 3.04 3.33 3.46 3.58 3.53 3.48 3.45 3.41 3.39 3.4 3.44 3.5 3.57 3.67 3.76 3.86 3.93 3.98 4 3.99 3.95 3.9 3.86 3.83 3.82 3.81 3.81 3.79 3.74 3.67 3.57 3.46 3.34 3.22 3.11 3 2.9 2.79 2.68 2.56 2.45 2.34 2.23 2.14 2.06 2 1.95 1.92 1.9 1.9 1.9 1.91 1.92 1.93 1.94 1.95 1.96 1.97 1.97 1.98 1.99 1.99 2 2 2 2 2 2 2 2 1.99 +Israel 6 5.99 5.97 5.96 5.95 5.94 5.92 5.91 5.9 5.88 5.87 5.86 5.84 5.83 5.82 5.81 5.79 5.78 5.77 5.75 5.74 5.73 5.72 5.7 5.69 5.68 5.66 5.65 5.64 5.62 5.61 5.6 5.59 5.57 5.56 5.55 5.53 5.52 5.51 5.5 5.48 5.47 5.46 5.44 5.43 5.42 5.4 5.39 5.38 5.37 5.35 5.34 5.33 5.31 5.3 5.29 5.28 5.26 5.25 5.24 5.22 5.21 5.2 5.18 5.17 5.16 5.15 5.13 5.12 5.11 5.09 5.08 5.07 5.05 5.04 5.03 5.02 5 4.99 4.98 4.96 4.95 4.94 4.93 4.91 4.9 4.89 4.87 4.86 4.85 4.83 4.82 4.81 4.8 4.78 4.77 4.76 4.74 4.73 4.72 4.71 4.69 4.68 4.67 4.65 4.64 4.63 4.61 4.6 4.59 4.58 4.56 4.55 4.54 4.52 4.51 4.5 4.49 4.47 4.46 4.45 4.43 4.42 4.41 4.39 4.38 4.39 4.4 4.41 4.41 4.42 4.36 4.3 4.25 4.19 4.13 3.93 3.74 3.54 3.34 3.15 3.32 3.49 3.66 3.84 4.01 4.11 4.21 4.32 4.42 4.52 4.45 4.32 4.21 4.11 4.03 3.96 3.92 3.88 3.86 3.84 3.84 3.83 3.82 3.82 3.81 3.8 3.8 3.81 3.81 3.82 3.81 3.8 3.77 3.72 3.66 3.59 3.51 3.43 3.35 3.28 3.22 3.17 3.13 3.11 3.09 3.07 3.06 3.04 3.02 3 2.97 2.95 2.94 2.93 2.92 2.92 2.93 2.93 2.92 2.92 2.92 2.91 2.91 2.91 2.91 2.91 2.91 2.92 2.92 2.92 2.92 2.91 2.9 2.88 2.86 +Italy 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.47 5.42 5.38 5.33 5.29 5.24 5.19 5.15 5.1 5.06 5.01 4.96 4.93 4.9 4.9 4.91 4.91 4.92 4.92 4.91 4.9 4.9 4.89 4.88 4.89 4.9 4.9 4.91 4.92 4.95 4.98 5 5.03 5.06 5.05 5.04 5.04 5.03 5.02 4.98 4.95 4.91 4.88 4.84 4.79 4.74 4.69 4.64 4.59 4.56 4.53 4.49 4.46 4.43 4.44 4.45 4.45 4.46 4.47 4.43 4.39 4.36 4.32 4.28 4.04 3.8 3.56 3.32 3.08 3.24 3.41 3.57 3.74 3.9 3.81 3.72 3.64 3.55 3.46 3.42 3.38 3.21 3.06 3.04 3 2.98 2.87 2.93 3.05 3.07 3.07 2.74 2.69 2.61 2.39 2.37 3.01 2.89 2.83 2.62 2.45 2.42 2.37 2.33 2.3 2.28 2.28 2.29 2.31 2.34 2.37 2.41 2.44 2.47 2.5 2.52 2.52 2.52 2.52 2.5 2.47 2.43 2.38 2.32 2.24 2.17 2.08 1.99 1.9 1.81 1.72 1.64 1.57 1.51 1.46 1.41 1.38 1.35 1.33 1.31 1.3 1.29 1.28 1.26 1.25 1.24 1.23 1.22 1.22 1.21 1.22 1.23 1.25 1.27 1.29 1.32 1.34 1.37 1.39 1.42 1.44 1.45 1.47 1.49 1.5 1.52 +Jamaica 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.06 4.99 4.92 4.85 4.78 4.71 4.64 4.57 4.5 5.13 5.13 5.12 5.12 5.11 5.11 5.12 5.13 5.15 5.16 5.17 5.18 5.18 5.19 5.19 5.2 5.12 5.03 4.95 4.87 4.78 4.88 4.98 5.08 5.18 5.28 5.26 5.23 5.21 5.18 5.16 5.08 5 4.92 4.84 4.76 4.93 5.11 5.29 5.46 5.64 5.45 5.26 5.06 4.87 4.68 4.75 4.82 4.89 4.96 5.03 4.93 4.84 4.75 4.66 4.57 4.48 4.39 4.3 4.22 4.13 4.11 4.08 4.06 4.04 4.02 3.98 3.93 3.89 3.85 3.8 3.91 4.13 4.33 4.52 4.7 4.87 5.02 5.17 5.3 5.42 5.53 5.63 5.71 5.78 5.82 5.82 5.79 5.72 5.62 5.48 5.31 5.11 4.9 4.69 4.48 4.29 4.12 3.97 3.84 3.73 3.64 3.56 3.48 3.39 3.31 3.22 3.14 3.07 3.01 2.95 2.9 2.86 2.82 2.78 2.74 2.71 2.68 2.66 2.63 2.6 2.58 2.55 2.53 2.5 2.47 2.44 2.41 2.39 2.36 2.33 2.31 2.28 2.26 2.24 2.21 +Japan 4.08 4.11 4.14 4.17 4.2 4.23 4.25 4.28 4.31 4.34 4.37 4.4 4.43 4.43 4.44 4.44 4.45 4.45 4.45 4.46 4.46 4.47 4.47 4.48 4.48 4.48 4.49 4.49 4.5 4.5 4.51 4.51 4.51 4.52 4.52 4.53 4.53 4.54 4.54 4.55 4.56 4.58 4.59 4.6 4.61 4.62 4.64 4.65 4.66 4.67 4.68 4.7 4.71 4.72 4.73 4.74 4.76 4.77 4.78 4.79 4.8 4.82 4.83 4.84 4.7 4.55 4.41 4.27 4.13 3.98 3.84 3.7 3.56 3.41 3.52 3.74 3.75 3.67 3.58 3.55 3.59 3.77 3.67 3.96 3.8 3.98 4.04 4.04 4.43 4.54 4.18 3.99 4.4 4.26 4.35 4.36 4.51 4.66 4.72 4.73 4.69 5.01 4.97 4.83 4.61 4.52 4.38 5.03 5.13 5.16 5.01 5.19 5.08 5.07 5.14 4.91 4.98 4.95 4.83 4.77 5.35 5.22 5.12 5.26 5.07 5.22 5.19 5 5.09 4.87 4.82 4.76 4.86 4.63 4.39 4.59 4.34 4.45 3.88 3.8 4.14 4.36 4.18 4.11 3.95 3.11 3.37 4.51 4.38 4.3 3.51 3.37 3.1 2.86 2.65 2.47 2.32 2.2 2.11 2.04 2 1.98 1.97 1.97 1.97 1.98 2 2.02 2.05 2.08 2.1 2.11 2.11 2.09 2.05 2 1.94 1.89 1.84 1.8 1.78 1.76 1.75 1.74 1.73 1.72 1.7 1.67 1.64 1.61 1.57 1.54 1.5 1.47 1.44 1.41 1.39 1.37 1.35 1.34 1.32 1.31 1.3 1.3 1.3 1.31 1.32 1.33 1.34 1.36 1.37 1.39 1.41 1.42 1.43 1.45 +Jordan 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.99 7.02 7.04 7.06 7.09 7.11 7.14 7.16 7.18 7.21 7.23 7.25 7.28 7.3 7.33 7.35 7.37 7.4 7.42 7.45 7.47 7.49 7.52 7.54 7.56 7.5 7.39 7.32 7.28 7.28 7.31 7.37 7.46 7.57 7.69 7.8 7.9 7.98 8.03 8.06 8.05 8.03 8 7.97 7.93 7.88 7.82 7.75 7.68 7.6 7.52 7.46 7.39 7.33 7.26 7.18 7.07 6.94 6.77 6.58 6.37 6.16 5.94 5.73 5.54 5.35 5.17 5 4.83 4.68 4.53 4.4 4.27 4.16 4.05 3.97 3.89 3.83 3.78 3.73 3.69 3.64 3.59 3.53 3.46 3.39 3.31 3.24 3.18 3.12 +Kazakhstan 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.45 6.44 6.44 6.43 6.42 6.42 6.41 6.4 6.4 6.39 6.38 6.38 6.37 6.36 6.36 6.35 6.34 6.34 6.33 6.32 6.32 6.31 6.3 6.3 6.29 6.28 6.28 6.27 6.26 6.26 6.25 6.2 6.15 6.1 6.05 6 5.95 5.9 5.85 5.8 5.75 5.71 5.66 5.61 5.56 5.51 5.39 5.27 5.15 5.03 4.91 4.78 4.66 4.54 4.42 4.3 4.33 4.39 4.43 4.48 4.52 4.55 4.57 4.59 4.59 4.56 4.51 4.44 4.33 4.2 4.06 3.92 3.79 3.68 3.6 3.54 3.49 3.44 3.39 3.32 3.25 3.18 3.11 3.05 3 2.97 2.97 2.97 2.99 3.01 3.02 3.03 3.02 2.98 2.92 2.84 2.73 2.61 2.48 2.36 2.24 2.13 2.05 1.98 1.94 1.92 1.94 2 2.08 2.18 2.28 2.38 2.46 2.51 2.54 2.54 2.52 2.49 2.46 2.43 2.4 +Kenya 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.91 6.93 6.94 6.96 6.98 7 7.02 7.03 7.05 7.07 7.09 7.11 7.12 7.14 7.16 7.18 7.2 7.22 7.23 7.25 7.27 7.29 7.31 7.32 7.34 7.36 7.39 7.45 7.51 7.57 7.64 7.7 7.76 7.83 7.89 7.95 8 8.04 8.08 8.1 8.12 8.13 8.13 8.12 8.1 8.08 8.05 8.01 7.96 7.91 7.84 7.77 7.7 7.62 7.54 7.46 7.37 7.27 7.17 7.05 6.92 6.77 6.6 6.42 6.23 6.04 5.85 5.67 5.51 5.37 5.25 5.17 5.1 5.06 5.03 5.01 5 4.99 4.98 4.96 4.92 4.88 4.82 4.76 4.69 4.62 4.54 4.46 4.38 4.31 4.24 +Kiribati 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.67 5.79 6.02 6.22 6.4 6.54 6.66 6.76 6.83 6.9 6.95 7.01 7.08 7.14 7.2 7.22 7.17 7.01 6.76 6.43 6.05 5.67 5.35 5.1 4.96 4.9 4.93 4.98 5.03 5.06 5.07 5.05 5.02 4.97 4.91 4.86 4.8 4.75 4.7 4.67 4.63 4.6 4.57 4.53 4.48 4.41 4.33 4.24 4.13 4.01 3.88 3.75 3.63 3.52 3.41 3.32 3.25 3.19 3.13 3.09 3.05 3.01 2.98 2.95 2.92 2.89 +Kuwait 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.88 6.9 6.91 6.93 6.94 6.95 6.97 6.98 7 7.01 7.03 7.04 7.05 7.07 7.08 7.1 7.11 7.13 7.14 7.16 7.17 7.18 7.2 7.21 7.23 7.22 7.21 7.2 7.2 7.19 7.2 7.2 7.21 7.23 7.25 7.28 7.31 7.35 7.38 7.41 7.42 7.41 7.38 7.33 7.24 7.12 6.98 6.81 6.62 6.43 6.23 6.05 5.87 5.7 5.52 5.32 5.08 4.79 4.46 4.09 3.7 3.31 2.94 2.62 2.36 2.2 2.14 2.18 2.3 2.47 2.64 2.79 2.88 2.9 2.87 2.8 2.72 2.66 2.63 2.63 2.65 2.67 2.68 2.68 2.67 2.65 2.63 2.6 2.58 2.55 +Latvia 5.2 5.19 5.18 5.18 5.17 5.16 5.15 5.14 5.14 5.13 5.12 5.11 5.1 5.1 5.09 5.08 5.07 5.06 5.06 5.05 5.04 5.03 5.02 5.02 5.01 5 4.99 4.98 4.98 4.97 4.96 4.95 4.94 4.94 4.93 4.92 4.91 4.9 4.9 4.89 4.88 4.87 4.86 4.86 4.85 4.84 4.83 4.82 4.82 4.81 4.8 4.77 4.75 4.72 4.69 4.67 4.64 4.61 4.59 4.56 4.54 4.51 4.48 4.46 4.43 4.4 4.38 4.35 4.32 4.3 4.27 4.24 4.22 4.19 4.17 4.14 4.11 4.09 4.06 4.03 4.01 3.98 3.95 3.93 3.9 3.87 3.85 3.82 3.8 3.77 3.74 3.72 3.69 3.66 3.64 3.61 3.58 3.56 3.54 3.52 3.5 3.47 3.45 3.43 3.41 3.39 3.37 3.35 3.33 3.31 3.29 3.27 3.25 3.22 3.2 3.18 3.16 3.14 3.12 3.1 3.08 3.06 3.04 3.02 3 2.97 2.91 2.85 2.78 2.72 2.65 2.59 2.54 2.48 2.42 2.36 2.38 2.41 2.44 2.46 2.49 2.44 2.39 2.34 2.3 2.25 2.2 2.15 2.1 2.06 2.01 2.01 2 2 1.99 1.98 1.97 1.96 1.94 1.92 1.9 1.88 1.86 1.84 1.82 1.81 1.81 1.82 1.85 1.88 1.91 1.94 1.96 1.96 1.96 1.94 1.92 1.91 1.9 1.91 1.94 1.97 2.02 2.06 2.1 2.13 2.14 2.12 2.08 2.01 1.92 1.82 1.7 1.58 1.46 1.36 1.28 1.22 1.18 1.17 1.18 1.21 1.25 1.29 1.34 1.39 1.43 1.47 1.5 1.53 1.55 1.57 1.59 1.61 1.62 1.64 +Lebanon 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.74 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.75 5.76 5.76 5.76 5.76 5.76 5.76 5.76 5.75 5.74 5.73 5.73 5.73 5.73 5.74 5.74 5.74 5.74 5.72 5.69 5.65 5.58 5.5 5.4 5.3 5.18 5.06 4.95 4.84 4.73 4.63 4.53 4.44 4.36 4.27 4.18 4.09 4 3.9 3.8 3.69 3.59 3.48 3.38 3.28 3.18 3.09 3 2.92 2.84 2.77 2.69 2.62 2.54 2.47 2.39 2.31 2.23 2.14 2.04 1.95 1.85 1.77 1.69 1.62 1.57 1.54 1.51 1.5 1.5 1.5 1.49 1.49 +Lesotho 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.84 5.83 5.83 5.83 5.83 5.83 5.83 5.83 5.83 5.82 5.82 5.82 5.82 5.82 5.82 5.82 5.82 5.82 5.81 5.81 5.81 5.81 5.82 5.84 5.85 5.86 5.86 5.86 5.86 5.86 5.85 5.84 5.83 5.82 5.81 5.81 5.8 5.8 5.8 5.81 5.81 5.81 5.81 5.8 5.79 5.78 5.76 5.74 5.71 5.67 5.63 5.59 5.54 5.49 5.44 5.38 5.31 5.24 5.17 5.09 5 4.92 4.84 4.76 4.69 4.62 4.55 4.48 4.39 4.3 4.2 4.09 3.98 3.86 3.75 3.65 3.56 3.48 3.41 3.34 3.27 3.21 3.15 3.09 3.04 2.99 2.94 +Liberia 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.19 6.2 6.2 6.2 6.2 6.21 6.21 6.21 6.21 6.22 6.22 6.22 6.22 6.23 6.23 6.23 6.23 6.24 6.24 6.24 6.24 6.25 6.25 6.25 6.26 6.26 6.28 6.29 6.3 6.32 6.34 6.36 6.38 6.41 6.43 6.45 6.48 6.5 6.52 6.55 6.58 6.62 6.66 6.7 6.74 6.78 6.82 6.85 6.88 6.91 6.93 6.95 6.96 6.97 6.97 6.96 6.95 6.92 6.88 6.82 6.75 6.67 6.59 6.5 6.41 6.34 6.27 6.21 6.16 6.11 6.06 6.01 5.95 5.88 5.8 5.72 5.64 5.55 5.46 5.37 5.28 5.19 5.11 5.02 4.95 4.87 4.79 4.72 4.64 +Libya 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.2 7.22 7.25 7.29 7.32 7.36 7.39 7.43 7.46 7.5 7.54 7.57 7.61 7.64 7.68 7.71 7.74 7.78 7.81 7.84 7.87 7.9 7.93 7.96 7.98 7.99 7.99 7.98 7.94 7.87 7.77 7.62 7.42 7.18 6.9 6.58 6.25 5.91 5.58 5.26 4.97 4.69 4.43 4.18 3.95 3.73 3.54 3.38 3.25 3.14 3.05 2.98 2.93 2.88 2.84 2.79 2.74 2.69 2.64 2.58 2.53 2.47 2.41 2.36 2.3 2.26 +Lithuania 5.76 5.76 5.75 5.74 5.74 5.73 5.72 5.72 5.71 5.7 5.7 5.69 5.68 5.67 5.67 5.66 5.65 5.65 5.64 5.63 5.63 5.62 5.61 5.61 5.6 5.59 5.59 5.58 5.57 5.57 5.56 5.55 5.55 5.54 5.53 5.53 5.52 5.51 5.51 5.5 5.49 5.49 5.48 5.47 5.47 5.46 5.45 5.45 5.44 5.43 5.43 5.42 5.41 5.41 5.4 5.39 5.39 5.38 5.37 5.37 5.36 5.35 5.35 5.34 5.33 5.33 5.32 5.31 5.31 5.3 5.29 5.29 5.28 5.27 5.27 5.26 5.25 5.25 5.24 5.23 5.23 5.22 5.21 5.21 5.2 5.19 5.19 5.18 5.17 5.17 5.16 5.15 5.15 5.14 5.13 5.13 5.12 5.11 5.06 5.01 4.96 4.91 4.86 4.81 4.76 4.7 4.65 4.6 4.55 4.5 4.45 4.4 4.35 4.3 4.25 4.19 4.14 4.09 4.04 3.99 3.94 3.89 3.84 3.79 3.73 3.68 3.63 3.64 3.65 3.66 3.67 3.56 3.46 3.35 3.24 3.14 3.12 3.11 3.1 3.09 3.08 3.04 3 2.96 2.92 2.88 2.84 2.8 2.76 2.72 2.68 2.69 2.71 2.72 2.72 2.72 2.7 2.67 2.64 2.59 2.55 2.5 2.46 2.42 2.38 2.35 2.33 2.32 2.31 2.31 2.31 2.3 2.29 2.27 2.24 2.21 2.17 2.13 2.1 2.07 2.06 2.05 2.05 2.05 2.06 2.06 2.06 2.05 2.03 2 1.96 1.91 1.85 1.78 1.71 1.64 1.57 1.5 1.44 1.38 1.34 1.31 1.29 1.29 1.3 1.33 1.35 1.39 1.42 1.45 1.47 1.49 1.5 1.52 1.53 1.55 +Luxembourg 4.78 4.78 4.77 4.77 4.77 4.77 4.76 4.76 4.76 4.76 4.75 4.75 4.75 4.75 4.74 4.74 4.74 4.73 4.73 4.73 4.73 4.72 4.72 4.72 4.72 4.71 4.71 4.71 4.71 4.7 4.7 4.69 4.69 4.68 4.67 4.67 4.66 4.65 4.65 4.64 4.64 4.63 4.62 4.62 4.61 4.6 4.6 4.59 4.58 4.58 4.57 4.7 4.34 4.24 4.37 4.11 4.33 4.33 4.49 4.76 4.53 4.46 4.35 4.56 4.43 4.36 4.25 4.32 4.25 4.33 4.43 4.25 4.27 4.36 4.45 4.16 4.62 4.48 4.33 4.45 4.26 4.29 4.18 4.02 4.32 4.01 4.12 3.99 3.89 3.89 3.78 3.94 3.76 3.91 3.82 3.86 3.84 3.97 3.89 4.07 4.04 4.22 4.18 4.14 4.1 4.06 4.03 4 3.98 3.95 3.92 3.75 3.57 3.4 3.22 3.05 3.01 2.96 2.92 2.87 2.83 2.78 2.73 2.67 2.62 2.57 2.6 2.63 2.65 2.68 2.71 2.54 2.37 2.19 2.02 1.85 1.82 1.8 1.77 1.75 1.72 1.73 1.74 1.74 1.75 1.76 2.33 2.89 2.55 2.21 1.87 1.9 1.95 2.01 2.06 2.12 2.17 2.22 2.27 2.31 2.35 2.38 2.39 2.39 2.37 2.34 2.29 2.22 2.14 2.05 1.96 1.87 1.78 1.7 1.63 1.57 1.53 1.5 1.48 1.46 1.46 1.45 1.45 1.45 1.45 1.45 1.46 1.47 1.5 1.53 1.56 1.6 1.64 1.67 1.69 1.71 1.72 1.72 1.72 1.71 1.7 1.68 1.67 1.65 1.64 1.63 1.62 1.62 1.63 1.63 1.64 1.65 1.66 1.67 1.68 1.69 +Macedonia, FYR 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.86 5.82 5.78 5.74 5.7 5.66 5.62 5.58 5.55 5.51 5.47 5.43 5.7 5.96 5.97 5.98 5.98 5.99 6 6 5.95 5.89 5.84 5.78 5.73 5.67 5.62 5.56 5.51 5.45 5.45 5.44 5.44 5.43 5.43 5.42 5.42 5.41 5.41 5.4 5.43 5.46 5.48 5.51 5.54 5.57 5.6 5.63 5.65 5.68 5.54 5.41 5.27 5.13 5 5.04 5.09 5.13 5.18 5.23 5.2 5.17 5.14 5.11 5.08 5.06 5.03 5 4.97 4.94 4.91 4.89 4.86 4.83 4.8 4.77 4.74 4.72 4.69 4.66 4.63 4.6 4.57 4.55 4.52 4.49 4.46 4.43 4.4 4.37 4.35 4.32 4.29 4.26 4.23 4.2 4.18 4.15 4.12 4.09 4.07 4.03 3.99 3.95 3.92 3.88 3.84 3.81 3.77 3.72 3.67 3.6 3.53 3.45 3.36 3.27 3.19 3.11 3.04 2.98 2.93 2.88 2.83 2.79 2.75 2.7 2.67 2.63 2.6 2.57 2.54 2.51 2.47 2.44 2.4 2.37 2.34 2.31 2.28 2.24 2.21 2.16 2.11 2.05 1.99 1.92 1.85 1.79 1.73 1.68 1.64 1.6 1.57 1.54 1.52 1.5 1.49 1.47 1.46 1.45 1.44 1.44 1.43 1.43 1.43 +Madagascar 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.91 6.92 6.94 6.96 6.97 6.99 7 7.02 7.04 7.05 7.07 7.09 7.1 7.12 7.14 7.15 7.17 7.19 7.2 7.22 7.23 7.25 7.27 7.28 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.3 7.31 7.32 7.32 7.33 7.33 7.32 7.3 7.27 7.22 7.13 7.01 6.86 6.69 6.51 6.36 6.24 6.17 6.14 6.15 6.18 6.23 6.26 6.27 6.26 6.23 6.18 6.13 6.07 6 5.92 5.84 5.75 5.65 5.55 5.44 5.34 5.23 5.13 5.04 4.95 4.87 4.79 4.72 4.65 4.59 4.53 4.47 4.41 4.35 +Malawi 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.78 6.79 6.78 6.78 6.78 6.79 6.8 6.81 6.83 6.86 6.88 6.91 6.95 6.98 7.02 7.06 7.1 7.14 7.18 7.22 7.26 7.3 7.35 7.39 7.43 7.48 7.52 7.56 7.58 7.61 7.62 7.62 7.62 7.61 7.6 7.58 7.55 7.49 7.4 7.29 7.15 7 6.85 6.72 6.61 6.54 6.48 6.45 6.41 6.37 6.32 6.25 6.19 6.12 6.06 6 5.95 5.9 5.84 5.78 5.71 5.64 5.55 5.47 5.39 5.31 5.23 +Malaysia 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.45 5.4 5.35 5.3 5.25 5.19 5.14 5.09 5.04 4.99 4.94 4.89 4.84 4.91 4.99 5.07 5.15 5.23 5.43 5.63 5.45 5.33 5.2 5.07 4.94 4.82 4.69 5.05 5.41 5.81 6.2 6.21 6.23 6.24 6.25 6.26 6.26 6.26 6.25 6.23 6.19 6.14 6.05 5.94 5.81 5.66 5.49 5.33 5.17 5.01 4.87 4.74 4.6 4.47 4.34 4.21 4.09 3.99 3.91 3.84 3.79 3.75 3.73 3.7 3.68 3.66 3.63 3.6 3.58 3.55 3.52 3.49 3.45 3.42 3.39 3.34 3.28 3.19 3.09 2.96 2.83 2.68 2.54 2.42 2.31 2.22 2.15 2.09 2.05 2.02 2 1.99 1.98 1.96 1.95 1.94 +Maldives 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.98 5.96 5.95 5.93 5.92 5.9 5.89 5.87 5.86 5.84 5.83 5.81 5.8 5.78 5.76 5.75 5.73 5.72 5.7 5.69 5.67 5.66 5.64 5.63 5.61 5.6 5.72 5.94 6.15 6.34 6.5 6.64 6.76 6.87 6.95 7.02 7.08 7.12 7.15 7.18 7.2 7.22 7.23 7.24 7.24 7.23 7.2 7.16 7.1 7.04 6.98 6.94 6.93 6.95 7 7.07 7.15 7.21 7.25 7.24 7.18 7.06 6.89 6.66 6.4 6.1 5.78 5.46 5.15 4.85 4.56 4.29 4.02 3.76 3.51 3.27 3.06 2.87 2.72 2.6 2.51 2.45 2.41 2.38 2.36 2.34 2.31 2.29 2.26 2.22 2.18 +Mali 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.24 6.24 6.25 6.26 6.26 6.27 6.28 6.28 6.29 6.3 6.31 6.31 6.32 6.33 6.33 6.34 6.35 6.35 6.36 6.37 6.37 6.38 6.39 6.39 6.4 6.42 6.47 6.51 6.54 6.57 6.6 6.63 6.66 6.68 6.7 6.73 6.75 6.77 6.79 6.82 6.84 6.86 6.88 6.89 6.9 6.91 6.92 6.94 6.95 6.97 6.98 7 7.02 7.03 7.05 7.06 7.07 7.08 7.09 7.09 7.1 7.09 7.09 7.08 7.06 7.04 7.02 7 6.97 6.95 6.92 6.9 6.87 6.85 6.84 6.82 6.81 6.8 6.8 6.8 6.8 6.81 6.82 6.83 6.84 6.85 6.85 6.85 6.83 6.81 +Malta 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.49 5.48 5.46 5.45 5.44 5.42 5.41 5.4 5.38 5.37 5.36 5.34 5.33 5.32 5.31 5.29 5.28 5.27 5.25 5.24 5.23 5.28 5.33 5.39 5.44 5.49 5.36 5.23 5.1 4.97 4.84 4.69 4.54 4.39 4.24 4.09 4.19 4.3 4.41 4.52 4.62 4.59 4.56 4.53 4.49 4.46 4.49 4.51 4.53 4.56 4.58 4.58 4.57 4.57 4.56 4.56 4.52 4.48 4.44 4.4 4.36 4.51 4.67 4.83 4.99 5.15 5.13 5.12 4.84 4.57 4.21 4.2 4.16 4.12 4.07 4.01 3.94 3.86 3.77 3.66 3.53 3.38 3.2 3.01 2.8 2.59 2.4 2.24 2.11 2.02 1.98 1.96 1.98 2 2.03 2.06 2.08 2.09 2.1 2.1 2.09 2.08 2.06 2.06 2.05 2.06 2.06 2.06 2.07 2.06 2.05 2.04 2.02 2 1.97 1.93 1.88 1.82 1.75 1.67 1.59 1.52 1.46 1.42 1.39 1.38 1.37 1.38 1.38 1.38 1.37 1.37 1.36 1.36 1.35 1.35 +Mauritania 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.33 6.32 6.31 6.3 6.3 6.29 6.28 6.27 6.26 6.25 6.24 6.23 6.22 6.22 6.21 6.2 6.19 6.18 6.17 6.16 6.15 6.14 6.13 6.13 6.12 6.18 6.3 6.4 6.49 6.57 6.63 6.69 6.73 6.76 6.78 6.79 6.79 6.8 6.8 6.8 6.8 6.8 6.8 6.79 6.78 6.77 6.76 6.74 6.71 6.68 6.64 6.59 6.54 6.48 6.43 6.37 6.31 6.26 6.22 6.18 6.14 6.1 6.07 6.02 5.98 5.93 5.88 5.82 5.76 5.7 5.63 5.57 5.51 5.44 5.38 5.32 5.26 5.21 5.15 5.1 5.04 4.99 4.94 4.89 4.84 4.78 4.73 4.67 4.61 4.55 +Mauritius 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5.03 5 4.98 4.95 4.93 4.9 4.89 4.87 4.85 4.83 4.81 4.84 4.87 4.9 4.93 4.96 5 5.04 5.09 5.13 5.17 5.13 5.1 5.06 5.02 4.98 4.91 4.83 4.76 4.68 4.61 5.25 5.11 4.96 4.81 4.66 4.67 4.68 4.69 4.7 4.7 4.9 5.11 5.31 5.51 5.71 5.41 5.12 4.82 4.53 4.23 4.27 4.3 4.33 4.36 4.4 4.3 4.2 4.1 4 3.9 4.15 4.4 4.65 4.9 5.15 5.33 5.51 5.69 5.87 6.05 5.99 5.9 5.84 5.82 5.83 5.87 5.94 6.03 6.11 6.17 6.18 6.12 5.99 5.79 5.51 5.19 4.85 4.52 4.21 3.95 3.74 3.58 3.44 3.34 3.26 3.17 3.07 2.95 2.82 2.67 2.53 2.41 2.33 2.27 2.25 2.26 2.27 2.29 2.3 2.29 2.28 2.25 2.22 2.18 2.14 2.11 2.07 2.04 2.02 1.99 1.97 1.93 1.88 1.82 1.75 1.69 1.63 1.58 1.54 1.52 1.51 1.5 1.5 1.5 1.5 +Mexico 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.8 6.52 6.23 6.22 6.2 6.19 6.18 6.16 6.09 6.01 5.94 5.86 5.79 5.72 5.65 5.58 5.51 5.44 5.57 5.69 5.82 5.94 6.07 6.04 6.02 5.99 5.96 5.94 5.94 5.95 5.96 5.97 5.98 5.95 5.92 5.89 5.86 5.83 5.86 5.89 5.92 5.95 5.98 6.06 6.14 6.22 6.3 6.38 6.46 6.54 6.62 6.64 6.69 6.73 6.76 6.78 6.79 6.8 6.8 6.79 6.78 6.78 6.77 6.77 6.77 6.77 6.77 6.78 6.78 6.76 6.72 6.64 6.53 6.36 6.16 5.93 5.68 5.42 5.16 4.92 4.71 4.51 4.33 4.17 4.03 3.9 3.78 3.67 3.57 3.47 3.38 3.29 3.2 3.12 3.04 2.97 2.9 2.83 2.77 2.71 2.66 2.61 2.57 2.52 2.48 2.45 2.41 2.38 2.35 2.31 2.28 2.25 2.22 2.19 2.16 2.13 +Micronesia, Fed. Sts. 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6.07 6.12 6.17 6.23 6.28 6.33 6.38 6.43 6.48 6.53 6.58 6.64 6.69 6.74 6.79 6.84 6.89 6.94 7 7.05 7.1 7.15 7.2 7.25 7.3 7.28 7.22 7.17 7.13 7.09 7.05 7.01 6.98 6.96 6.93 6.92 6.91 6.9 6.89 6.89 6.9 6.91 6.92 6.94 6.94 6.93 6.89 6.84 6.77 6.68 6.59 6.49 6.4 6.31 6.22 6.13 6.02 5.89 5.75 5.6 5.45 5.3 5.17 5.05 4.96 4.88 4.82 4.77 4.72 4.66 4.61 4.54 4.47 4.39 4.3 4.2 4.11 4.01 3.91 3.82 3.74 3.66 3.59 3.52 3.46 3.4 3.35 3.29 3.24 3.19 +Moldova 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.39 6.37 6.34 6.31 6.28 6.25 6.22 6.2 6.17 6.14 6.11 6.08 6.05 6.03 6 5.97 5.94 5.91 5.88 5.86 5.83 5.8 5.77 5.74 5.71 5.69 5.66 5.63 5.6 5.57 5.42 5.26 5.1 4.95 4.79 4.63 4.48 4.32 4.17 4.01 3.85 3.7 3.54 3.38 3.39 3.4 3.41 3.42 3.43 3.44 3.45 3.46 3.47 3.48 3.49 3.5 3.51 3.51 3.5 3.49 3.46 3.43 3.38 3.33 3.26 3.18 3.09 2.99 2.89 2.8 2.72 2.66 2.61 2.58 2.56 2.54 2.52 2.5 2.48 2.47 2.46 2.45 2.46 2.48 2.51 2.55 2.59 2.62 2.64 2.65 2.63 2.58 2.51 2.41 2.31 2.19 2.08 1.98 1.88 1.8 1.73 1.67 1.61 1.57 1.54 1.51 1.5 1.49 1.49 1.49 1.49 1.49 1.48 1.48 1.47 1.46 1.46 1.45 1.45 +Mongolia 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.92 5.9 5.89 5.87 5.85 5.83 5.82 5.8 5.78 5.76 5.75 5.73 5.71 5.69 5.67 5.66 5.64 5.62 5.6 5.59 5.57 5.55 5.53 5.51 5.5 5.5 5.54 5.61 5.71 5.86 6.04 6.25 6.48 6.72 6.95 7.17 7.35 7.48 7.56 7.59 7.6 7.59 7.58 7.58 7.57 7.55 7.5 7.41 7.29 7.14 6.97 6.78 6.59 6.4 6.21 6.03 5.86 5.7 5.53 5.35 5.14 4.91 4.64 4.36 4.05 3.75 3.45 3.18 2.94 2.74 2.57 2.43 2.31 2.22 2.14 2.1 2.09 2.1 2.14 2.19 2.25 2.32 2.37 2.41 2.44 2.45 2.45 2.44 2.42 2.4 +Montenegro 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.86 5.82 5.78 5.73 5.69 5.65 5.61 5.57 5.53 5.48 5.44 5.4 5.4 5.39 5.39 5.38 5.38 5.38 5.37 5.37 5.36 5.36 5.35 5.35 5.35 5.34 5.34 5.33 5.33 5.33 5.32 5.32 5.31 5.31 5.3 5.3 5.3 5.29 5.29 5.28 5.28 5.28 5.27 5.27 5.26 5.26 5.25 5.25 5.25 5.24 5.24 5.23 5.23 5.23 5.22 5.22 5.21 5.21 5.2 5.2 5.17 5.14 5.12 5.09 5.06 5.03 5 4.98 4.95 4.92 4.89 4.86 4.84 4.81 4.78 4.75 4.72 4.7 4.67 4.64 4.61 4.58 4.56 4.53 4.5 4.47 4.44 4.42 4.39 4.36 4.33 4.3 4.28 4.25 4.22 4.19 4.16 4.14 4.11 4.08 4.07 4.05 4.02 3.98 3.93 3.86 3.79 3.71 3.62 3.52 3.42 3.31 3.2 3.09 2.99 2.91 2.83 2.77 2.73 2.69 2.66 2.63 2.59 2.55 2.5 2.45 2.4 2.35 2.31 2.27 2.23 2.19 2.15 2.1 2.06 2.02 1.98 1.94 1.9 1.87 1.84 1.83 1.82 1.81 1.82 1.82 1.82 1.83 1.82 1.82 1.8 1.79 1.78 1.77 1.76 1.75 1.73 1.72 1.71 1.7 1.69 1.68 1.67 1.66 1.65 +Morocco 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.5 6.53 6.58 6.63 6.69 6.76 6.82 6.89 6.95 7.01 7.07 7.11 7.13 7.14 7.12 7.08 7.02 6.95 6.87 6.78 6.69 6.59 6.49 6.38 6.27 6.17 6.07 5.97 5.88 5.78 5.68 5.57 5.44 5.29 5.12 4.94 4.75 4.57 4.39 4.22 4.06 3.91 3.76 3.61 3.46 3.31 3.17 3.03 2.91 2.8 2.7 2.61 2.54 2.47 2.42 2.39 2.38 2.4 2.44 2.51 2.58 2.65 2.71 2.74 2.74 2.71 +Mozambique 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.63 6.62 6.62 6.62 6.62 6.62 6.62 6.62 6.62 6.61 6.61 6.61 6.61 6.61 6.61 6.61 6.61 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.59 6.59 6.58 6.57 6.56 6.55 6.54 6.53 6.52 6.51 6.49 6.47 6.46 6.44 6.42 6.4 6.37 6.35 6.31 6.28 6.24 6.19 6.14 6.09 6.03 5.98 5.93 5.88 5.84 5.81 5.78 5.76 5.74 5.72 5.7 5.67 5.63 5.59 5.54 5.48 5.41 5.34 5.26 5.19 5.11 5.04 +Myanmar 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.03 6.02 6 5.99 5.99 5.99 5.99 6 6.01 6.03 6.05 6.07 6.1 6.12 6.13 6.14 6.13 6.11 6.07 6.02 5.96 5.88 5.79 5.69 5.59 5.49 5.39 5.29 5.19 5.1 5 4.89 4.76 4.62 4.46 4.28 4.09 3.91 3.73 3.57 3.42 3.28 3.16 3.05 2.95 2.85 2.76 2.68 2.59 2.51 2.43 2.35 2.29 2.23 2.18 2.14 2.1 2.08 2.05 2.03 2 1.98 1.96 1.94 1.92 1.9 +Namibia 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.96 5.97 5.99 6.01 6.03 6.05 6.07 6.09 6.11 6.13 6.15 6.17 6.18 6.2 6.22 6.24 6.26 6.3 6.35 6.4 6.46 6.52 6.57 6.61 6.64 6.65 6.65 6.62 6.58 6.52 6.45 6.36 6.26 6.15 6.02 5.89 5.76 5.63 5.49 5.36 5.23 5.1 4.97 4.84 4.72 4.59 4.47 4.35 4.24 4.13 4.03 3.94 3.85 3.76 3.67 3.59 3.51 3.44 3.36 3.3 3.23 3.17 3.11 3.05 3 2.95 +Nepal 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.15 6.14 6.14 6.13 6.12 6.12 6.11 6.11 6.1 6.09 6.09 6.08 6.07 6.07 6.06 6.06 6.05 6.04 6.04 6.03 6.02 6.02 6.01 6 6 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 5.99 6 6 6 6 6 5.99 5.99 5.98 5.97 5.96 5.95 5.93 5.91 5.89 5.87 5.85 5.82 5.8 5.76 5.72 5.68 5.63 5.57 5.51 5.44 5.38 5.31 5.24 5.17 5.09 5 4.91 4.82 4.71 4.6 4.47 4.34 4.21 4.07 3.92 3.78 3.63 3.49 3.34 3.19 3.05 2.9 2.76 2.62 2.5 2.39 2.3 2.23 2.18 +Netherlands 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.11 5.09 5.06 5.04 5.02 4.99 4.99 4.99 4.99 4.99 4.89 4.8 4.7 4.6 4.6 4.6 4.6 4.6 4.6 4.68 4.75 4.83 4.9 4.98 4.99 5.01 5.02 5.04 5.05 5.09 5.12 5.16 5.19 5.23 5.27 5.31 5.34 5.38 5.42 5.39 5.35 5.32 5.28 5.25 5.23 5.21 5.18 5.16 5.14 5.11 5.07 5.04 5 4.97 4.93 4.88 4.84 4.79 4.75 4.6 4.45 4.53 4.46 4.42 4.38 4.29 4.23 4.18 4.13 4.04 3.94 3.81 3.84 3.85 3.86 3.59 3.64 3.59 3.47 3.36 3.89 3.75 3.54 3.55 3.39 3.26 3.18 3.08 3.09 3 3.03 2.88 2.83 2.66 2.63 2.57 2.51 2.53 2.63 2.64 2.67 2.61 2.71 2.98 3.13 2.96 3.97 3.7 3.41 3.22 3.1 3.05 3.09 3.03 3.03 3.03 3.05 3.08 3.11 3.17 3.12 3.22 3.18 3.19 3.17 3.04 2.9 2.81 2.72 2.75 2.57 2.36 2.15 1.9 1.77 1.66 1.63 1.58 1.58 1.56 1.6 1.56 1.5 1.47 1.49 1.51 1.55 1.56 1.55 1.55 1.62 1.61 1.59 1.57 1.57 1.53 1.53 1.56 1.63 1.65 1.72 1.71 1.73 1.75 1.73 1.71 1.72 1.72 1.77 1.79 1.8 1.76 1.76 1.77 1.78 1.78 +New Zealand 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.25 5.07 5.29 5.12 4.96 5.06 5.16 4.84 4.73 5.16 5.51 5.75 5.65 5.65 5.61 5.67 5.45 5.29 5.22 5.37 5.39 5.59 5.53 5.62 5.4 5.46 5.09 5 4.86 4.81 4.6 4.44 4.3 4.18 4.03 3.94 3.89 3.73 3.69 3.66 3.59 3.53 3.48 3.45 3.37 3.43 3.53 3.47 3.57 3.61 3.65 3.63 3.66 3.68 3.66 3.51 3.48 3.55 3.5 3.48 3.39 3.48 3.44 3.14 2.87 3.36 3.13 3.11 2.94 2.89 2.84 2.82 2.72 2.62 2.55 2.52 2.56 2.42 2.37 2.36 2.33 2.42 2.53 2.58 2.71 3.03 3.22 3.1 2.85 3.08 3.29 3.63 3.71 3.59 3.5 3.47 3.27 3.32 3.39 3.46 3.49 3.47 3.51 3.56 3.55 3.54 3.61 3.51 3.41 3.22 3.05 3.13 3 3.02 3.01 2.95 3.02 2.9 2.73 2.61 2.46 2.37 2.32 2.19 2.24 2.15 2.16 2.1 2.1 2.12 2.14 2.16 2.24 2.32 2.33 2.4 2.36 2.31 2.22 2.13 2.11 2.07 2.05 1.96 2 1.98 1.96 1.95 1.98 2.02 2.05 2.09 2.11 2.12 2.13 2.12 2.1 2.07 2.05 2.03 2.02 +Nicaragua 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.16 6.21 6.26 6.31 6.36 6.4 6.45 6.5 6.55 6.6 6.64 6.69 6.74 6.79 6.84 6.88 6.98 7.16 7.3 7.4 7.47 7.5 7.5 7.46 7.41 7.34 7.26 7.18 7.11 7.05 7.01 6.98 6.96 6.94 6.92 6.89 6.86 6.81 6.75 6.68 6.6 6.51 6.42 6.33 6.23 6.13 6.02 5.89 5.75 5.59 5.43 5.27 5.12 4.99 4.87 4.75 4.64 4.52 4.38 4.23 4.06 3.88 3.7 3.54 3.38 3.25 3.14 3.05 2.97 2.9 2.85 2.8 2.76 2.72 2.68 2.63 2.59 2.54 2.5 2.46 2.42 +Niger 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.83 6.84 6.84 6.84 6.84 6.84 6.84 6.84 6.84 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.86 6.86 6.86 6.86 6.86 6.87 6.88 6.89 6.91 6.93 6.95 6.97 7 7.02 7.05 7.08 7.12 7.15 7.19 7.22 7.26 7.3 7.34 7.38 7.42 7.46 7.5 7.53 7.55 7.58 7.6 7.63 7.65 7.68 7.71 7.73 7.75 7.76 7.77 7.78 7.77 7.77 7.77 7.76 7.76 7.76 7.77 7.77 7.77 7.77 7.77 7.77 7.76 7.74 7.73 7.7 7.68 7.66 7.64 7.62 7.6 7.59 7.59 7.59 7.58 7.58 7.57 7.56 7.54 7.51 +Nigeria 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.55 6.54 6.53 6.53 6.52 6.51 6.5 6.5 6.49 6.48 6.47 6.47 6.46 6.45 6.44 6.43 6.43 6.42 6.41 6.4 6.4 6.39 6.38 6.37 6.36 6.36 6.36 6.35 6.35 6.35 6.35 6.35 6.35 6.36 6.36 6.35 6.35 6.35 6.34 6.34 6.34 6.34 6.36 6.39 6.43 6.47 6.52 6.58 6.63 6.67 6.71 6.74 6.76 6.77 6.78 6.78 6.78 6.77 6.75 6.73 6.7 6.66 6.63 6.58 6.54 6.49 6.44 6.4 6.35 6.3 6.26 6.22 6.19 6.15 6.13 6.1 6.08 6.06 6.04 6.03 6.02 6.02 6.02 6.02 6.02 6.02 6.02 6 5.98 5.94 5.89 +Norway 4.32 4.07 3.91 4.2 3.94 4.33 4.39 4.27 4 3.21 3.87 3.99 4.26 3.76 3.53 4.4 5.05 4.67 4.43 4.59 4.79 5 4.74 4.88 4.67 4.94 5.01 4.61 4.58 4.84 4.65 4.46 4.3 4.42 4.56 4.7 4.23 4.13 4.36 3.84 4.01 4.29 4.42 4.34 4.31 4.49 4.4 4.43 4.28 4.61 4.45 4.6 4.46 4.6 4.93 4.61 4.42 4.54 4.62 4.82 4.63 4.3 4.52 4.69 4.55 4.6 4.61 4.38 4.3 4.22 4.26 4.29 4.4 4.41 4.59 4.67 4.68 4.69 4.64 4.71 4.53 4.4 4.47 4.51 4.59 4.56 4.48 4.56 4.42 4.31 4.43 4.51 4.35 4.47 4.38 4.52 4.47 4.48 4.53 4.47 4.4 4.37 4.26 4.16 4.07 3.95 3.92 3.87 3.87 3.96 3.82 3.8 3.72 3.64 3.62 3.37 3.43 3.53 3.44 3.17 3.61 3.31 3.18 3.09 2.85 2.61 2.59 2.38 2.34 2.23 2.19 2.08 2.04 1.86 1.82 1.78 1.8 1.84 1.88 1.91 1.95 1.83 2.11 2.26 2.45 2.43 2.77 2.66 2.6 2.52 2.52 2.48 2.61 2.66 2.7 2.79 2.86 2.86 2.89 2.91 2.88 2.91 2.89 2.91 2.96 2.93 2.89 2.8 2.75 2.69 2.5 2.49 2.38 2.23 2.13 1.98 1.86 1.75 1.77 1.75 1.72 1.7 1.71 1.66 1.66 1.68 1.71 1.75 1.84 1.89 1.93 1.92 1.88 1.86 1.87 1.87 1.89 1.86 1.81 1.85 1.85 1.78 1.75 1.8 1.83 1.84 1.9 1.9 1.96 1.98 1.95 1.88 1.85 1.93 1.93 1.93 +Oman 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.88 6.89 6.91 6.92 6.94 6.95 6.97 6.98 7 7.01 7.03 7.04 7.06 7.07 7.09 7.1 7.12 7.13 7.15 7.16 7.18 7.19 7.21 7.22 7.24 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.26 7.26 7.27 7.28 7.28 7.29 7.29 7.31 7.35 7.41 7.5 7.62 7.75 7.89 8.02 8.14 8.23 8.3 8.34 8.35 8.34 8.3 8.22 8.1 7.93 7.72 7.46 7.16 6.83 6.47 6.1 5.72 5.35 4.98 4.63 4.3 3.99 3.72 3.49 3.3 3.14 3.03 2.95 2.91 2.89 2.89 2.89 2.9 2.9 2.88 2.85 2.81 2.75 +Pakistan 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.59 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.61 6.61 6.61 6.61 6.61 6.6 6.58 6.56 6.54 6.51 6.48 6.46 6.44 6.41 6.37 6.31 6.23 6.14 6.02 5.9 5.77 5.63 5.5 5.36 5.21 5.04 4.86 4.67 4.47 4.29 4.13 3.99 3.87 3.79 3.71 3.65 3.58 3.51 3.43 3.35 3.26 3.19 3.11 3.04 +Panama 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.36 5.38 5.4 5.4 5.39 5.39 5.39 5.39 5.44 5.48 5.53 5.58 5.63 5.5 5.38 5.25 5.12 5 5.07 5.14 5.22 5.29 5.36 5.33 5.31 5.28 5.25 5.23 5.18 5.14 5.1 5.05 5.01 5.02 5.03 5.04 5.05 5.07 5.11 5.16 5.2 5.25 5.29 5.31 5.32 5.33 5.35 5.36 5.47 5.57 5.68 5.7 5.75 5.79 5.82 5.85 5.87 5.88 5.89 5.88 5.87 5.85 5.81 5.77 5.71 5.64 5.56 5.47 5.38 5.28 5.17 5.06 4.94 4.81 4.68 4.54 4.4 4.26 4.13 4 3.88 3.78 3.67 3.58 3.49 3.41 3.33 3.26 3.2 3.13 3.08 3.02 2.98 2.95 2.92 2.9 2.88 2.87 2.86 2.84 2.82 2.8 2.78 2.75 2.72 2.7 2.67 2.64 2.61 2.58 2.55 2.52 2.49 2.47 2.44 2.42 +Papua New Guinea 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.24 6.24 6.24 6.25 6.25 6.26 6.27 6.27 6.28 6.28 6.28 6.28 6.27 6.26 6.24 6.23 6.21 6.19 6.16 6.14 6.11 6.08 6.04 6 5.95 5.9 5.84 5.77 5.69 5.61 5.52 5.42 5.31 5.21 5.11 5.02 4.93 4.86 4.8 4.76 4.72 4.7 4.69 4.67 4.65 4.63 4.6 4.56 4.51 4.45 4.39 4.34 4.28 4.23 4.17 4.12 4.07 4.01 3.95 3.9 3.84 3.78 3.73 3.67 +Paraguay 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.49 6.5 6.5 6.51 6.51 6.51 6.51 6.51 6.51 6.5 6.49 6.47 6.45 6.41 6.36 6.28 6.17 6.04 5.89 5.74 5.59 5.46 5.35 5.27 5.22 5.2 5.2 5.2 5.21 5.22 5.21 5.19 5.15 5.09 5.02 4.93 4.84 4.74 4.64 4.54 4.45 4.36 4.27 4.18 4.09 4.01 3.92 3.84 3.76 3.68 3.6 3.51 3.43 3.35 3.27 3.19 3.12 3.06 3.01 2.97 2.93 2.9 2.86 2.83 2.8 +Peru 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.82 6.81 6.8 6.79 6.78 6.77 6.76 6.75 6.74 6.73 6.72 6.71 6.7 6.69 6.68 6.67 6.66 6.65 6.64 6.63 6.62 6.61 6.6 6.59 6.58 6.57 6.56 6.55 6.54 6.53 6.53 6.54 6.56 6.58 6.59 6.61 6.63 6.64 6.66 6.68 6.69 6.71 6.73 6.74 6.76 6.78 6.79 6.81 6.83 6.84 6.86 6.86 6.85 6.85 6.85 6.85 6.86 6.86 6.87 6.88 6.88 6.87 6.86 6.84 6.8 6.75 6.68 6.61 6.52 6.42 6.31 6.19 6.07 5.95 5.83 5.7 5.57 5.44 5.3 5.15 5.01 4.87 4.73 4.6 4.48 4.36 4.25 4.14 4.04 3.93 3.83 3.72 3.62 3.51 3.41 3.32 3.23 3.14 3.06 2.99 2.93 2.87 2.82 2.77 2.73 2.69 2.65 2.61 2.58 2.55 2.51 2.48 2.45 2.42 2.39 2.36 +Philippines 6.45 6.41 6.38 6.34 6.3 6.26 6.23 6.19 6.12 6.04 5.97 5.89 5.82 6.01 6.2 6.39 6.58 6.77 6.79 6.82 6.85 6.87 6.9 6.96 7.02 7.08 7.14 7.2 7.1 7.01 6.91 6.82 6.73 6.6 6.46 6.33 6.2 6.07 6.01 5.96 5.9 5.85 5.79 5.87 5.94 6.02 6.1 6.18 6.23 6.28 6.34 6.39 6.45 6.44 6.43 6.42 6.41 6.41 6.42 6.44 6.46 6.48 6.5 6.47 6.45 6.42 6.39 6.37 6.39 6.42 6.45 6.48 6.51 6.43 6.35 6.27 6.19 6.07 5.94 5.82 5.97 6.13 6.29 6.45 6.61 6.77 6.9 7.2 6.73 6.07 5.79 6.18 6.45 6.41 6.5 6.37 6.51 6.57 6.38 6.37 6.36 6.35 6.35 6.34 5.07 5.48 4.86 5.55 5.8 5.17 5.83 5.94 5.92 5.96 6.32 5.95 6 6.04 5.82 5.33 5.84 5.95 5.99 6.06 5.99 5.91 5.84 6.07 6.1 6.1 5.74 5.74 5.71 5.72 5.51 5.53 5.65 5.8 5.68 5.62 5.56 5.51 5.45 5.39 5.33 5.27 5.21 5.43 5.56 6.5 7.45 7.44 7.43 7.42 7.39 7.37 7.33 7.3 7.25 7.2 7.15 7.09 7.02 6.95 6.87 6.78 6.69 6.59 6.49 6.38 6.26 6.15 6.04 5.93 5.82 5.72 5.61 5.51 5.4 5.29 5.18 5.08 4.98 4.88 4.8 4.71 4.63 4.55 4.48 4.4 4.32 4.25 4.18 4.11 4.06 4.01 3.96 3.92 3.89 3.85 3.81 3.77 3.71 3.64 3.57 3.49 3.4 3.33 3.26 3.2 3.15 3.11 3.08 3.04 3.01 2.98 +Poland 6.28 6.26 6.25 6.23 6.22 6.2 6.19 6.17 6.16 6.14 6.12 6.11 6.09 6.08 6.06 6.05 6.03 6.03 6.16 6.3 6.03 6.3 6.03 5.76 5.49 6.83 6.16 6.3 6.22 6.14 6.06 5.98 5.9 6.43 6.83 5.9 6.3 6.57 6.03 6.43 6.57 6.16 6.43 6.3 6.03 5.36 5.49 5.09 4.82 5.49 5.63 5.63 5.49 5.63 5.36 4.82 5.36 5.76 6.3 6.57 6.57 6.43 6.97 6.57 6.2 5.83 5.46 5.09 5.63 5.63 6.16 5.76 5.49 5.76 5.76 5.49 5.49 5.23 5.23 5.36 5.23 5.09 5.23 5.23 5.09 5.36 5.36 5.36 5.49 5.76 5.63 5.63 5.36 5.63 5.9 5.9 5.76 5.63 5.49 5.49 5.49 5.36 5.36 5.09 5.09 4.96 5.09 5.09 4.96 4.96 4.82 4.69 4.56 4.69 4.82 3.89 3.62 3.22 3.22 4.42 4.69 4.4 4.73 4.82 4.69 4.74 4.44 4.23 4.29 4.26 4.33 4.05 3.87 3.55 3.56 3.5 3.51 3.34 3.26 3.23 3.21 3.18 3.16 3.13 3.11 3.08 3.06 3.51 3.93 3.94 3.66 3.66 3.65 3.62 3.57 3.51 3.43 3.33 3.22 3.1 2.97 2.85 2.72 2.6 2.5 2.41 2.35 2.3 2.26 2.24 2.23 2.23 2.23 2.24 2.24 2.25 2.26 2.27 2.28 2.3 2.31 2.32 2.32 2.31 2.29 2.27 2.23 2.19 2.14 2.09 2.04 1.98 1.91 1.84 1.76 1.68 1.6 1.52 1.45 1.39 1.34 1.3 1.28 1.27 1.27 1.28 1.29 1.31 1.33 1.35 1.37 1.39 1.4 1.42 1.43 1.44 +Portugal 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.5 4.47 4.44 4.41 4.38 4.35 4.33 4.3 4.27 4.24 4.21 4.18 4.15 4.12 4.09 4.1 4.11 4.12 4.14 4.15 4.16 4.17 4.18 4.19 4.2 4.21 4.22 4.23 4.24 4.23 4.22 4.21 4.19 4.18 4.17 4.16 4.15 4.38 4.3 4.38 4.24 4.16 4.06 4.15 3.86 3.9 3.9 3.95 3.93 3.89 3.97 4.07 4.16 4.29 4.11 4.13 4.17 3.99 3.94 3.89 4.12 5.02 4.54 4.23 4.1 4.24 4.17 4.08 3.86 3.59 4.37 4.21 4.3 4.32 4.26 4.24 4.36 4.03 4.15 3.89 3.86 3.86 3.89 3.88 3.74 3.59 3.45 3.39 3.34 3.28 3.22 3.12 3.14 3.27 3.28 3.39 3.29 3.14 3.42 3.23 3.1 3.1 3.1 3.1 3.1 3.1 3.11 3.12 3.13 3.15 3.16 3.18 3.19 3.19 3.19 3.18 3.16 3.13 3.09 3.05 2.99 2.94 2.88 2.83 2.77 2.71 2.65 2.57 2.49 2.39 2.29 2.18 2.07 1.96 1.87 1.78 1.71 1.65 1.6 1.56 1.54 1.52 1.5 1.49 1.49 1.48 1.48 1.48 1.47 1.47 1.47 1.46 1.45 1.44 1.43 1.41 1.39 1.37 1.36 1.34 1.33 1.33 1.32 1.32 1.31 1.31 +Qatar 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.98 6.98 6.99 6.99 6.99 6.98 6.97 6.95 6.92 6.87 6.79 6.7 6.6 6.47 6.34 6.21 6.08 5.95 5.81 5.67 5.5 5.33 5.13 4.93 4.72 4.52 4.33 4.16 4.02 3.89 3.8 3.72 3.65 3.59 3.53 3.48 3.41 3.33 3.24 3.13 3 2.85 2.7 2.56 2.42 2.3 2.2 2.13 2.09 2.06 2.04 2.02 2 1.98 +Romania 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.22 5.08 4.94 4.8 4.66 4.52 4.38 4.24 4.11 3.97 4.23 4.29 4.29 4.07 4.82 4.64 4.19 4.25 4.48 4.56 4.61 4.49 4.29 4.36 4.6 5.2 4.96 4.74 4.22 4.97 5.05 5.56 5.41 5.74 5.55 5.78 5.65 5.49 5.68 5.44 5.16 5.67 5.23 5.43 5.48 5.67 5.45 5.75 4.92 5.63 5.2 5.27 5.23 5.37 5.37 5.13 5.35 5.51 5.4 5.51 5.27 5.67 5.82 5.64 5.64 5.43 4.84 4.25 3.67 3.08 4.52 5.12 4.98 4.88 4.92 4.72 4.66 4.57 4.65 4.57 4.69 4.46 4.81 4.3 4.34 4.11 4.22 4.13 3.97 3.79 3.55 3.08 2.87 3.14 2.91 2.63 3.32 3.14 3.2 3.7 3.58 3.46 3.34 3.22 3.1 2.99 2.87 2.73 2.58 2.41 2.32 2.16 2.02 2 1.95 1.89 1.89 3.65 3.61 3.19 2.87 2.65 2.53 2.42 2.71 2.62 2.57 2.58 2.51 2.5 2.44 2.35 2.16 2 2.18 2.27 2.37 2.41 2.3 2.18 1.81 1.56 1.49 1.43 1.42 1.35 1.32 1.3 1.29 1.28 1.27 1.27 1.27 1.28 1.29 1.3 1.31 1.33 1.34 1.36 1.37 1.39 1.4 1.42 1.43 1.45 +Russia 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7 7.01 7.02 7.03 7.05 7.06 7.08 7.08 7.07 7.07 7.07 7.06 7.05 7.03 7.01 7 6.98 6.97 6.95 6.93 6.95 6.96 6.98 6.99 7.01 7.02 6.51 6.87 6.74 7.03 6.85 7.24 7.17 7.15 7.02 6.87 6.58 6.98 6.8 6.66 7.03 6.89 6.83 6.74 6.47 6.61 6.96 6.8 6.71 7.44 6.57 7.17 7.18 7.34 7.43 7.52 7.28 7.36 7.36 7.2 7.36 7.2 7.24 6.72 7.04 7.08 7.44 7.12 7.2 7.2 7.04 6.96 6.88 3.36 5.2 5.04 5.72 3.44 6.72 4.72 6 6.48 6.72 6.8 6.72 6.64 6.52 6.16 5.76 5.6 5.04 4 3.56 4.24 4.56 5.04 4.96 4.88 4.2 4.6 2.96 1.68 1.72 1.92 2.8 2.96 2.56 3.12 2.88 2.88 2.88 2.72 2.96 2.8 2.72 2.76 2.69 2.58 2.56 2.46 2.34 2.28 2.16 2.09 2.1 2.01 1.97 1.98 2 2.02 2.03 1.96 2 1.97 1.95 1.92 1.9 1.87 1.86 1.88 1.96 2.09 2.05 2.05 2.18 2.23 2.14 2.02 1.89 1.73 1.55 1.37 1.4 1.34 1.27 1.22 1.23 1.16 1.2 1.22 1.29 1.33 1.34 1.29 1.3 1.41 1.49 1.54 1.57 1.58 1.59 1.6 1.6 1.61 +Rwanda 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.07 7.11 7.14 7.18 7.21 7.24 7.28 7.31 7.34 7.38 7.41 7.44 7.48 7.51 7.55 7.58 7.61 7.65 7.68 7.71 7.75 7.78 7.82 7.85 7.88 7.92 7.94 7.98 8.02 8.06 8.09 8.12 8.14 8.16 8.18 8.19 8.19 8.2 8.2 8.2 8.2 8.2 8.2 8.21 8.22 8.23 8.25 8.28 8.31 8.34 8.37 8.4 8.42 8.44 8.45 8.45 8.44 8.42 8.4 8.36 8.28 8.17 8 7.79 7.54 7.27 7.01 6.77 6.57 6.42 6.31 6.23 6.16 6.09 6 5.9 5.79 5.67 5.57 5.46 5.37 5.27 5.17 5.06 4.95 4.84 4.73 4.62 4.51 4.4 4.31 +Samoa 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 6.98 7.01 7.03 7.06 7.09 7.11 7.14 7.16 7.19 7.22 7.24 7.27 7.3 7.32 7.35 7.38 7.4 7.43 7.45 7.48 7.51 7.53 7.56 7.59 7.61 7.64 7.64 7.63 7.63 7.63 7.63 7.63 7.64 7.65 7.65 7.65 7.65 7.63 7.6 7.57 7.52 7.46 7.4 7.33 7.27 7.19 7.12 7.04 6.95 6.86 6.76 6.66 6.55 6.43 6.32 6.2 6.09 5.97 5.85 5.73 5.62 5.51 5.4 5.3 5.21 5.12 5.03 4.96 4.88 4.82 4.75 4.69 4.64 4.59 4.54 4.5 4.48 4.46 4.45 4.46 4.46 4.46 4.45 4.43 4.39 4.34 4.28 4.21 4.15 4.09 4.03 +Sao Tome and Principe 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.23 6.22 6.2 6.19 6.19 6.18 6.19 6.2 6.21 6.22 6.24 6.26 6.28 6.31 6.33 6.35 6.37 6.39 6.42 6.44 6.47 6.49 6.51 6.53 6.53 6.54 6.53 6.51 6.49 6.46 6.41 6.35 6.27 6.18 6.08 5.97 5.85 5.73 5.61 5.5 5.4 5.3 5.2 5.12 5.03 4.96 4.89 4.83 4.77 4.73 4.69 4.65 4.63 4.6 4.57 4.54 4.51 4.46 4.41 4.35 4.29 4.22 4.15 4.08 4.01 3.94 +Saudi Arabia 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.86 6.87 6.89 6.9 6.91 6.93 6.94 6.96 6.97 6.98 7 7.01 7.02 7.04 7.05 7.06 7.08 7.09 7.1 7.12 7.13 7.15 7.16 7.17 7.19 7.2 7.19 7.18 7.17 7.16 7.16 7.17 7.17 7.19 7.2 7.22 7.23 7.24 7.25 7.26 7.26 7.26 7.26 7.27 7.27 7.28 7.29 7.3 7.31 7.31 7.31 7.31 7.3 7.28 7.25 7.21 7.14 7.05 6.94 6.81 6.66 6.5 6.33 6.17 6 5.84 5.69 5.52 5.35 5.17 4.99 4.8 4.59 4.39 4.19 3.99 3.8 3.63 3.48 3.35 3.23 3.14 3.05 2.97 2.9 2.83 2.76 2.7 2.64 2.59 2.54 +Senegal 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.7 5.73 5.76 5.79 5.82 5.85 5.88 5.91 5.94 5.97 6 6.03 6.06 6.09 6.12 6.15 6.18 6.21 6.24 6.27 6.3 6.34 6.37 6.4 6.43 6.46 6.49 6.54 6.6 6.66 6.71 6.76 6.81 6.86 6.91 6.95 6.99 7.04 7.08 7.11 7.15 7.19 7.23 7.27 7.3 7.34 7.37 7.41 7.43 7.45 7.47 7.47 7.46 7.45 7.42 7.38 7.34 7.28 7.23 7.16 7.09 7.01 6.93 6.83 6.73 6.63 6.52 6.4 6.29 6.17 6.05 5.94 5.84 5.74 5.65 5.56 5.48 5.41 5.35 5.29 5.23 5.18 5.14 5.11 5.08 5.05 5.02 4.98 4.93 4.88 4.81 +Serbia 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.9 5.86 5.82 5.78 5.74 5.7 5.66 5.62 5.58 5.55 5.51 5.47 5.43 5.7 5.96 5.97 5.98 5.98 5.99 6 6 5.95 5.89 5.84 5.78 5.73 5.67 5.62 5.56 5.51 5.45 5.45 5.44 5.44 5.43 5.43 5.42 5.42 5.41 5.41 5.4 5.43 5.46 5.48 5.51 5.54 5.57 5.6 5.63 5.65 5.68 5.54 5.41 5.27 5.13 5 5.04 5.09 5.13 5.18 5.23 5.18 5.14 5.1 5.05 5.01 4.96 4.92 4.88 4.83 4.79 4.75 4.7 4.66 4.62 4.57 4.53 4.49 4.44 4.4 4.36 4.31 4.27 4.22 4.18 4.14 4.09 4.05 4.01 3.96 3.92 3.88 3.83 3.79 3.75 3.7 3.66 3.61 3.57 3.53 3.48 3.41 3.27 3.15 3.04 2.94 2.85 2.78 2.72 2.67 2.63 2.6 2.57 2.54 2.52 2.49 2.46 2.44 2.42 2.4 2.38 2.37 2.37 2.36 2.36 2.36 2.37 2.37 2.36 2.36 2.35 2.34 2.33 2.32 2.31 2.29 2.27 2.24 2.2 2.16 2.11 2.05 2 1.94 1.89 1.85 1.8 1.76 1.72 1.68 1.64 1.6 1.57 1.53 1.5 1.47 1.45 1.42 1.41 1.39 1.38 1.37 1.37 1.37 1.36 1.37 +Seychelles 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.16 5.1 5.01 4.95 4.91 4.91 4.93 4.98 5.06 5.16 5.27 5.4 5.53 5.65 5.76 5.84 5.89 5.92 5.9 5.85 5.76 5.63 5.47 5.28 5.07 4.85 4.62 4.41 4.2 4.02 3.85 3.7 3.56 3.43 3.31 3.19 3.08 2.99 2.9 2.82 2.74 2.66 2.59 2.51 2.42 2.35 2.28 2.22 2.18 2.16 2.15 2.16 2.18 2.21 2.24 2.26 2.28 2.28 2.28 2.27 2.26 2.23 2.21 2.18 2.16 2.13 +Sierra Leone 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.72 5.73 5.74 5.76 5.79 5.82 5.85 5.89 5.93 5.98 6.03 6.09 6.16 6.23 6.3 6.38 6.45 6.52 6.58 6.64 6.7 6.75 6.8 6.85 6.89 6.94 6.98 7.01 7.04 7.05 7.06 7.05 7.03 6.99 6.95 6.89 6.82 6.75 6.68 6.6 6.53 6.45 6.39 6.32 6.26 6.2 6.15 6.1 6.04 5.99 5.92 5.85 5.76 5.66 5.56 5.45 5.34 5.23 5.13 5.03 4.94 4.86 4.78 4.71 4.63 4.55 +Singapore 5.47 5.47 5.46 5.46 5.46 5.45 5.45 5.44 5.44 5.44 5.43 5.43 5.43 5.42 5.42 5.42 5.41 5.41 5.4 5.4 5.4 5.39 5.39 5.39 5.38 5.38 5.37 5.37 5.37 5.36 5.36 5.36 5.35 5.35 5.35 5.34 5.34 5.33 5.33 5.33 5.32 5.32 5.32 5.31 5.31 5.31 5.3 5.3 5.29 5.29 5.29 5.28 5.28 5.28 5.27 5.27 5.26 5.26 5.26 5.25 5.25 5.25 5.24 5.24 5.24 5.23 5.23 5.22 5.22 5.22 5.21 5.21 5.21 5.2 5.2 5.2 5.19 5.19 5.18 5.18 5.18 5.17 5.17 5.17 5.28 5.39 5.51 5.62 5.73 5.71 5.69 5.68 5.66 5.64 5.62 5.6 5.58 5.57 5.55 5.53 5.51 5.49 5.47 5.46 5.44 5.42 5.41 5.39 5.38 5.38 5.39 5.39 5.39 5.4 5.44 5.49 5.53 5.58 5.62 5.68 5.73 5.78 5.83 5.89 6 6.12 6.23 6.35 6.46 6.61 6.76 6.9 7.05 7.19 7.29 7.39 7.48 7.58 7.68 7.29 6.9 6.51 6.12 5.72 5.9 6.08 6.25 6.43 6.6 6.55 6.49 6.54 6.62 6.66 6.66 6.62 6.54 6.42 6.25 6.06 5.82 5.56 5.27 4.97 4.66 4.36 4.07 3.82 3.58 3.38 3.19 3.01 2.84 2.65 2.46 2.27 2.1 1.95 1.83 1.74 1.82 1.78 1.74 1.61 1.62 1.61 1.43 1.62 1.96 1.75 1.83 1.73 1.72 1.74 1.71 1.67 1.66 1.61 1.48 1.47 1.6 1.41 1.37 1.27 1.26 1.26 1.28 1.29 1.28 1.26 1.26 1.27 1.28 1.28 1.29 1.3 +Slovak Republic 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.94 5.95 5.95 5.96 5.96 5.92 5.87 5.83 5.78 5.74 5.77 5.8 5.83 5.86 5.9 5.83 5.76 5.7 5.63 5.56 5.54 5.52 5.5 5.49 5.47 5.42 5.37 5.31 5.26 5.21 5.16 5.1 5.04 4.99 4.93 4.86 4.78 4.71 4.63 4.56 4.13 3.7 3.28 2.85 2.43 3.03 3.64 4.25 4.96 4.67 4.55 4.25 4.01 3.98 3.76 3.69 3.48 3.49 3.33 3.29 2.96 2.86 2.8 2.79 2.77 2.8 2.83 2.87 2.9 2.93 2.96 3 3.03 3.11 3.22 3.26 3.26 3.59 3.57 3.53 3.48 3.43 3.38 3.33 3.27 3.21 3.15 3.09 3.01 2.94 2.86 2.78 2.7 2.64 2.58 2.54 2.51 2.5 2.5 2.5 2.5 2.5 2.5 2.48 2.47 2.44 2.41 2.37 2.34 2.3 2.27 2.25 2.22 2.2 2.17 2.13 2.09 2.04 1.97 1.9 1.81 1.72 1.63 1.54 1.46 1.38 1.32 1.27 1.24 1.23 1.22 1.23 1.24 1.26 1.29 1.31 1.33 1.35 1.37 1.38 1.4 1.41 1.43 +Slovenia 4.93 4.92 4.91 4.9 4.89 4.88 4.87 4.86 4.85 4.84 4.82 4.81 4.8 4.79 4.78 4.77 4.76 4.75 4.74 4.73 4.72 4.71 4.7 4.69 4.68 4.67 4.66 4.65 4.63 4.62 4.61 4.6 4.59 4.58 4.57 4.56 4.55 4.54 4.53 4.52 4.51 4.5 4.49 4.48 4.47 4.46 4.44 4.43 4.42 4.41 4.4 4.39 4.38 4.37 4.36 4.35 4.34 4.33 4.21 4.45 3.93 4.25 4.12 4.32 4.25 4.23 4.32 4.2 4.47 4.55 4.59 4.43 4.32 4.55 4.42 4.51 4.64 4.38 4.3 4.41 4.55 4.45 4.51 4.54 4.64 4.59 4.68 4.64 4.59 4.63 4.26 4.59 4.45 4.49 4.49 4.63 4.56 4.6 4.45 4.49 4.49 4.5 4.58 4.41 4.46 4.36 4.39 4.26 4.32 4.43 4.36 4.12 4 4.06 3.9 3.12 2.34 2.34 2.34 2.95 3.54 3.95 3.9 4.02 3.94 3.84 3.69 3.63 3.56 3.34 3.61 3.45 3.43 3.2 3.06 2.95 2.95 2.85 2.81 2.81 2.82 2.9 2.76 2.83 2.48 1.86 2.63 2.85 2.85 2.98 2.74 2.69 2.61 2.54 2.48 2.43 2.39 2.36 2.34 2.33 2.32 2.33 2.33 2.34 2.34 2.34 2.34 2.33 2.31 2.29 2.27 2.26 2.24 2.23 2.22 2.21 2.2 2.17 2.14 2.09 2.04 1.98 1.92 1.85 1.79 1.74 1.68 1.63 1.58 1.52 1.47 1.43 1.38 1.34 1.31 1.29 1.27 1.25 1.23 1.22 1.21 1.22 1.23 1.25 1.29 1.32 1.36 1.4 1.43 1.46 1.48 1.49 1.5 1.51 1.52 1.53 +Solomon Islands 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.42 6.41 6.41 6.41 6.41 6.41 6.41 6.41 6.41 6.41 6.41 6.41 6.41 6.41 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.39 6.39 6.39 6.39 6.38 6.39 6.39 6.42 6.47 6.55 6.66 6.78 6.91 7.04 7.15 7.22 7.25 7.24 7.18 7.1 6.99 6.87 6.75 6.63 6.53 6.43 6.35 6.28 6.21 6.14 6.06 5.96 5.85 5.73 5.6 5.46 5.33 5.2 5.08 4.97 4.87 4.79 4.72 4.67 4.62 4.58 4.54 4.5 4.46 4.41 4.36 4.3 4.24 4.17 4.1 4.03 3.97 3.91 +Somalia 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.87 6.89 6.9 6.92 6.93 6.95 6.96 6.98 6.99 7.01 7.02 7.04 7.05 7.07 7.08 7.1 7.11 7.13 7.14 7.16 7.17 7.19 7.2 7.22 7.23 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.25 7.26 7.26 7.26 7.26 7.26 7.25 7.23 7.21 7.18 7.15 7.12 7.09 7.06 7.03 7.02 7.01 7 7 7.01 7.03 7.05 7.08 7.11 7.15 7.19 7.24 7.29 7.34 7.4 7.46 7.51 7.57 7.62 7.66 7.68 7.69 7.68 7.65 7.61 7.56 7.5 7.43 7.36 7.29 7.22 7.14 7.06 6.97 6.87 6.77 6.67 6.56 6.46 6.36 +South Africa 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.47 6.46 6.46 6.45 6.45 6.44 6.44 6.43 6.43 6.42 6.42 6.41 6.41 6.4 6.4 6.4 6.39 6.39 6.38 6.38 6.37 6.37 6.36 6.36 6.35 6.34 6.31 6.29 6.26 6.25 6.23 6.22 6.21 6.19 6.17 6.14 6.1 6.05 5.98 5.91 5.84 5.77 5.7 5.64 5.59 5.54 5.48 5.42 5.34 5.25 5.16 5.06 4.97 4.88 4.79 4.7 4.6 4.5 4.4 4.29 4.18 4.05 3.92 3.79 3.66 3.53 3.41 3.3 3.2 3.11 3.04 2.98 2.94 2.9 2.87 2.83 2.8 2.76 2.72 2.68 2.63 2.58 2.54 2.5 2.47 2.44 2.41 2.39 2.36 2.34 +Spain 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.13 5.07 5.01 4.95 4.89 4.83 4.78 4.72 4.66 4.75 4.86 5.16 5.09 5 5.19 5.11 5.07 5.09 4.72 4.9 4.84 4.83 4.83 4.82 4.81 4.8 4.79 4.78 4.78 4.74 4.7 4.91 4.79 4.71 4.86 4.8 4.86 4.78 4.82 4.82 4.55 4.67 4.71 4.71 4.6 4.63 4.75 4.51 4.41 4.53 4.49 4.71 4.7 4.69 4.67 4.66 4.61 4.57 4.52 4.48 4.43 4.39 4.35 4.3 4.26 4.22 4.2 4.19 4.17 4.16 4.14 4.08 4.02 4.02 3.92 3.82 3.87 3.7 3.8 3.69 3.68 3.58 3.64 3.59 3.38 3.31 3.18 2.89 2.56 2.12 3.09 2.47 2.53 2.88 2.84 2.91 2.7 2.67 2.88 2.68 2.45 2.47 2.51 2.55 2.59 2.62 2.66 2.69 2.72 2.74 2.77 2.79 2.8 2.82 2.83 2.83 2.84 2.85 2.86 2.87 2.87 2.87 2.86 2.84 2.8 2.75 2.68 2.59 2.48 2.36 2.22 2.09 1.96 1.84 1.73 1.63 1.55 1.49 1.43 1.38 1.34 1.31 1.28 1.25 1.23 1.21 1.2 1.2 1.2 1.21 1.22 1.25 1.27 1.3 1.33 1.35 1.38 1.4 1.42 1.44 1.46 1.47 1.49 1.51 1.52 1.53 +Sri Lanka 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.68 5.49 5.94 6.17 5.46 5.16 6.1 5.89 5.03 5.78 5.69 5.31 5.37 5.52 5.19 5.12 5.94 6.02 4.92 5.79 5.48 5.5 5.59 5.26 4.36 5.55 5.11 6.23 5.7 5.93 5.76 5.05 5.85 5.76 5.67 6.06 6.29 6.23 5.46 5.55 6.17 5.94 5.88 5.7 6.06 6.38 6.23 6.37 5.82 5.93 5.68 5.62 5.87 5.65 5.23 5.18 5.75 5.46 5.47 5.44 5.55 5.58 6.17 5.64 5.58 5.84 5.99 6.03 5.94 6.03 6.05 5.9 5.86 5.89 5.9 5.88 5.83 5.75 5.65 5.54 5.42 5.3 5.18 5.07 4.96 4.85 4.73 4.61 4.48 4.34 4.21 4.08 3.97 3.87 3.78 3.71 3.63 3.56 3.49 3.41 3.32 3.22 3.12 3.01 2.9 2.8 2.7 2.62 2.54 2.48 2.43 2.39 2.35 2.32 2.29 2.27 2.25 2.24 2.24 2.24 2.24 2.25 2.26 2.27 2.29 2.3 2.31 2.32 2.34 2.34 2.35 2.35 2.34 2.33 2.31 +Sudan 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.64 6.65 6.65 6.65 6.65 6.65 6.65 6.65 6.66 6.66 6.66 6.66 6.66 6.66 6.66 6.67 6.67 6.67 6.67 6.67 6.67 6.67 6.68 6.67 6.65 6.64 6.64 6.63 6.64 6.65 6.66 6.67 6.69 6.71 6.74 6.76 6.79 6.81 6.83 6.85 6.87 6.88 6.89 6.9 6.91 6.92 6.93 6.94 6.93 6.92 6.89 6.85 6.8 6.74 6.67 6.61 6.54 6.47 6.4 6.34 6.28 6.21 6.15 6.09 6.03 5.96 5.89 5.82 5.75 5.67 5.6 5.52 5.44 5.37 5.29 5.21 5.12 5.04 4.96 4.87 4.79 4.71 4.64 4.56 4.49 4.42 4.35 4.28 +Suriname 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.58 6.57 6.56 6.55 6.55 6.56 6.57 6.58 6.6 6.61 6.61 6.59 6.56 6.5 6.41 6.3 6.18 6.05 5.92 5.79 5.65 5.5 5.34 5.15 4.95 4.74 4.53 4.34 4.18 4.04 3.92 3.82 3.71 3.59 3.47 3.34 3.2 3.06 2.94 2.82 2.73 2.67 2.64 2.63 2.65 2.68 2.72 2.75 2.76 2.76 2.74 2.7 2.66 2.61 2.56 2.52 2.48 2.44 2.41 2.37 2.35 2.32 2.29 2.27 2.24 2.22 +Swaziland 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.7 6.7 6.69 6.69 6.69 6.7 6.7 6.71 6.72 6.73 6.75 6.76 6.78 6.8 6.82 6.84 6.86 6.87 6.88 6.88 6.87 6.86 6.84 6.82 6.79 6.76 6.73 6.7 6.66 6.62 6.57 6.52 6.46 6.38 6.29 6.18 6.05 5.91 5.74 5.57 5.39 5.21 5.04 4.87 4.71 4.56 4.43 4.31 4.21 4.12 4.05 3.98 3.93 3.87 3.82 3.76 3.7 3.63 3.56 3.48 3.41 3.33 3.27 3.2 +Sweden 4.07 4.26 4.5 4.45 4.52 4.5 4.36 4.42 4.31 3.78 4.67 5.01 4.76 4.22 4.42 4.93 5.01 4.74 4.8 4.68 4.68 5.03 5.09 5.22 4.9 5.18 4.94 4.44 4.77 4.94 4.67 4.32 4.38 4.84 4.78 4.63 4.52 4.37 4.17 4.18 4.46 4.3 4.49 4.36 4.56 4.46 4.25 4.2 4.3 4.66 4.45 4.36 4.2 4.26 4.53 4.3 4.23 4.36 4.66 4.71 4.71 4.44 4.59 4.65 4.69 4.58 4.68 4.4 3.93 4.03 4.11 4.37 4.34 4.49 4.54 4.6 4.57 4.62 4.44 4.56 4.36 4.29 4.32 4.24 4.4 4.34 4.39 4.36 4.24 4.1 4.15 4.14 3.93 3.98 3.94 4.01 3.98 3.92 3.99 3.9 4 4 3.91 3.78 3.77 3.74 3.73 3.7 3.7 3.69 3.55 3.45 3.39 3.27 3.2 3.01 2.93 2.88 2.78 2.69 3.19 2.9 2.63 2.52 2.4 2.3 2.18 2.07 2.05 1.92 1.93 1.85 1.8 1.69 1.68 1.68 1.73 1.74 1.8 1.86 1.82 1.89 2.16 2.38 2.56 2.59 2.55 2.49 2.46 2.37 2.28 2.21 2.24 2.27 2.2 2.27 2.31 2.3 2.28 2.26 2.2 2.23 2.26 2.33 2.48 2.41 2.36 2.27 2.07 1.92 1.92 1.96 1.91 1.87 1.88 1.77 1.68 1.65 1.6 1.66 1.68 1.64 1.63 1.61 1.66 1.74 1.8 1.84 1.97 2.02 2.14 2.11 2.08 1.98 1.88 1.73 1.6 1.53 1.52 1.51 1.56 1.58 1.67 1.73 1.77 1.79 1.87 1.89 1.92 1.94 1.99 1.9 1.91 1.93 1.93 1.93 +Switzerland 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.14 4.02 3.89 3.74 3.65 3.44 3.82 3.85 4.05 4.27 4.19 4.14 4.18 4.32 4.32 4.26 4.33 4.16 4.04 4.14 3.99 3.99 3.99 3.98 4.07 4.26 4.4 4.29 4.19 4.09 3.97 3.99 3.87 3.82 3.79 3.71 3.73 3.74 3.71 3.7 3.56 3.78 3.71 3.74 3.66 3.66 3.77 3.79 3.82 3.89 3.83 3.89 3.82 3.67 3.66 3.6 3.6 3.51 3.54 3.42 3.1 3.07 3.04 3.01 3 2.61 2.53 2.48 2.47 2.49 2.34 2.37 2.4 2.43 2.36 2.3 2.23 2.17 2.1 2.05 1.99 1.97 1.94 1.89 1.88 1.84 1.8 1.74 1.78 1.79 1.82 2.05 2.27 2.4 2.5 2.6 2.62 2.56 2.54 2.44 2.33 2.32 2.3 2.3 2.31 2.33 2.36 2.39 2.43 2.48 2.52 2.55 2.58 2.58 2.56 2.53 2.47 2.4 2.31 2.22 2.12 2.02 1.92 1.83 1.74 1.67 1.61 1.57 1.54 1.52 1.51 1.51 1.52 1.53 1.54 1.54 1.54 1.55 1.55 1.55 1.55 1.54 1.54 1.53 1.53 1.52 1.5 1.49 1.47 1.45 1.44 1.43 1.42 1.42 1.42 1.43 1.44 1.46 1.47 1.49 1.5 1.51 1.52 1.53 1.54 1.55 +Syria 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.85 6.87 6.88 6.89 6.9 6.92 6.93 6.94 6.96 6.97 6.98 7 7.01 7.02 7.03 7.05 7.06 7.07 7.09 7.1 7.11 7.12 7.14 7.15 7.16 7.18 7.19 7.21 7.24 7.27 7.3 7.33 7.37 7.4 7.43 7.47 7.5 7.52 7.54 7.56 7.56 7.57 7.57 7.57 7.57 7.57 7.57 7.56 7.54 7.51 7.47 7.42 7.36 7.29 7.2 7.09 6.98 6.84 6.7 6.53 6.36 6.17 5.96 5.75 5.53 5.31 5.11 4.93 4.76 4.62 4.5 4.39 4.28 4.18 4.07 3.96 3.84 3.72 3.61 3.5 3.4 3.31 3.24 3.17 3.12 3.08 3.04 3 2.96 2.92 2.88 +Tajikistan 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.87 5.91 5.97 6.03 6.08 6.12 6.15 6.17 6.19 6.21 6.24 6.27 6.31 6.37 6.43 6.51 6.6 6.69 6.78 6.84 6.88 6.87 6.81 6.71 6.57 6.4 6.22 6.04 5.89 5.76 5.66 5.6 5.56 5.53 5.51 5.49 5.45 5.41 5.35 5.27 5.18 5.07 4.95 4.83 4.71 4.59 4.46 4.33 4.2 4.08 3.95 3.85 3.76 3.7 3.65 3.64 3.64 3.67 3.7 3.74 3.78 3.81 3.82 3.82 3.79 3.75 +Tanzania 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.74 6.73 6.73 6.73 6.73 6.73 6.73 6.72 6.72 6.72 6.72 6.72 6.72 6.71 6.71 6.71 6.71 6.71 6.71 6.7 6.7 6.7 6.7 6.71 6.73 6.75 6.77 6.78 6.79 6.8 6.8 6.81 6.81 6.81 6.8 6.8 6.8 6.8 6.8 6.79 6.79 6.78 6.77 6.77 6.76 6.76 6.76 6.75 6.74 6.73 6.71 6.69 6.65 6.62 6.58 6.54 6.5 6.47 6.42 6.38 6.33 6.27 6.21 6.15 6.08 6.01 5.95 5.88 5.83 5.78 5.74 5.71 5.69 5.68 5.67 5.66 5.65 5.64 5.62 5.59 5.54 5.49 5.43 5.36 5.29 5.21 5.14 5.07 +Thailand 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.35 6.34 6.33 6.32 6.32 6.31 6.3 6.29 6.28 6.27 6.26 6.25 6.25 6.24 6.23 6.22 6.21 6.2 6.19 6.18 6.18 6.17 6.16 6.15 6.14 6.13 6.13 6.14 6.14 6.14 6.14 6.14 6.14 6.14 6.14 6.15 6.15 6.16 6.16 6.15 6.13 6.08 6.01 5.9 5.76 5.6 5.4 5.18 4.95 4.72 4.49 4.26 4.03 3.81 3.59 3.39 3.2 3.02 2.86 2.71 2.57 2.45 2.35 2.26 2.18 2.11 2.06 2 1.96 1.91 1.87 1.82 1.78 1.75 1.71 1.68 1.64 1.62 1.59 1.56 1.54 1.52 1.5 1.48 1.46 1.44 1.43 1.41 1.4 1.39 1.38 +Timor-Leste 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.52 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.49 6.45 6.42 6.4 6.38 6.37 6.36 6.37 6.37 6.37 6.38 6.38 6.37 6.35 6.31 6.27 6.21 6.13 6.04 5.92 5.75 5.54 5.3 5.04 4.79 4.61 4.51 4.51 4.61 4.77 4.96 5.13 5.26 5.32 5.34 5.31 5.27 5.26 5.27 5.34 5.47 5.65 5.87 6.13 6.38 6.63 6.83 6.99 7.08 7.11 7.09 7.04 6.97 6.88 6.79 6.7 6.59 6.48 6.36 6.24 6.11 5.98 5.86 5.73 5.6 +Togo 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.34 6.33 6.33 6.33 6.34 6.36 6.38 6.4 6.44 6.48 6.52 6.57 6.62 6.68 6.73 6.79 6.85 6.91 6.97 7.03 7.08 7.14 7.18 7.22 7.25 7.28 7.29 7.28 7.27 7.24 7.21 7.16 7.1 7.03 6.96 6.87 6.78 6.68 6.57 6.45 6.33 6.21 6.08 5.96 5.84 5.73 5.62 5.52 5.44 5.36 5.29 5.22 5.17 5.11 5.06 5.01 4.96 4.92 4.88 4.84 4.79 4.75 4.7 4.64 4.58 4.51 +Tonga 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.51 6.54 6.57 6.6 6.64 6.67 6.7 6.74 6.77 6.8 6.83 6.87 6.9 6.93 6.97 7 7.03 7.06 7.1 7.13 7.16 7.2 7.23 7.26 7.29 7.33 7.32 7.3 7.29 7.29 7.29 7.31 7.33 7.35 7.36 7.36 7.35 7.3 7.23 7.12 6.97 6.8 6.59 6.37 6.15 5.94 5.76 5.62 5.51 5.45 5.43 5.44 5.47 5.51 5.54 5.55 5.53 5.48 5.39 5.27 5.13 4.99 4.86 4.76 4.69 4.64 4.61 4.58 4.55 4.5 4.45 4.39 4.34 4.3 4.27 4.25 4.24 4.22 4.2 4.18 4.14 4.1 4.06 4.01 3.96 3.91 3.86 3.82 3.77 3.72 3.68 +Trinidad and Tobago 4.44 4.44 4.44 4.44 4.44 4.44 4.44 4.44 4.44 4.44 4.44 4.44 4.44 4.44 4.44 4.45 4.46 4.46 4.47 4.48 4.49 4.49 4.5 4.51 4.52 4.52 4.53 4.54 4.55 4.55 4.56 4.57 4.58 4.58 4.59 4.6 4.61 4.61 4.62 4.63 4.64 4.64 4.65 4.66 4.67 4.67 4.68 4.69 4.7 4.7 4.71 4.72 4.73 4.73 4.74 4.75 4.76 4.76 4.77 4.78 4.79 4.79 4.8 4.81 4.82 4.82 4.83 4.84 4.85 4.85 4.86 4.87 4.88 4.88 4.89 4.9 4.91 4.91 4.92 4.93 4.94 4.94 4.95 4.96 4.89 4.82 4.72 4.61 4.5 4.4 4.29 4.36 4.43 4.5 4.57 4.64 4.69 4.74 4.8 4.85 4.9 4.91 4.92 4.92 4.93 4.93 4.81 4.69 4.57 4.45 4.33 4.33 4.33 4.33 4.34 4.34 4.34 4.26 4.19 4.11 4.03 4.11 4.19 4.27 4.36 4.44 4.36 4.28 4.2 4.12 4.04 3.96 3.89 4.06 4.23 4.41 4.31 4.21 4.36 4.5 4.65 4.78 4.91 5.04 5.16 5.29 5.29 5.29 5.28 5.28 5.28 5.28 5.29 5.31 5.32 5.33 5.34 5.34 5.34 5.32 5.26 5.18 5.05 4.87 4.66 4.43 4.2 3.99 3.8 3.66 3.55 3.48 3.43 3.39 3.35 3.31 3.29 3.27 3.27 3.28 3.28 3.28 3.26 3.22 3.15 3.06 2.95 2.83 2.7 2.57 2.45 2.34 2.23 2.13 2.04 1.96 1.9 1.84 1.8 1.77 1.75 1.74 1.74 1.75 1.76 1.77 1.78 1.79 1.8 1.8 1.8 1.8 1.8 1.8 1.8 1.79 +Tunisia 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.4 6.38 6.35 6.33 6.3 6.28 6.25 6.23 6.2 6.18 6.15 6.13 6.1 6.08 6.05 6.03 6 5.48 4.93 5.84 6.74 6.74 6.73 6.74 6.75 6.78 6.82 6.87 6.93 6.99 7.04 7.09 7.12 7.13 7.11 7.06 6.98 6.87 6.74 6.59 6.44 6.29 6.16 6.05 5.95 5.87 5.79 5.71 5.61 5.49 5.35 5.19 5.02 4.83 4.65 4.45 4.27 4.08 3.89 3.71 3.54 3.36 3.19 3.01 2.84 2.68 2.52 2.39 2.28 2.18 2.11 2.07 2.04 2.03 2.02 2.03 2.03 2.04 2.04 2.05 2.04 2.04 2.02 2.01 1.99 1.97 +Turkey 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.92 6.91 6.91 6.9 6.9 6.89 6.89 6.88 6.87 6.87 6.86 6.86 6.85 6.84 6.84 6.83 6.83 6.82 6.82 6.81 6.8 6.8 6.79 6.79 6.78 6.78 6.77 6.76 6.76 6.75 6.75 6.74 6.73 6.73 6.72 6.72 6.71 6.71 6.7 6.68 6.66 6.64 6.62 6.6 6.66 6.72 6.78 6.84 6.9 6.79 6.67 6.66 6.64 6.61 6.58 6.54 6.5 6.46 6.41 6.36 6.3 6.24 6.18 6.1 6.03 5.95 5.87 5.8 5.72 5.64 5.56 5.48 5.38 5.26 5.14 5.01 4.87 4.74 4.61 4.48 4.36 4.24 4.11 3.98 3.84 3.7 3.56 3.43 3.3 3.18 3.08 2.99 2.91 2.84 2.77 2.72 2.66 2.61 2.56 2.51 2.45 2.4 2.36 2.31 2.27 2.23 2.2 2.17 2.15 2.12 2.1 2.08 2.06 2.04 2.02 2 +Turkmenistan 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.22 6.14 6 5.91 5.87 5.88 5.93 6.02 6.14 6.28 6.42 6.54 6.63 6.67 6.66 6.62 6.55 6.47 6.4 6.35 6.3 6.25 6.18 6.07 5.94 5.78 5.61 5.44 5.28 5.14 5.01 4.92 4.84 4.77 4.72 4.67 4.62 4.57 4.51 4.44 4.35 4.22 4.07 3.9 3.71 3.51 3.33 3.16 3.02 2.91 2.84 2.78 2.74 2.7 2.66 2.62 2.57 2.52 2.48 2.45 2.41 2.38 2.35 2.33 2.3 2.27 +Uganda 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.89 6.9 6.9 6.91 6.92 6.93 6.94 6.96 6.98 7 7.02 7.04 7.06 7.08 7.09 7.11 7.11 7.12 7.12 7.12 7.11 7.11 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.1 7.09 7.08 7.07 7.06 7.04 7.02 6.99 6.97 6.94 6.9 6.87 6.82 6.77 6.72 6.65 6.58 6.51 6.43 6.34 6.25 6.16 6.06 5.96 5.87 5.77 5.67 +Ukraine 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.5 7.46 7.43 7.39 7.36 7.32 7.29 7.25 7.21 7.18 7.14 7.11 7.07 7.03 7 6.96 6.93 6.89 6.83 6.76 6.69 6.63 6.56 6.5 6.43 6.36 6.3 6.23 6.17 6.1 6.03 5.97 5.9 5.83 5.77 5.7 5.64 5.57 5.5 5.44 5.37 5.31 5.24 5.17 5.11 5.04 4.98 4.84 4.71 4.58 4.45 4.31 4.18 4.05 3.92 3.78 3.65 3.52 3.39 3.25 3.12 3.08 3.04 3 2.96 2.92 2.88 2.84 2.8 2.76 2.72 2.75 2.81 2.85 2.85 2.83 2.79 2.72 2.63 2.53 2.42 2.31 2.21 2.13 2.07 2.03 2.02 2.01 2.02 2.03 2.05 2.06 2.06 2.06 2.05 2.03 2.01 2 1.99 1.98 1.98 1.99 2.01 2.03 2.04 2.05 2.05 2.03 1.99 1.94 1.87 1.79 1.69 1.6 1.5 1.41 1.33 1.26 1.2 1.16 1.14 1.14 1.15 1.18 1.21 1.26 1.3 1.35 1.38 1.41 1.44 1.45 1.46 1.47 1.48 1.49 +United Arab Emirates 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.94 6.95 6.97 6.98 6.99 6.99 6.98 6.98 6.96 6.95 6.93 6.91 6.89 6.88 6.86 6.84 6.82 6.78 6.74 6.68 6.61 6.51 6.4 6.28 6.15 6.01 5.87 5.74 5.62 5.52 5.42 5.34 5.27 5.21 5.14 5.07 4.97 4.86 4.72 4.57 4.39 4.19 3.99 3.78 3.58 3.39 3.22 3.05 2.9 2.77 2.64 2.53 2.43 2.33 2.24 2.15 2.07 2 1.95 1.9 1.87 1.84 1.82 1.8 1.78 1.77 +United Kingdom 4.97 4.6 5.3 5.61 5.65 5.55 5.49 5.45 5.4 5.24 5.36 5.43 5.31 5.45 5.46 6.02 5.73 5.69 5.54 5.45 5.4 5.55 5.69 5.54 5.42 5.38 5.36 5.07 5.23 4.85 4.83 4.78 4.78 5 4.89 4.83 4.86 4.79 4.78 4.93 4.9 4.89 4.83 4.82 4.83 4.75 4.9 4.58 4.71 4.78 4.85 4.94 4.94 4.78 4.89 4.85 4.94 4.9 4.79 4.97 4.86 4.88 4.92 4.94 4.96 4.94 4.92 4.94 4.97 4.82 4.88 4.85 4.89 4.94 4.93 4.92 4.9 4.89 4.88 4.81 4.75 4.68 4.62 4.55 4.47 4.39 4.32 4.24 4.16 4.11 4.06 4 3.95 3.9 3.84 3.79 3.73 3.68 3.62 3.58 3.53 3.49 3.44 3.4 3.35 3.3 3.24 3.19 3.14 3.07 2.99 2.92 2.9 2.93 2.88 2.59 2.6 2.1 2.03 2.31 3.08 2.69 2.44 2.38 2.28 2.2 2.15 2.01 2.01 1.95 1.95 1.89 1.83 1.72 1.76 1.75 1.77 1.79 1.84 1.84 1.74 1.72 1.93 2.03 2.25 2.05 2.47 2.7 2.39 2.26 2.08 2.1 2.15 2.2 2.26 2.33 2.4 2.48 2.55 2.63 2.69 2.75 2.79 2.8 2.79 2.76 2.7 2.61 2.52 2.41 2.29 2.18 2.07 1.98 1.89 1.83 1.78 1.74 1.73 1.72 1.73 1.74 1.76 1.78 1.8 1.81 1.82 1.83 1.83 1.82 1.81 1.8 1.79 1.78 1.77 1.76 1.74 1.73 1.71 1.69 1.68 1.67 1.67 1.69 1.72 1.76 1.8 1.84 1.87 1.89 1.9 1.9 1.9 1.89 1.89 1.89 +United States 7.03 7.01 6.99 6.96 6.94 6.92 6.9 6.87 6.85 6.83 6.81 6.79 6.76 6.74 6.72 6.7 6.67 6.65 6.63 6.61 6.59 6.57 6.54 6.52 6.5 6.48 6.46 6.44 6.42 6.4 6.38 6.36 6.34 6.32 6.3 6.28 6.26 6.24 6.22 6.2 6.18 6.14 6.09 6.05 6 5.96 5.91 5.87 5.82 5.78 5.73 5.69 5.64 5.6 5.55 5.51 5.46 5.42 5.37 5.33 5.28 5.26 5.23 5.2 5.18 5.15 5.12 5.1 5.07 5.04 5.02 4.99 4.96 4.94 4.91 4.88 4.86 4.83 4.8 4.77 4.75 4.7 4.66 4.61 4.57 4.52 4.48 4.43 4.39 4.35 4.3 4.26 4.21 4.17 4.12 4.08 4.03 3.99 3.94 3.9 3.85 3.85 3.84 3.83 3.79 3.75 3.71 3.67 3.63 3.58 3.59 3.57 3.56 3.45 3.57 3.52 3.47 3.33 3.31 3.07 3.26 3.33 3.11 3.1 3.12 3.01 2.9 2.82 2.66 2.53 2.53 2.4 2.32 2.01 2.07 2.04 2.01 2.04 2.09 2.05 2.11 2.23 2.47 2.57 2.44 2.38 2.83 3.16 3.01 3.02 3.02 3.2 3.3 3.37 3.49 3.54 3.65 3.74 3.69 3.69 3.67 3.63 3.48 3.35 3.22 2.93 2.71 2.56 2.47 2.46 2.46 2.27 2.01 1.87 1.83 1.77 1.74 1.78 1.75 1.8 1.82 1.81 1.81 1.78 1.79 1.84 1.84 1.87 1.92 2 2.07 2.06 2.04 2.02 2 1.98 1.98 1.97 2 2.01 2.05 2.03 2.02 2.05 2.06 2.06 2.11 2.12 2.07 2 1.93 1.9 1.9 1.98 1.97 1.97 +Uruguay 5.97 5.97 5.96 5.96 5.96 5.95 5.95 5.95 5.94 5.94 5.94 5.93 5.93 5.93 5.92 5.92 5.92 5.91 5.91 5.91 5.9 5.9 5.9 5.89 5.89 5.89 5.88 5.88 5.87 5.87 5.87 5.86 5.86 5.86 5.85 5.85 5.85 5.84 5.84 5.84 5.83 5.83 5.83 5.82 5.82 5.82 5.81 5.81 5.81 5.8 5.8 5.8 5.8 5.8 5.8 5.79 5.79 5.79 5.79 5.79 5.79 5.79 5.79 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.78 5.77 5.77 5.77 5.77 5.77 5.77 5.77 5.77 5.76 5.76 5.76 5.71 5.21 5.45 5.56 5.64 5.63 5.57 5.45 5.44 5.31 5.04 5.11 5.25 5.07 4.3 4.5 4.6 4.5 4.41 4.31 4.34 4.37 4.4 4.42 4.45 4.43 4.41 4.38 4.36 4.34 4.22 4.1 3.98 3.86 3.74 3.69 3.64 3.59 3.53 3.48 3.45 3.43 3.4 3.37 3.34 3.27 3.2 3.13 3.06 2.99 2.93 2.86 2.8 2.74 2.68 2.68 2.68 2.68 2.68 2.68 2.68 2.68 2.68 2.69 2.69 2.69 2.69 2.69 2.7 2.72 2.74 2.76 2.78 2.81 2.83 2.85 2.87 2.88 2.89 2.89 2.87 2.86 2.84 2.83 2.83 2.84 2.87 2.9 2.94 2.97 2.99 2.99 2.98 2.95 2.91 2.85 2.79 2.72 2.67 2.61 2.57 2.55 2.53 2.52 2.52 2.52 2.52 2.52 2.51 2.49 2.46 2.43 2.4 2.36 2.33 2.3 2.27 2.24 2.22 2.21 2.19 2.17 2.16 2.14 2.12 2.11 2.09 2.08 2.07 2.06 2.05 2.04 2.03 +Uzbekistan 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.71 5.78 5.91 6.04 6.16 6.27 6.38 6.47 6.56 6.64 6.71 6.76 6.78 6.79 6.78 6.75 6.71 6.66 6.61 6.55 6.49 6.42 6.34 6.24 6.12 5.98 5.83 5.66 5.48 5.3 5.13 4.97 4.83 4.71 4.62 4.54 4.47 4.41 4.35 4.27 4.18 4.06 3.93 3.78 3.63 3.46 3.3 3.14 2.99 2.86 2.74 2.65 2.59 2.54 2.51 2.49 2.48 2.47 2.46 2.44 2.41 2.38 2.34 2.31 2.28 2.25 +Vanuatu 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.6 6.64 6.69 6.73 6.77 6.82 6.86 6.9 6.95 6.99 7.03 7.08 7.12 7.16 7.21 7.25 7.29 7.34 7.38 7.42 7.47 7.51 7.55 7.6 7.64 7.68 7.66 7.62 7.58 7.54 7.49 7.44 7.39 7.33 7.27 7.2 7.12 7.03 6.94 6.84 6.73 6.63 6.53 6.43 6.35 6.27 6.2 6.13 6.07 6 5.93 5.86 5.79 5.72 5.65 5.58 5.5 5.43 5.36 5.28 5.21 5.14 5.08 5.02 4.97 4.93 4.89 4.85 4.81 4.78 4.73 4.68 4.61 4.54 4.46 4.37 4.27 4.16 4.06 3.95 3.85 3.76 3.68 3.61 3.55 3.5 3.46 3.42 3.38 3.35 3.31 +Venezuela 5.63 5.63 5.64 5.64 5.64 5.65 5.65 5.65 5.66 5.66 5.66 5.67 5.67 5.68 5.68 5.68 5.69 5.69 5.69 5.7 5.7 5.71 5.71 5.71 5.72 5.72 5.72 5.73 5.73 5.74 5.74 5.74 5.75 5.75 5.75 5.76 5.76 5.76 5.77 5.77 5.78 5.78 5.78 5.79 5.79 5.79 5.8 5.8 5.81 5.81 5.81 5.82 5.82 5.82 5.83 5.83 5.84 5.84 5.84 5.85 5.85 5.85 5.86 5.86 5.86 5.87 5.87 5.88 5.88 5.88 5.89 5.89 5.89 5.9 5.9 5.91 5.91 5.91 5.92 5.92 5.92 5.93 5.93 5.93 5.94 5.94 5.95 5.95 5.98 6.01 6.04 6.07 6.1 6.03 5.97 5.9 5.84 5.78 5.74 5.71 5.67 5.64 5.6 5.65 5.7 5.75 5.79 5.84 5.87 5.89 5.91 5.94 5.96 5.88 5.8 5.71 5.63 5.55 5.54 5.54 5.53 5.53 5.52 5.57 5.62 5.67 5.72 5.78 5.69 5.6 5.52 5.43 5.35 5.35 5.36 5.37 5.38 5.39 5.42 5.46 5.49 5.53 5.56 5.62 5.67 5.73 5.79 5.84 6.08 6.31 6.54 6.51 6.46 6.43 6.41 6.42 6.44 6.48 6.53 6.58 6.62 6.64 6.63 6.58 6.5 6.37 6.2 6.01 5.81 5.61 5.4 5.22 5.05 4.91 4.78 4.67 4.57 4.48 4.39 4.3 4.2 4.1 4.01 3.93 3.86 3.79 3.73 3.67 3.6 3.52 3.45 3.37 3.29 3.22 3.15 3.08 3.02 2.97 2.92 2.87 2.82 2.78 2.74 2.7 2.66 2.63 2.6 2.56 2.53 2.5 2.47 2.44 2.42 2.39 2.36 2.34 +Vietnam 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.7 4.66 4.62 4.57 4.53 4.49 4.45 4.41 4.36 4.32 4.28 4.24 4.2 4.15 4.15 4.42 4.42 4.69 4.69 4.29 4.15 4.29 4.69 4.49 4.76 4.73 4.7 4.7 4.66 4.78 5.03 4.69 4.69 4.73 5.19 4.92 4.97 5.04 5.03 5.03 5.02 5.02 5.01 5 5 4.99 4.99 4.98 4.97 4.97 4.96 5.08 5.31 5.52 5.7 5.86 6 6.12 6.21 6.29 6.35 6.39 6.43 6.45 6.46 6.48 6.49 6.49 6.49 6.49 6.47 6.42 6.35 6.25 6.13 5.97 5.8 5.61 5.42 5.23 5.05 4.87 4.69 4.52 4.36 4.21 4.06 3.93 3.81 3.68 3.56 3.42 3.26 3.07 2.88 2.68 2.48 2.31 2.17 2.06 1.98 1.94 1.92 1.91 1.9 1.9 1.89 1.88 1.86 1.84 1.82 1.79 1.77 1.74 1.72 1.7 +West Bank and Gaza 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.97 6.99 7.02 7.04 7.06 7.09 7.11 7.14 7.16 7.18 7.21 7.23 7.25 7.28 7.3 7.33 7.35 7.37 7.4 7.42 7.44 7.47 7.49 7.52 7.54 7.56 7.5 7.39 7.32 7.28 7.28 7.31 7.37 7.46 7.57 7.69 7.8 7.91 7.99 8.04 8.06 8.05 8.02 7.98 7.92 7.86 7.8 7.75 7.7 7.65 7.61 7.57 7.52 7.46 7.39 7.31 7.2 7.08 6.95 6.82 6.7 6.6 6.54 6.51 6.51 6.53 6.55 6.54 6.49 6.4 6.27 6.11 5.93 5.75 5.57 5.4 5.25 5.1 4.96 4.82 4.7 4.58 4.48 4.38 4.3 4.22 4.14 4.08 4.01 3.95 3.88 +Zambia 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.71 6.72 6.74 6.76 6.78 6.81 6.84 6.88 6.92 6.97 7.02 7.07 7.13 7.18 7.24 7.29 7.34 7.38 7.41 7.43 7.44 7.44 7.45 7.45 7.44 7.44 7.41 7.38 7.33 7.26 7.18 7.1 7.02 6.94 6.87 6.8 6.74 6.67 6.61 6.54 6.47 6.4 6.34 6.29 6.25 6.21 6.18 6.15 6.13 6.1 6.07 6.04 6.02 6 5.97 5.95 5.93 5.91 5.88 5.85 5.81 5.77 5.73 5.69 5.64 5.59 +Zimbabwe 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.75 6.76 6.78 6.81 6.84 6.88 6.93 6.98 7.04 7.1 7.16 7.22 7.27 7.31 7.35 7.37 7.39 7.4 7.41 7.42 7.42 7.42 7.42 7.42 7.41 7.4 7.37 7.33 7.27 7.2 7.1 6.97 6.81 6.63 6.44 6.22 6 5.78 5.57 5.37 5.18 5 4.84 4.69 4.55 4.43 4.33 4.24 4.17 4.11 4.07 4.04 4.02 4 3.99 3.97 3.94 3.9 3.85 3.79 3.72 3.64 3.56 3.49 3.41 3.35 diff --git a/src/data/gapminder/gapminder.json b/src/data/gapminder/gapminder.json new file mode 100644 index 0000000..930ec7a --- /dev/null +++ b/src/data/gapminder/gapminder.json @@ -0,0 +1,5546 @@ +[ + { + "year": 1955, + "country": "Afghanistan", + "cluster": 0, + "pop": 8891209, + "life_expect": 30.332, + "fertility": 7.7 + }, + { + "year": 1960, + "country": "Afghanistan", + "cluster": 0, + "pop": 9829450, + "life_expect": 31.997, + "fertility": 7.7 + }, + { + "year": 1965, + "country": "Afghanistan", + "cluster": 0, + "pop": 10997885, + "life_expect": 34.02, + "fertility": 7.7 + }, + { + "year": 1970, + "country": "Afghanistan", + "cluster": 0, + "pop": 12430623, + "life_expect": 36.088, + "fertility": 7.7 + }, + { + "year": 1975, + "country": "Afghanistan", + "cluster": 0, + "pop": 14132019, + "life_expect": 38.438, + "fertility": 7.7 + }, + { + "year": 1980, + "country": "Afghanistan", + "cluster": 0, + "pop": 15112149, + "life_expect": 39.854, + "fertility": 7.8 + }, + { + "year": 1985, + "country": "Afghanistan", + "cluster": 0, + "pop": 13796928, + "life_expect": 40.822, + "fertility": 7.9 + }, + { + "year": 1990, + "country": "Afghanistan", + "cluster": 0, + "pop": 14669339, + "life_expect": 41.674, + "fertility": 8 + }, + { + "year": 1995, + "country": "Afghanistan", + "cluster": 0, + "pop": 20881480, + "life_expect": 41.763, + "fertility": 8 + }, + { + "year": 2000, + "country": "Afghanistan", + "cluster": 0, + "pop": 23898198, + "life_expect": 42.129, + "fertility": 7.4792 + }, + { + "year": 2005, + "country": "Afghanistan", + "cluster": 0, + "pop": 29928987, + "life_expect": 43.828, + "fertility": 7.0685 + }, + { + "year": 1955, + "country": "Argentina", + "cluster": 3, + "pop": 18927821, + "life_expect": 64.399, + "fertility": 3.1265 + }, + { + "year": 1960, + "country": "Argentina", + "cluster": 3, + "pop": 20616009, + "life_expect": 65.142, + "fertility": 3.0895 + }, + { + "year": 1965, + "country": "Argentina", + "cluster": 3, + "pop": 22283100, + "life_expect": 65.634, + "fertility": 3.049 + }, + { + "year": 1970, + "country": "Argentina", + "cluster": 3, + "pop": 23962313, + "life_expect": 67.065, + "fertility": 3.1455 + }, + { + "year": 1975, + "country": "Argentina", + "cluster": 3, + "pop": 26081880, + "life_expect": 68.481, + "fertility": 3.44 + }, + { + "year": 1980, + "country": "Argentina", + "cluster": 3, + "pop": 28369799, + "life_expect": 69.942, + "fertility": 3.15 + }, + { + "year": 1985, + "country": "Argentina", + "cluster": 3, + "pop": 30675059, + "life_expect": 70.774, + "fertility": 3.053 + }, + { + "year": 1990, + "country": "Argentina", + "cluster": 3, + "pop": 33022202, + "life_expect": 71.868, + "fertility": 2.9 + }, + { + "year": 1995, + "country": "Argentina", + "cluster": 3, + "pop": 35311049, + "life_expect": 73.275, + "fertility": 2.63 + }, + { + "year": 2000, + "country": "Argentina", + "cluster": 3, + "pop": 37497728, + "life_expect": 74.34, + "fertility": 2.35 + }, + { + "year": 2005, + "country": "Argentina", + "cluster": 3, + "pop": 39537943, + "life_expect": 75.32, + "fertility": 2.254 + }, + { + "year": 1955, + "country": "Aruba", + "cluster": 3, + "pop": 53865, + "life_expect": 64.381, + "fertility": 5.15 + }, + { + "year": 1960, + "country": "Aruba", + "cluster": 3, + "pop": 57203, + "life_expect": 66.606, + "fertility": 4.399 + }, + { + "year": 1965, + "country": "Aruba", + "cluster": 3, + "pop": 59020, + "life_expect": 68.336, + "fertility": 3.301 + }, + { + "year": 1970, + "country": "Aruba", + "cluster": 3, + "pop": 59039, + "life_expect": 70.941, + "fertility": 2.651 + }, + { + "year": 1975, + "country": "Aruba", + "cluster": 3, + "pop": 59390, + "life_expect": 71.83, + "fertility": 2.45 + }, + { + "year": 1980, + "country": "Aruba", + "cluster": 3, + "pop": 60266, + "life_expect": 74.116, + "fertility": 2.358 + }, + { + "year": 1985, + "country": "Aruba", + "cluster": 3, + "pop": 64129, + "life_expect": 74.494, + "fertility": 2.3 + }, + { + "year": 1990, + "country": "Aruba", + "cluster": 3, + "pop": 66653, + "life_expect": 74.108, + "fertility": 2.28 + }, + { + "year": 1995, + "country": "Aruba", + "cluster": 3, + "pop": 67836, + "life_expect": 73.011, + "fertility": 2.208 + }, + { + "year": 2000, + "country": "Aruba", + "cluster": 3, + "pop": 69539, + "life_expect": 73.451, + "fertility": 2.124 + }, + { + "year": 2005, + "country": "Aruba", + "cluster": 3, + "pop": 71566, + "life_expect": 74.239, + "fertility": 2.04 + }, + { + "year": 1955, + "country": "Australia", + "cluster": 4, + "pop": 9277087, + "life_expect": 70.33, + "fertility": 3.406 + }, + { + "year": 1960, + "country": "Australia", + "cluster": 4, + "pop": 10361273, + "life_expect": 70.93, + "fertility": 3.274 + }, + { + "year": 1965, + "country": "Australia", + "cluster": 4, + "pop": 11439384, + "life_expect": 71.1, + "fertility": 2.871 + }, + { + "year": 1970, + "country": "Australia", + "cluster": 4, + "pop": 12660160, + "life_expect": 71.93, + "fertility": 2.535 + }, + { + "year": 1975, + "country": "Australia", + "cluster": 4, + "pop": 13771400, + "life_expect": 73.49, + "fertility": 1.989 + }, + { + "year": 1980, + "country": "Australia", + "cluster": 4, + "pop": 14615900, + "life_expect": 74.74, + "fertility": 1.907 + }, + { + "year": 1985, + "country": "Australia", + "cluster": 4, + "pop": 15788300, + "life_expect": 76.32, + "fertility": 1.859 + }, + { + "year": 1990, + "country": "Australia", + "cluster": 4, + "pop": 17022133, + "life_expect": 77.56, + "fertility": 1.86 + }, + { + "year": 1995, + "country": "Australia", + "cluster": 4, + "pop": 18116171, + "life_expect": 78.83, + "fertility": 1.776 + }, + { + "year": 2000, + "country": "Australia", + "cluster": 4, + "pop": 19164620, + "life_expect": 80.37, + "fertility": 1.756 + }, + { + "year": 2005, + "country": "Australia", + "cluster": 4, + "pop": 20090437, + "life_expect": 81.235, + "fertility": 1.788 + }, + { + "year": 1955, + "country": "Austria", + "cluster": 1, + "pop": 6946885, + "life_expect": 67.48, + "fertility": 2.52 + }, + { + "year": 1960, + "country": "Austria", + "cluster": 1, + "pop": 7047437, + "life_expect": 69.54, + "fertility": 2.78 + }, + { + "year": 1965, + "country": "Austria", + "cluster": 1, + "pop": 7270889, + "life_expect": 70.14, + "fertility": 2.53 + }, + { + "year": 1970, + "country": "Austria", + "cluster": 1, + "pop": 7467086, + "life_expect": 70.63, + "fertility": 2.02 + }, + { + "year": 1975, + "country": "Austria", + "cluster": 1, + "pop": 7578903, + "life_expect": 72.17, + "fertility": 1.64 + }, + { + "year": 1980, + "country": "Austria", + "cluster": 1, + "pop": 7549433, + "life_expect": 73.18, + "fertility": 1.62 + }, + { + "year": 1985, + "country": "Austria", + "cluster": 1, + "pop": 7559776, + "life_expect": 74.94, + "fertility": 1.45 + }, + { + "year": 1990, + "country": "Austria", + "cluster": 1, + "pop": 7722953, + "life_expect": 76.04, + "fertility": 1.47 + }, + { + "year": 1995, + "country": "Austria", + "cluster": 1, + "pop": 8047433, + "life_expect": 77.51, + "fertility": 1.388 + }, + { + "year": 2000, + "country": "Austria", + "cluster": 1, + "pop": 8113413, + "life_expect": 78.98, + "fertility": 1.382 + }, + { + "year": 2005, + "country": "Austria", + "cluster": 1, + "pop": 8184691, + "life_expect": 79.829, + "fertility": 1.42 + }, + { + "year": 1955, + "country": "Bahamas", + "cluster": 3, + "pop": 87138, + "life_expect": 62.405, + "fertility": 4.305 + }, + { + "year": 1960, + "country": "Bahamas", + "cluster": 3, + "pop": 112234, + "life_expect": 64.209, + "fertility": 4.503 + }, + { + "year": 1965, + "country": "Bahamas", + "cluster": 3, + "pop": 139205, + "life_expect": 65.795, + "fertility": 3.794 + }, + { + "year": 1970, + "country": "Bahamas", + "cluster": 3, + "pop": 170323, + "life_expect": 66.515, + "fertility": 3.444 + }, + { + "year": 1975, + "country": "Bahamas", + "cluster": 3, + "pop": 189139, + "life_expect": 67.199, + "fertility": 3.221 + }, + { + "year": 1980, + "country": "Bahamas", + "cluster": 3, + "pop": 209944, + "life_expect": 67.874, + "fertility": 3.16 + }, + { + "year": 1985, + "country": "Bahamas", + "cluster": 3, + "pop": 234988, + "life_expect": 69.524, + "fertility": 2.62 + }, + { + "year": 1990, + "country": "Bahamas", + "cluster": 3, + "pop": 257253, + "life_expect": 69.171, + "fertility": 2.6 + }, + { + "year": 1995, + "country": "Bahamas", + "cluster": 3, + "pop": 275303, + "life_expect": 68.472, + "fertility": 2.4 + }, + { + "year": 2000, + "country": "Bahamas", + "cluster": 3, + "pop": 290075, + "life_expect": 71.068, + "fertility": 2.1111 + }, + { + "year": 2005, + "country": "Bahamas", + "cluster": 3, + "pop": 301790, + "life_expect": 73.495, + "fertility": 2.0221 + }, + { + "year": 1955, + "country": "Bangladesh", + "cluster": 0, + "pop": 49601520, + "life_expect": 39.348, + "fertility": 6.76 + }, + { + "year": 1960, + "country": "Bangladesh", + "cluster": 0, + "pop": 54621538, + "life_expect": 41.216, + "fertility": 6.85 + }, + { + "year": 1965, + "country": "Bangladesh", + "cluster": 0, + "pop": 60332117, + "life_expect": 43.453, + "fertility": 6.6 + }, + { + "year": 1970, + "country": "Bangladesh", + "cluster": 0, + "pop": 67402621, + "life_expect": 45.252, + "fertility": 6.15 + }, + { + "year": 1975, + "country": "Bangladesh", + "cluster": 0, + "pop": 76253310, + "life_expect": 46.923, + "fertility": 5.6 + }, + { + "year": 1980, + "country": "Bangladesh", + "cluster": 0, + "pop": 88076996, + "life_expect": 50.009, + "fertility": 5.25 + }, + { + "year": 1985, + "country": "Bangladesh", + "cluster": 0, + "pop": 99752733, + "life_expect": 52.819, + "fertility": 4.629 + }, + { + "year": 1990, + "country": "Bangladesh", + "cluster": 0, + "pop": 109896945, + "life_expect": 56.018, + "fertility": 4.117 + }, + { + "year": 1995, + "country": "Bangladesh", + "cluster": 0, + "pop": 119186448, + "life_expect": 59.412, + "fertility": 3.5043 + }, + { + "year": 2000, + "country": "Bangladesh", + "cluster": 0, + "pop": 130406594, + "life_expect": 62.013, + "fertility": 3.224 + }, + { + "year": 2005, + "country": "Bangladesh", + "cluster": 0, + "pop": 144319628, + "life_expect": 64.062, + "fertility": 2.826 + }, + { + "year": 1955, + "country": "Barbados", + "cluster": 3, + "pop": 227255, + "life_expect": 62.57, + "fertility": 4.67 + }, + { + "year": 1960, + "country": "Barbados", + "cluster": 3, + "pop": 232339, + "life_expect": 65.87, + "fertility": 4.26 + }, + { + "year": 1965, + "country": "Barbados", + "cluster": 3, + "pop": 234980, + "life_expect": 67.62, + "fertility": 3.45 + }, + { + "year": 1970, + "country": "Barbados", + "cluster": 3, + "pop": 238756, + "life_expect": 69.42, + "fertility": 2.74 + }, + { + "year": 1975, + "country": "Barbados", + "cluster": 3, + "pop": 247147, + "life_expect": 71.27, + "fertility": 2.19 + }, + { + "year": 1980, + "country": "Barbados", + "cluster": 3, + "pop": 251966, + "life_expect": 72.695, + "fertility": 1.92 + }, + { + "year": 1985, + "country": "Barbados", + "cluster": 3, + "pop": 257446, + "life_expect": 74.027, + "fertility": 1.75 + }, + { + "year": 1990, + "country": "Barbados", + "cluster": 3, + "pop": 262624, + "life_expect": 74.894, + "fertility": 1.6 + }, + { + "year": 1995, + "country": "Barbados", + "cluster": 3, + "pop": 267907, + "life_expect": 74.912, + "fertility": 1.5 + }, + { + "year": 2000, + "country": "Barbados", + "cluster": 3, + "pop": 273483, + "life_expect": 75.97, + "fertility": 1.5 + }, + { + "year": 2005, + "country": "Barbados", + "cluster": 3, + "pop": 278870, + "life_expect": 77.296, + "fertility": 1.5 + }, + { + "year": 1955, + "country": "Belgium", + "cluster": 1, + "pop": 8868475, + "life_expect": 69.24, + "fertility": 2.496 + }, + { + "year": 1960, + "country": "Belgium", + "cluster": 1, + "pop": 9118700, + "life_expect": 70.25, + "fertility": 2.644 + }, + { + "year": 1965, + "country": "Belgium", + "cluster": 1, + "pop": 9448100, + "life_expect": 70.94, + "fertility": 2.392 + }, + { + "year": 1970, + "country": "Belgium", + "cluster": 1, + "pop": 9637800, + "life_expect": 71.44, + "fertility": 2.015 + }, + { + "year": 1975, + "country": "Belgium", + "cluster": 1, + "pop": 9794800, + "life_expect": 72.8, + "fertility": 1.705 + }, + { + "year": 1980, + "country": "Belgium", + "cluster": 1, + "pop": 9846800, + "life_expect": 73.93, + "fertility": 1.595 + }, + { + "year": 1985, + "country": "Belgium", + "cluster": 1, + "pop": 9858200, + "life_expect": 75.35, + "fertility": 1.559 + }, + { + "year": 1990, + "country": "Belgium", + "cluster": 1, + "pop": 9969310, + "life_expect": 76.46, + "fertility": 1.613 + }, + { + "year": 1995, + "country": "Belgium", + "cluster": 1, + "pop": 10155459, + "life_expect": 77.53, + "fertility": 1.604 + }, + { + "year": 2000, + "country": "Belgium", + "cluster": 1, + "pop": 10263618, + "life_expect": 78.32, + "fertility": 1.638 + }, + { + "year": 2005, + "country": "Belgium", + "cluster": 1, + "pop": 10364388, + "life_expect": 79.441, + "fertility": 1.646 + }, + { + "year": 1955, + "country": "Bolivia", + "cluster": 3, + "pop": 3074311, + "life_expect": 41.89, + "fertility": 6.75 + }, + { + "year": 1960, + "country": "Bolivia", + "cluster": 3, + "pop": 3434073, + "life_expect": 43.428, + "fertility": 6.63 + }, + { + "year": 1965, + "country": "Bolivia", + "cluster": 3, + "pop": 3853315, + "life_expect": 45.032, + "fertility": 6.56 + }, + { + "year": 1970, + "country": "Bolivia", + "cluster": 3, + "pop": 4346218, + "life_expect": 46.714, + "fertility": 6.5 + }, + { + "year": 1975, + "country": "Bolivia", + "cluster": 3, + "pop": 4914316, + "life_expect": 50.023, + "fertility": 5.8 + }, + { + "year": 1980, + "country": "Bolivia", + "cluster": 3, + "pop": 5441298, + "life_expect": 53.859, + "fertility": 5.2995 + }, + { + "year": 1985, + "country": "Bolivia", + "cluster": 3, + "pop": 5934935, + "life_expect": 57.251, + "fertility": 5 + }, + { + "year": 1990, + "country": "Bolivia", + "cluster": 3, + "pop": 6573900, + "life_expect": 59.957, + "fertility": 4.8 + }, + { + "year": 1995, + "country": "Bolivia", + "cluster": 3, + "pop": 7376582, + "life_expect": 62.05, + "fertility": 4.324 + }, + { + "year": 2000, + "country": "Bolivia", + "cluster": 3, + "pop": 8152620, + "life_expect": 63.883, + "fertility": 3.9585 + }, + { + "year": 2005, + "country": "Bolivia", + "cluster": 3, + "pop": 8857870, + "life_expect": 65.554, + "fertility": 3.5 + }, + { + "year": 1955, + "country": "Brazil", + "cluster": 3, + "pop": 61773546, + "life_expect": 53.285, + "fertility": 6.1501 + }, + { + "year": 1960, + "country": "Brazil", + "cluster": 3, + "pop": 71694810, + "life_expect": 55.665, + "fertility": 6.1501 + }, + { + "year": 1965, + "country": "Brazil", + "cluster": 3, + "pop": 83092908, + "life_expect": 57.632, + "fertility": 5.38 + }, + { + "year": 1970, + "country": "Brazil", + "cluster": 3, + "pop": 95684297, + "life_expect": 59.504, + "fertility": 4.7175 + }, + { + "year": 1975, + "country": "Brazil", + "cluster": 3, + "pop": 108823732, + "life_expect": 61.489, + "fertility": 4.305 + }, + { + "year": 1980, + "country": "Brazil", + "cluster": 3, + "pop": 122958132, + "life_expect": 63.336, + "fertility": 3.8 + }, + { + "year": 1985, + "country": "Brazil", + "cluster": 3, + "pop": 137302933, + "life_expect": 65.205, + "fertility": 3.1 + }, + { + "year": 1990, + "country": "Brazil", + "cluster": 3, + "pop": 151083809, + "life_expect": 67.057, + "fertility": 2.6 + }, + { + "year": 1995, + "country": "Brazil", + "cluster": 3, + "pop": 163542501, + "life_expect": 69.388, + "fertility": 2.45 + }, + { + "year": 2000, + "country": "Brazil", + "cluster": 3, + "pop": 175552771, + "life_expect": 71.006, + "fertility": 2.345 + }, + { + "year": 2005, + "country": "Brazil", + "cluster": 3, + "pop": 186112794, + "life_expect": 72.39, + "fertility": 2.245 + }, + { + "year": 1955, + "country": "Canada", + "cluster": 3, + "pop": 16050356, + "life_expect": 69.96, + "fertility": 3.882 + }, + { + "year": 1960, + "country": "Canada", + "cluster": 3, + "pop": 18266765, + "life_expect": 71.3, + "fertility": 3.675 + }, + { + "year": 1965, + "country": "Canada", + "cluster": 3, + "pop": 20071104, + "life_expect": 72.13, + "fertility": 2.61 + }, + { + "year": 1970, + "country": "Canada", + "cluster": 3, + "pop": 21749986, + "life_expect": 72.88, + "fertility": 1.976 + }, + { + "year": 1975, + "country": "Canada", + "cluster": 3, + "pop": 23209200, + "life_expect": 74.21, + "fertility": 1.734 + }, + { + "year": 1980, + "country": "Canada", + "cluster": 3, + "pop": 24593300, + "life_expect": 75.76, + "fertility": 1.634 + }, + { + "year": 1985, + "country": "Canada", + "cluster": 3, + "pop": 25941600, + "life_expect": 76.86, + "fertility": 1.616 + }, + { + "year": 1990, + "country": "Canada", + "cluster": 3, + "pop": 27790600, + "life_expect": 77.95, + "fertility": 1.694 + }, + { + "year": 1995, + "country": "Canada", + "cluster": 3, + "pop": 29619002, + "life_expect": 78.61, + "fertility": 1.564 + }, + { + "year": 2000, + "country": "Canada", + "cluster": 3, + "pop": 31278097, + "life_expect": 79.77, + "fertility": 1.522 + }, + { + "year": 2005, + "country": "Canada", + "cluster": 3, + "pop": 32805041, + "life_expect": 80.653, + "fertility": 1.527 + }, + { + "year": 1955, + "country": "Chile", + "cluster": 3, + "pop": 6743269, + "life_expect": 56.074, + "fertility": 5.486 + }, + { + "year": 1960, + "country": "Chile", + "cluster": 3, + "pop": 7585349, + "life_expect": 57.924, + "fertility": 5.4385 + }, + { + "year": 1965, + "country": "Chile", + "cluster": 3, + "pop": 8509950, + "life_expect": 60.523, + "fertility": 4.4405 + }, + { + "year": 1970, + "country": "Chile", + "cluster": 3, + "pop": 9368558, + "life_expect": 63.441, + "fertility": 3.63 + }, + { + "year": 1975, + "country": "Chile", + "cluster": 3, + "pop": 10251542, + "life_expect": 67.052, + "fertility": 2.803 + }, + { + "year": 1980, + "country": "Chile", + "cluster": 3, + "pop": 11093718, + "life_expect": 70.565, + "fertility": 2.671 + }, + { + "year": 1985, + "country": "Chile", + "cluster": 3, + "pop": 12066701, + "life_expect": 72.492, + "fertility": 2.65 + }, + { + "year": 1990, + "country": "Chile", + "cluster": 3, + "pop": 13127760, + "life_expect": 74.126, + "fertility": 2.55 + }, + { + "year": 1995, + "country": "Chile", + "cluster": 3, + "pop": 14205449, + "life_expect": 75.816, + "fertility": 2.21 + }, + { + "year": 2000, + "country": "Chile", + "cluster": 3, + "pop": 15153450, + "life_expect": 77.86, + "fertility": 2 + }, + { + "year": 2005, + "country": "Chile", + "cluster": 3, + "pop": 15980912, + "life_expect": 78.553, + "fertility": 1.944 + }, + { + "year": 1955, + "country": "China", + "cluster": 4, + "pop": 608655000, + "life_expect": 50.54896, + "fertility": 5.59 + }, + { + "year": 1960, + "country": "China", + "cluster": 4, + "pop": 667070000, + "life_expect": 44.50136, + "fertility": 5.72 + }, + { + "year": 1965, + "country": "China", + "cluster": 4, + "pop": 715185000, + "life_expect": 58.38112, + "fertility": 6.06 + }, + { + "year": 1970, + "country": "China", + "cluster": 4, + "pop": 818315000, + "life_expect": 63.11888, + "fertility": 4.86 + }, + { + "year": 1975, + "country": "China", + "cluster": 4, + "pop": 916395000, + "life_expect": 63.96736, + "fertility": 3.32 + }, + { + "year": 1980, + "country": "China", + "cluster": 4, + "pop": 981235000, + "life_expect": 65.525, + "fertility": 2.55 + }, + { + "year": 1985, + "country": "China", + "cluster": 4, + "pop": 1051040000, + "life_expect": 67.274, + "fertility": 2.46 + }, + { + "year": 1990, + "country": "China", + "cluster": 4, + "pop": 1135185000, + "life_expect": 68.69, + "fertility": 1.92 + }, + { + "year": 1995, + "country": "China", + "cluster": 4, + "pop": 1204855000, + "life_expect": 70.426, + "fertility": 1.781 + }, + { + "year": 2000, + "country": "China", + "cluster": 4, + "pop": 1262645000, + "life_expect": 72.028, + "fertility": 1.7 + }, + { + "year": 2005, + "country": "China", + "cluster": 4, + "pop": 1303182268, + "life_expect": 72.961, + "fertility": 1.725 + }, + { + "year": 1955, + "country": "Colombia", + "cluster": 3, + "pop": 13588405, + "life_expect": 55.118, + "fertility": 6.76 + }, + { + "year": 1960, + "country": "Colombia", + "cluster": 3, + "pop": 15952727, + "life_expect": 57.863, + "fertility": 6.76 + }, + { + "year": 1965, + "country": "Colombia", + "cluster": 3, + "pop": 18646175, + "life_expect": 59.963, + "fertility": 6.18 + }, + { + "year": 1970, + "country": "Colombia", + "cluster": 3, + "pop": 21429658, + "life_expect": 61.623, + "fertility": 5.0005 + }, + { + "year": 1975, + "country": "Colombia", + "cluster": 3, + "pop": 24114177, + "life_expect": 63.837, + "fertility": 4.3385 + }, + { + "year": 1980, + "country": "Colombia", + "cluster": 3, + "pop": 26582811, + "life_expect": 66.653, + "fertility": 3.685 + }, + { + "year": 1985, + "country": "Colombia", + "cluster": 3, + "pop": 29678395, + "life_expect": 67.768, + "fertility": 3.172 + }, + { + "year": 1990, + "country": "Colombia", + "cluster": 3, + "pop": 32858579, + "life_expect": 68.421, + "fertility": 2.93005 + }, + { + "year": 1995, + "country": "Colombia", + "cluster": 3, + "pop": 36280883, + "life_expect": 70.313, + "fertility": 2.7 + }, + { + "year": 2000, + "country": "Colombia", + "cluster": 3, + "pop": 39685655, + "life_expect": 71.682, + "fertility": 2.4705 + }, + { + "year": 2005, + "country": "Colombia", + "cluster": 3, + "pop": 42954279, + "life_expect": 72.889, + "fertility": 2.2205 + }, + { + "year": 1955, + "country": "Costa Rica", + "cluster": 3, + "pop": 1031782, + "life_expect": 60.026, + "fertility": 7.1135 + }, + { + "year": 1960, + "country": "Costa Rica", + "cluster": 3, + "pop": 1248022, + "life_expect": 62.842, + "fertility": 7.2245 + }, + { + "year": 1965, + "country": "Costa Rica", + "cluster": 3, + "pop": 1487605, + "life_expect": 65.424, + "fertility": 5.801 + }, + { + "year": 1970, + "country": "Costa Rica", + "cluster": 3, + "pop": 1735523, + "life_expect": 67.849, + "fertility": 4.346 + }, + { + "year": 1975, + "country": "Costa Rica", + "cluster": 3, + "pop": 1991580, + "life_expect": 70.75, + "fertility": 3.7755 + }, + { + "year": 1980, + "country": "Costa Rica", + "cluster": 3, + "pop": 2299124, + "life_expect": 73.45, + "fertility": 3.527 + }, + { + "year": 1985, + "country": "Costa Rica", + "cluster": 3, + "pop": 2643808, + "life_expect": 74.752, + "fertility": 3.374 + }, + { + "year": 1990, + "country": "Costa Rica", + "cluster": 3, + "pop": 3027175, + "life_expect": 75.713, + "fertility": 2.945 + }, + { + "year": 1995, + "country": "Costa Rica", + "cluster": 3, + "pop": 3383786, + "life_expect": 77.26, + "fertility": 2.5835 + }, + { + "year": 2000, + "country": "Costa Rica", + "cluster": 3, + "pop": 3710558, + "life_expect": 78.123, + "fertility": 2.2815 + }, + { + "year": 2005, + "country": "Costa Rica", + "cluster": 3, + "pop": 4016173, + "life_expect": 78.782, + "fertility": 2.0985 + }, + { + "year": 1955, + "country": "Croatia", + "cluster": 1, + "pop": 3955526, + "life_expect": 64.77, + "fertility": 2.42 + }, + { + "year": 1960, + "country": "Croatia", + "cluster": 1, + "pop": 4036145, + "life_expect": 67.13, + "fertility": 2.27 + }, + { + "year": 1965, + "country": "Croatia", + "cluster": 1, + "pop": 4133313, + "life_expect": 68.5, + "fertility": 2.09 + }, + { + "year": 1970, + "country": "Croatia", + "cluster": 1, + "pop": 4205389, + "life_expect": 69.61, + "fertility": 1.96 + }, + { + "year": 1975, + "country": "Croatia", + "cluster": 1, + "pop": 4255000, + "life_expect": 70.64, + "fertility": 2.02 + }, + { + "year": 1980, + "country": "Croatia", + "cluster": 1, + "pop": 4383000, + "life_expect": 70.46, + "fertility": 1.96 + }, + { + "year": 1985, + "country": "Croatia", + "cluster": 1, + "pop": 4457874, + "life_expect": 71.52, + "fertility": 1.84 + }, + { + "year": 1990, + "country": "Croatia", + "cluster": 1, + "pop": 4508347, + "life_expect": 72.527, + "fertility": 1.52 + }, + { + "year": 1995, + "country": "Croatia", + "cluster": 1, + "pop": 4496683, + "life_expect": 73.68, + "fertility": 1.537 + }, + { + "year": 2000, + "country": "Croatia", + "cluster": 1, + "pop": 4410830, + "life_expect": 74.876, + "fertility": 1.348 + }, + { + "year": 2005, + "country": "Croatia", + "cluster": 1, + "pop": 4495904, + "life_expect": 75.748, + "fertility": 1.346 + }, + { + "year": 1955, + "country": "Cuba", + "cluster": 3, + "pop": 6381106, + "life_expect": 62.325, + "fertility": 3.6995 + }, + { + "year": 1960, + "country": "Cuba", + "cluster": 3, + "pop": 7027210, + "life_expect": 65.246, + "fertility": 4.6805 + }, + { + "year": 1965, + "country": "Cuba", + "cluster": 3, + "pop": 7809916, + "life_expect": 68.29, + "fertility": 4.3 + }, + { + "year": 1970, + "country": "Cuba", + "cluster": 3, + "pop": 8542746, + "life_expect": 70.723, + "fertility": 3.6 + }, + { + "year": 1975, + "country": "Cuba", + "cluster": 3, + "pop": 9290074, + "life_expect": 72.649, + "fertility": 2.15 + }, + { + "year": 1980, + "country": "Cuba", + "cluster": 3, + "pop": 9652975, + "life_expect": 73.717, + "fertility": 1.8495 + }, + { + "year": 1985, + "country": "Cuba", + "cluster": 3, + "pop": 10078658, + "life_expect": 74.174, + "fertility": 1.8495 + }, + { + "year": 1990, + "country": "Cuba", + "cluster": 3, + "pop": 10544793, + "life_expect": 74.414, + "fertility": 1.6505 + }, + { + "year": 1995, + "country": "Cuba", + "cluster": 3, + "pop": 10896802, + "life_expect": 76.151, + "fertility": 1.6095 + }, + { + "year": 2000, + "country": "Cuba", + "cluster": 3, + "pop": 11134273, + "life_expect": 77.158, + "fertility": 1.63 + }, + { + "year": 2005, + "country": "Cuba", + "cluster": 3, + "pop": 11346670, + "life_expect": 78.273, + "fertility": 1.49 + }, + { + "year": 1955, + "country": "Dominican Republic", + "cluster": 3, + "pop": 2737257, + "life_expect": 49.828, + "fertility": 7.6405 + }, + { + "year": 1960, + "country": "Dominican Republic", + "cluster": 3, + "pop": 3231488, + "life_expect": 53.459, + "fertility": 7.3505 + }, + { + "year": 1965, + "country": "Dominican Republic", + "cluster": 3, + "pop": 3805881, + "life_expect": 56.751, + "fertility": 6.6495 + }, + { + "year": 1970, + "country": "Dominican Republic", + "cluster": 3, + "pop": 4422755, + "life_expect": 59.631, + "fertility": 5.71 + }, + { + "year": 1975, + "country": "Dominican Republic", + "cluster": 3, + "pop": 5048499, + "life_expect": 61.788, + "fertility": 4.76 + }, + { + "year": 1980, + "country": "Dominican Republic", + "cluster": 3, + "pop": 5696855, + "life_expect": 63.727, + "fertility": 4 + }, + { + "year": 1985, + "country": "Dominican Republic", + "cluster": 3, + "pop": 6377765, + "life_expect": 66.046, + "fertility": 3.47 + }, + { + "year": 1990, + "country": "Dominican Republic", + "cluster": 3, + "pop": 7077651, + "life_expect": 68.457, + "fertility": 3.1995 + }, + { + "year": 1995, + "country": "Dominican Republic", + "cluster": 3, + "pop": 7730224, + "life_expect": 69.957, + "fertility": 3.05 + }, + { + "year": 2000, + "country": "Dominican Republic", + "cluster": 3, + "pop": 8385828, + "life_expect": 70.847, + "fertility": 2.95 + }, + { + "year": 2005, + "country": "Dominican Republic", + "cluster": 3, + "pop": 9049595, + "life_expect": 72.235, + "fertility": 2.81 + }, + { + "year": 1955, + "country": "Ecuador", + "cluster": 3, + "pop": 3842399, + "life_expect": 51.356, + "fertility": 6.7 + }, + { + "year": 1960, + "country": "Ecuador", + "cluster": 3, + "pop": 4415956, + "life_expect": 54.64, + "fertility": 6.7 + }, + { + "year": 1965, + "country": "Ecuador", + "cluster": 3, + "pop": 5117779, + "life_expect": 56.678, + "fertility": 6.5 + }, + { + "year": 1970, + "country": "Ecuador", + "cluster": 3, + "pop": 5939246, + "life_expect": 58.796, + "fertility": 6.0005 + }, + { + "year": 1975, + "country": "Ecuador", + "cluster": 3, + "pop": 6871698, + "life_expect": 61.31, + "fertility": 5.4005 + }, + { + "year": 1980, + "country": "Ecuador", + "cluster": 3, + "pop": 7920499, + "life_expect": 64.342, + "fertility": 4.7005 + }, + { + "year": 1985, + "country": "Ecuador", + "cluster": 3, + "pop": 9061664, + "life_expect": 67.231, + "fertility": 4 + }, + { + "year": 1990, + "country": "Ecuador", + "cluster": 3, + "pop": 10318036, + "life_expect": 69.613, + "fertility": 3.4005 + }, + { + "year": 1995, + "country": "Ecuador", + "cluster": 3, + "pop": 11438004, + "life_expect": 72.312, + "fertility": 3.1 + }, + { + "year": 2000, + "country": "Ecuador", + "cluster": 3, + "pop": 12505204, + "life_expect": 74.173, + "fertility": 2.8175 + }, + { + "year": 2005, + "country": "Ecuador", + "cluster": 3, + "pop": 13363593, + "life_expect": 74.994, + "fertility": 2.578 + }, + { + "year": 1955, + "country": "Egypt", + "cluster": 5, + "pop": 23855527, + "life_expect": 44.444, + "fertility": 6.97 + }, + { + "year": 1960, + "country": "Egypt", + "cluster": 5, + "pop": 26846610, + "life_expect": 46.992, + "fertility": 7.073 + }, + { + "year": 1965, + "country": "Egypt", + "cluster": 5, + "pop": 30265148, + "life_expect": 49.293, + "fertility": 6.56 + }, + { + "year": 1970, + "country": "Egypt", + "cluster": 5, + "pop": 33574026, + "life_expect": 51.137, + "fertility": 5.855 + }, + { + "year": 1975, + "country": "Egypt", + "cluster": 5, + "pop": 36952499, + "life_expect": 53.319, + "fertility": 5.609 + }, + { + "year": 1980, + "country": "Egypt", + "cluster": 5, + "pop": 42634215, + "life_expect": 56.006, + "fertility": 5.332 + }, + { + "year": 1985, + "country": "Egypt", + "cluster": 5, + "pop": 50052381, + "life_expect": 59.797, + "fertility": 4.833 + }, + { + "year": 1990, + "country": "Egypt", + "cluster": 5, + "pop": 56694413, + "life_expect": 63.674, + "fertility": 3.908 + }, + { + "year": 1995, + "country": "Egypt", + "cluster": 5, + "pop": 63321615, + "life_expect": 67.217, + "fertility": 3.5 + }, + { + "year": 2000, + "country": "Egypt", + "cluster": 5, + "pop": 70492342, + "life_expect": 69.806, + "fertility": 3.174 + }, + { + "year": 2005, + "country": "Egypt", + "cluster": 5, + "pop": 77505756, + "life_expect": 71.338, + "fertility": 2.891 + }, + { + "year": 1955, + "country": "El Salvador", + "cluster": 3, + "pop": 2221139, + "life_expect": 48.57, + "fertility": 6.8065 + }, + { + "year": 1960, + "country": "El Salvador", + "cluster": 3, + "pop": 2581583, + "life_expect": 52.307, + "fertility": 6.847 + }, + { + "year": 1965, + "country": "El Salvador", + "cluster": 3, + "pop": 3017852, + "life_expect": 55.855, + "fertility": 6.621 + }, + { + "year": 1970, + "country": "El Salvador", + "cluster": 3, + "pop": 3603907, + "life_expect": 58.207, + "fertility": 6.0995 + }, + { + "year": 1975, + "country": "El Salvador", + "cluster": 3, + "pop": 4071179, + "life_expect": 56.696, + "fertility": 5.5996 + }, + { + "year": 1980, + "country": "El Salvador", + "cluster": 3, + "pop": 4566199, + "life_expect": 56.604, + "fertility": 4.5 + }, + { + "year": 1985, + "country": "El Salvador", + "cluster": 3, + "pop": 4664361, + "life_expect": 63.154, + "fertility": 3.901 + }, + { + "year": 1990, + "country": "El Salvador", + "cluster": 3, + "pop": 5099884, + "life_expect": 66.798, + "fertility": 3.52 + }, + { + "year": 1995, + "country": "El Salvador", + "cluster": 3, + "pop": 5568437, + "life_expect": 69.535, + "fertility": 3.17 + }, + { + "year": 2000, + "country": "El Salvador", + "cluster": 3, + "pop": 6122515, + "life_expect": 70.734, + "fertility": 2.883 + }, + { + "year": 2005, + "country": "El Salvador", + "cluster": 3, + "pop": 6704932, + "life_expect": 71.878, + "fertility": 2.6825 + }, + { + "year": 1955, + "country": "Finland", + "cluster": 1, + "pop": 4234900, + "life_expect": 67.49, + "fertility": 2.769 + }, + { + "year": 1960, + "country": "Finland", + "cluster": 1, + "pop": 4429600, + "life_expect": 68.75, + "fertility": 2.66 + }, + { + "year": 1965, + "country": "Finland", + "cluster": 1, + "pop": 4563732, + "life_expect": 69.83, + "fertility": 2.191 + }, + { + "year": 1970, + "country": "Finland", + "cluster": 1, + "pop": 4606307, + "life_expect": 70.87, + "fertility": 1.623 + }, + { + "year": 1975, + "country": "Finland", + "cluster": 1, + "pop": 4711439, + "life_expect": 72.52, + "fertility": 1.663 + }, + { + "year": 1980, + "country": "Finland", + "cluster": 1, + "pop": 4779535, + "life_expect": 74.55, + "fertility": 1.685 + }, + { + "year": 1985, + "country": "Finland", + "cluster": 1, + "pop": 4901783, + "life_expect": 74.83, + "fertility": 1.66 + }, + { + "year": 1990, + "country": "Finland", + "cluster": 1, + "pop": 4986431, + "life_expect": 75.7, + "fertility": 1.819 + }, + { + "year": 1995, + "country": "Finland", + "cluster": 1, + "pop": 5104654, + "life_expect": 77.13, + "fertility": 1.743 + }, + { + "year": 2000, + "country": "Finland", + "cluster": 1, + "pop": 5168595, + "life_expect": 78.37, + "fertility": 1.754 + }, + { + "year": 2005, + "country": "Finland", + "cluster": 1, + "pop": 5223442, + "life_expect": 79.313, + "fertility": 1.825 + }, + { + "year": 1955, + "country": "France", + "cluster": 1, + "pop": 43427669, + "life_expect": 68.93, + "fertility": 2.712 + }, + { + "year": 1960, + "country": "France", + "cluster": 1, + "pop": 45670000, + "life_expect": 70.51, + "fertility": 2.85 + }, + { + "year": 1965, + "country": "France", + "cluster": 1, + "pop": 48763000, + "life_expect": 71.55, + "fertility": 2.607 + }, + { + "year": 1970, + "country": "France", + "cluster": 1, + "pop": 50787000, + "life_expect": 72.38, + "fertility": 2.31 + }, + { + "year": 1975, + "country": "France", + "cluster": 1, + "pop": 52758427, + "life_expect": 73.83, + "fertility": 1.862 + }, + { + "year": 1980, + "country": "France", + "cluster": 1, + "pop": 53869743, + "life_expect": 74.89, + "fertility": 1.866 + }, + { + "year": 1985, + "country": "France", + "cluster": 1, + "pop": 55171224, + "life_expect": 76.34, + "fertility": 1.805 + }, + { + "year": 1990, + "country": "France", + "cluster": 1, + "pop": 56735161, + "life_expect": 77.46, + "fertility": 1.713 + }, + { + "year": 1995, + "country": "France", + "cluster": 1, + "pop": 58149727, + "life_expect": 78.64, + "fertility": 1.7624 + }, + { + "year": 2000, + "country": "France", + "cluster": 1, + "pop": 59381628, + "life_expect": 79.59, + "fertility": 1.8833 + }, + { + "year": 2005, + "country": "France", + "cluster": 1, + "pop": 60656178, + "life_expect": 80.657, + "fertility": 1.8916 + }, + { + "year": 1955, + "country": "Georgia", + "cluster": 1, + "pop": 3827154, + "life_expect": 62.625, + "fertility": 2.909 + }, + { + "year": 1960, + "country": "Georgia", + "cluster": 1, + "pop": 4146570, + "life_expect": 64.644, + "fertility": 2.979 + }, + { + "year": 1965, + "country": "Georgia", + "cluster": 1, + "pop": 4464959, + "life_expect": 66.654, + "fertility": 2.611 + }, + { + "year": 1970, + "country": "Georgia", + "cluster": 1, + "pop": 4694491, + "life_expect": 68.158, + "fertility": 2.601 + }, + { + "year": 1975, + "country": "Georgia", + "cluster": 1, + "pop": 4897656, + "life_expect": 69.634, + "fertility": 2.39 + }, + { + "year": 1980, + "country": "Georgia", + "cluster": 1, + "pop": 5045697, + "life_expect": 69.638, + "fertility": 2.269 + }, + { + "year": 1985, + "country": "Georgia", + "cluster": 1, + "pop": 5192957, + "life_expect": 70.45, + "fertility": 2.263 + }, + { + "year": 1990, + "country": "Georgia", + "cluster": 1, + "pop": 5426207, + "life_expect": 70.465, + "fertility": 1.95 + }, + { + "year": 1995, + "country": "Georgia", + "cluster": 1, + "pop": 5012952, + "life_expect": 70.49, + "fertility": 1.58 + }, + { + "year": 2000, + "country": "Georgia", + "cluster": 1, + "pop": 4777209, + "life_expect": 70.476, + "fertility": 1.478 + }, + { + "year": 2005, + "country": "Georgia", + "cluster": 1, + "pop": 4677401, + "life_expect": 70.987, + "fertility": 1.407 + }, + { + "year": 1955, + "country": "Germany", + "cluster": 1, + "pop": 70195612, + "life_expect": 69.1, + "fertility": 2.3 + }, + { + "year": 1960, + "country": "Germany", + "cluster": 1, + "pop": 72480869, + "life_expect": 70.3, + "fertility": 2.49 + }, + { + "year": 1965, + "country": "Germany", + "cluster": 1, + "pop": 75638851, + "life_expect": 70.8, + "fertility": 2.32 + }, + { + "year": 1970, + "country": "Germany", + "cluster": 1, + "pop": 77783164, + "life_expect": 71, + "fertility": 1.64 + }, + { + "year": 1975, + "country": "Germany", + "cluster": 1, + "pop": 78682325, + "life_expect": 72.5, + "fertility": 1.52 + }, + { + "year": 1980, + "country": "Germany", + "cluster": 1, + "pop": 78297904, + "life_expect": 73.8, + "fertility": 1.46 + }, + { + "year": 1985, + "country": "Germany", + "cluster": 1, + "pop": 77684907, + "life_expect": 74.847, + "fertility": 1.43 + }, + { + "year": 1990, + "country": "Germany", + "cluster": 1, + "pop": 79380394, + "life_expect": 76.07, + "fertility": 1.31 + }, + { + "year": 1995, + "country": "Germany", + "cluster": 1, + "pop": 81653702, + "life_expect": 77.34, + "fertility": 1.34 + }, + { + "year": 2000, + "country": "Germany", + "cluster": 1, + "pop": 82187909, + "life_expect": 78.67, + "fertility": 1.346 + }, + { + "year": 2005, + "country": "Germany", + "cluster": 1, + "pop": 82431390, + "life_expect": 79.406, + "fertility": 1.36 + }, + { + "year": 1955, + "country": "Greece", + "cluster": 1, + "pop": 7965538, + "life_expect": 67.86, + "fertility": 2.27 + }, + { + "year": 1960, + "country": "Greece", + "cluster": 1, + "pop": 8327405, + "life_expect": 69.51, + "fertility": 2.2 + }, + { + "year": 1965, + "country": "Greece", + "cluster": 1, + "pop": 8550333, + "life_expect": 71, + "fertility": 2.38 + }, + { + "year": 1970, + "country": "Greece", + "cluster": 1, + "pop": 8792806, + "life_expect": 72.34, + "fertility": 2.32 + }, + { + "year": 1975, + "country": "Greece", + "cluster": 1, + "pop": 9046542, + "life_expect": 73.68, + "fertility": 2.32 + }, + { + "year": 1980, + "country": "Greece", + "cluster": 1, + "pop": 9642505, + "life_expect": 75.24, + "fertility": 1.96 + }, + { + "year": 1985, + "country": "Greece", + "cluster": 1, + "pop": 9923253, + "life_expect": 76.67, + "fertility": 1.53 + }, + { + "year": 1990, + "country": "Greece", + "cluster": 1, + "pop": 10129603, + "life_expect": 77.03, + "fertility": 1.37 + }, + { + "year": 1995, + "country": "Greece", + "cluster": 1, + "pop": 10457554, + "life_expect": 77.869, + "fertility": 1.296 + }, + { + "year": 2000, + "country": "Greece", + "cluster": 1, + "pop": 10559110, + "life_expect": 78.256, + "fertility": 1.277 + }, + { + "year": 2005, + "country": "Greece", + "cluster": 1, + "pop": 10668354, + "life_expect": 79.483, + "fertility": 1.325 + }, + { + "year": 1955, + "country": "Grenada", + "cluster": 3, + "pop": 84621, + "life_expect": 63.114, + "fertility": 6.7 + }, + { + "year": 1960, + "country": "Grenada", + "cluster": 3, + "pop": 90148, + "life_expect": 63.608, + "fertility": 6.4 + }, + { + "year": 1965, + "country": "Grenada", + "cluster": 3, + "pop": 93290, + "life_expect": 64.091, + "fertility": 4.8 + }, + { + "year": 1970, + "country": "Grenada", + "cluster": 3, + "pop": 95410, + "life_expect": 64.577, + "fertility": 4.6 + }, + { + "year": 1975, + "country": "Grenada", + "cluster": 3, + "pop": 95819, + "life_expect": 65.035, + "fertility": 4.3 + }, + { + "year": 1980, + "country": "Grenada", + "cluster": 3, + "pop": 90164, + "life_expect": 65.503, + "fertility": 4.23 + }, + { + "year": 1985, + "country": "Grenada", + "cluster": 3, + "pop": 92203, + "life_expect": 66.002, + "fertility": 4.14 + }, + { + "year": 1990, + "country": "Grenada", + "cluster": 3, + "pop": 92360, + "life_expect": 66.469, + "fertility": 3.26 + }, + { + "year": 1995, + "country": "Grenada", + "cluster": 3, + "pop": 90603, + "life_expect": 66.986, + "fertility": 2.814 + }, + { + "year": 2000, + "country": "Grenada", + "cluster": 3, + "pop": 89312, + "life_expect": 67.746, + "fertility": 2.429 + }, + { + "year": 2005, + "country": "Grenada", + "cluster": 3, + "pop": 89502, + "life_expect": 68.724, + "fertility": 2.302 + }, + { + "year": 1955, + "country": "Haiti", + "cluster": 3, + "pop": 3376419, + "life_expect": 40.696, + "fertility": 6.3 + }, + { + "year": 1960, + "country": "Haiti", + "cluster": 3, + "pop": 3722743, + "life_expect": 43.59, + "fertility": 6.3 + }, + { + "year": 1965, + "country": "Haiti", + "cluster": 3, + "pop": 4137405, + "life_expect": 46.243, + "fertility": 6 + }, + { + "year": 1970, + "country": "Haiti", + "cluster": 3, + "pop": 4604915, + "life_expect": 48.042, + "fertility": 5.6005 + }, + { + "year": 1975, + "country": "Haiti", + "cluster": 3, + "pop": 4828338, + "life_expect": 49.923, + "fertility": 5.8 + }, + { + "year": 1980, + "country": "Haiti", + "cluster": 3, + "pop": 5029725, + "life_expect": 51.461, + "fertility": 6.2099 + }, + { + "year": 1985, + "country": "Haiti", + "cluster": 3, + "pop": 5517977, + "life_expect": 53.636, + "fertility": 5.69985 + }, + { + "year": 1990, + "country": "Haiti", + "cluster": 3, + "pop": 6126101, + "life_expect": 55.089, + "fertility": 5.14985 + }, + { + "year": 1995, + "country": "Haiti", + "cluster": 3, + "pop": 6675578, + "life_expect": 56.671, + "fertility": 4.61995 + }, + { + "year": 2000, + "country": "Haiti", + "cluster": 3, + "pop": 7306302, + "life_expect": 58.137, + "fertility": 4 + }, + { + "year": 2005, + "country": "Haiti", + "cluster": 3, + "pop": 8121622, + "life_expect": 60.916, + "fertility": 3.5445 + }, + { + "year": 1955, + "country": "Hong Kong", + "cluster": 4, + "pop": 2490400, + "life_expect": 64.75, + "fertility": 4.72 + }, + { + "year": 1960, + "country": "Hong Kong", + "cluster": 4, + "pop": 3075300, + "life_expect": 67.65, + "fertility": 5.31 + }, + { + "year": 1965, + "country": "Hong Kong", + "cluster": 4, + "pop": 3597900, + "life_expect": 70, + "fertility": 4.02 + }, + { + "year": 1970, + "country": "Hong Kong", + "cluster": 4, + "pop": 3959000, + "life_expect": 72, + "fertility": 2.89 + }, + { + "year": 1975, + "country": "Hong Kong", + "cluster": 4, + "pop": 4395800, + "life_expect": 73.6, + "fertility": 2.32 + }, + { + "year": 1980, + "country": "Hong Kong", + "cluster": 4, + "pop": 5063100, + "life_expect": 75.45, + "fertility": 1.8 + }, + { + "year": 1985, + "country": "Hong Kong", + "cluster": 4, + "pop": 5456200, + "life_expect": 76.2, + "fertility": 1.31 + }, + { + "year": 1990, + "country": "Hong Kong", + "cluster": 4, + "pop": 5687959, + "life_expect": 77.601, + "fertility": 1.288 + }, + { + "year": 1995, + "country": "Hong Kong", + "cluster": 4, + "pop": 6225347, + "life_expect": 80, + "fertility": 1.08 + }, + { + "year": 2000, + "country": "Hong Kong", + "cluster": 4, + "pop": 6658720, + "life_expect": 81.495, + "fertility": 0.94 + }, + { + "year": 2005, + "country": "Hong Kong", + "cluster": 4, + "pop": 6898686, + "life_expect": 82.208, + "fertility": 0.966 + }, + { + "year": 1955, + "country": "Iceland", + "cluster": 1, + "pop": 158044, + "life_expect": 73.47, + "fertility": 4.023 + }, + { + "year": 1960, + "country": "Iceland", + "cluster": 1, + "pop": 175860, + "life_expect": 73.68, + "fertility": 3.943 + }, + { + "year": 1965, + "country": "Iceland", + "cluster": 1, + "pop": 192288, + "life_expect": 73.73, + "fertility": 3.154 + }, + { + "year": 1970, + "country": "Iceland", + "cluster": 1, + "pop": 204104, + "life_expect": 74.46, + "fertility": 2.843 + }, + { + "year": 1975, + "country": "Iceland", + "cluster": 1, + "pop": 218031, + "life_expect": 76.11, + "fertility": 2.287 + }, + { + "year": 1980, + "country": "Iceland", + "cluster": 1, + "pop": 228161, + "life_expect": 76.99, + "fertility": 2.248 + }, + { + "year": 1985, + "country": "Iceland", + "cluster": 1, + "pop": 241403, + "life_expect": 77.23, + "fertility": 2.116 + }, + { + "year": 1990, + "country": "Iceland", + "cluster": 1, + "pop": 254719, + "life_expect": 78.77, + "fertility": 2.194 + }, + { + "year": 1995, + "country": "Iceland", + "cluster": 1, + "pop": 267527, + "life_expect": 78.95, + "fertility": 2.056 + }, + { + "year": 2000, + "country": "Iceland", + "cluster": 1, + "pop": 281043, + "life_expect": 80.5, + "fertility": 1.993 + }, + { + "year": 2005, + "country": "Iceland", + "cluster": 1, + "pop": 296737, + "life_expect": 81.757, + "fertility": 2.052 + }, + { + "year": 1955, + "country": "India", + "cluster": 0, + "pop": 393000000, + "life_expect": 40.249, + "fertility": 5.8961 + }, + { + "year": 1960, + "country": "India", + "cluster": 0, + "pop": 434000000, + "life_expect": 43.605, + "fertility": 5.8216 + }, + { + "year": 1965, + "country": "India", + "cluster": 0, + "pop": 485000000, + "life_expect": 47.193, + "fertility": 5.6058 + }, + { + "year": 1970, + "country": "India", + "cluster": 0, + "pop": 541000000, + "life_expect": 50.651, + "fertility": 5.264 + }, + { + "year": 1975, + "country": "India", + "cluster": 0, + "pop": 607000000, + "life_expect": 54.208, + "fertility": 4.8888 + }, + { + "year": 1980, + "country": "India", + "cluster": 0, + "pop": 679000000, + "life_expect": 56.596, + "fertility": 4.4975 + }, + { + "year": 1985, + "country": "India", + "cluster": 0, + "pop": 755000000, + "life_expect": 58.553, + "fertility": 4.15 + }, + { + "year": 1990, + "country": "India", + "cluster": 0, + "pop": 839000000, + "life_expect": 60.223, + "fertility": 3.8648 + }, + { + "year": 1995, + "country": "India", + "cluster": 0, + "pop": 927000000, + "life_expect": 61.765, + "fertility": 3.4551 + }, + { + "year": 2000, + "country": "India", + "cluster": 0, + "pop": 1007702000, + "life_expect": 62.879, + "fertility": 3.1132 + }, + { + "year": 2005, + "country": "India", + "cluster": 0, + "pop": 1080264388, + "life_expect": 64.698, + "fertility": 2.8073 + }, + { + "year": 1955, + "country": "Indonesia", + "cluster": 4, + "pop": 86807000, + "life_expect": 39.918, + "fertility": 5.672 + }, + { + "year": 1960, + "country": "Indonesia", + "cluster": 4, + "pop": 95254000, + "life_expect": 42.518, + "fertility": 5.62 + }, + { + "year": 1965, + "country": "Indonesia", + "cluster": 4, + "pop": 105093000, + "life_expect": 45.964, + "fertility": 5.568 + }, + { + "year": 1970, + "country": "Indonesia", + "cluster": 4, + "pop": 116044000, + "life_expect": 49.203, + "fertility": 5.3 + }, + { + "year": 1975, + "country": "Indonesia", + "cluster": 4, + "pop": 130297000, + "life_expect": 52.702, + "fertility": 4.73 + }, + { + "year": 1980, + "country": "Indonesia", + "cluster": 4, + "pop": 146995000, + "life_expect": 56.159, + "fertility": 4.109 + }, + { + "year": 1985, + "country": "Indonesia", + "cluster": 4, + "pop": 163403000, + "life_expect": 60.137, + "fertility": 3.4 + }, + { + "year": 1990, + "country": "Indonesia", + "cluster": 4, + "pop": 178500000, + "life_expect": 62.681, + "fertility": 2.9 + }, + { + "year": 1995, + "country": "Indonesia", + "cluster": 4, + "pop": 194755000, + "life_expect": 66.041, + "fertility": 2.55 + }, + { + "year": 2000, + "country": "Indonesia", + "cluster": 4, + "pop": 206265000, + "life_expect": 68.588, + "fertility": 2.3761 + }, + { + "year": 2005, + "country": "Indonesia", + "cluster": 4, + "pop": 218465000, + "life_expect": 70.65, + "fertility": 2.182 + }, + { + "year": 1955, + "country": "Iran", + "cluster": 5, + "pop": 18729000, + "life_expect": 47.181, + "fertility": 7 + }, + { + "year": 1960, + "country": "Iran", + "cluster": 5, + "pop": 21577000, + "life_expect": 49.325, + "fertility": 7 + }, + { + "year": 1965, + "country": "Iran", + "cluster": 5, + "pop": 25000000, + "life_expect": 52.469, + "fertility": 6.8 + }, + { + "year": 1970, + "country": "Iran", + "cluster": 5, + "pop": 28933000, + "life_expect": 55.234, + "fertility": 6.4 + }, + { + "year": 1975, + "country": "Iran", + "cluster": 5, + "pop": 33379000, + "life_expect": 57.702, + "fertility": 6.5 + }, + { + "year": 1980, + "country": "Iran", + "cluster": 5, + "pop": 39583397, + "life_expect": 59.62, + "fertility": 6.63 + }, + { + "year": 1985, + "country": "Iran", + "cluster": 5, + "pop": 48439952, + "life_expect": 63.04, + "fertility": 5.62 + }, + { + "year": 1990, + "country": "Iran", + "cluster": 5, + "pop": 57035717, + "life_expect": 65.742, + "fertility": 4.328 + }, + { + "year": 1995, + "country": "Iran", + "cluster": 5, + "pop": 61628116, + "life_expect": 68.042, + "fertility": 2.534 + }, + { + "year": 2000, + "country": "Iran", + "cluster": 5, + "pop": 65660289, + "life_expect": 69.451, + "fertility": 2.124 + }, + { + "year": 2005, + "country": "Iran", + "cluster": 5, + "pop": 68017860, + "life_expect": 70.964, + "fertility": 2.04 + }, + { + "year": 1955, + "country": "Iraq", + "cluster": 5, + "pop": 5903253, + "life_expect": 48.437, + "fertility": 7.3 + }, + { + "year": 1960, + "country": "Iraq", + "cluster": 5, + "pop": 6822030, + "life_expect": 51.457, + "fertility": 7.25 + }, + { + "year": 1965, + "country": "Iraq", + "cluster": 5, + "pop": 7970746, + "life_expect": 54.459, + "fertility": 7.2 + }, + { + "year": 1970, + "country": "Iraq", + "cluster": 5, + "pop": 9413671, + "life_expect": 56.95, + "fertility": 7.15 + }, + { + "year": 1975, + "country": "Iraq", + "cluster": 5, + "pop": 11117804, + "life_expect": 60.413, + "fertility": 6.8 + }, + { + "year": 1980, + "country": "Iraq", + "cluster": 5, + "pop": 13232839, + "life_expect": 62.038, + "fertility": 6.35 + }, + { + "year": 1985, + "country": "Iraq", + "cluster": 5, + "pop": 15693620, + "life_expect": 65.044, + "fertility": 6.15 + }, + { + "year": 1990, + "country": "Iraq", + "cluster": 5, + "pop": 18134702, + "life_expect": 59.461, + "fertility": 5.7 + }, + { + "year": 1995, + "country": "Iraq", + "cluster": 5, + "pop": 19557247, + "life_expect": 58.811, + "fertility": 5.37 + }, + { + "year": 2000, + "country": "Iraq", + "cluster": 5, + "pop": 22675617, + "life_expect": 57.046, + "fertility": 4.858 + }, + { + "year": 2005, + "country": "Iraq", + "cluster": 5, + "pop": 26074906, + "life_expect": 59.545, + "fertility": 4.264 + }, + { + "year": 1955, + "country": "Ireland", + "cluster": 1, + "pop": 2916133, + "life_expect": 68.9, + "fertility": 3.68 + }, + { + "year": 1960, + "country": "Ireland", + "cluster": 1, + "pop": 2832000, + "life_expect": 70.29, + "fertility": 3.979 + }, + { + "year": 1965, + "country": "Ireland", + "cluster": 1, + "pop": 2876000, + "life_expect": 71.08, + "fertility": 3.873 + }, + { + "year": 1970, + "country": "Ireland", + "cluster": 1, + "pop": 2950100, + "life_expect": 71.28, + "fertility": 3.815 + }, + { + "year": 1975, + "country": "Ireland", + "cluster": 1, + "pop": 3177300, + "life_expect": 72.03, + "fertility": 3.478 + }, + { + "year": 1980, + "country": "Ireland", + "cluster": 1, + "pop": 3401000, + "life_expect": 73.1, + "fertility": 2.877 + }, + { + "year": 1985, + "country": "Ireland", + "cluster": 1, + "pop": 3540000, + "life_expect": 74.36, + "fertility": 2.287 + }, + { + "year": 1990, + "country": "Ireland", + "cluster": 1, + "pop": 3508200, + "life_expect": 75.467, + "fertility": 1.969 + }, + { + "year": 1995, + "country": "Ireland", + "cluster": 1, + "pop": 3613890, + "life_expect": 76.122, + "fertility": 1.9 + }, + { + "year": 2000, + "country": "Ireland", + "cluster": 1, + "pop": 3791690, + "life_expect": 77.783, + "fertility": 1.969 + }, + { + "year": 2005, + "country": "Ireland", + "cluster": 1, + "pop": 4015676, + "life_expect": 78.885, + "fertility": 1.964 + }, + { + "year": 1955, + "country": "Israel", + "cluster": 5, + "pop": 1772032, + "life_expect": 67.84, + "fertility": 3.893 + }, + { + "year": 1960, + "country": "Israel", + "cluster": 5, + "pop": 2141495, + "life_expect": 69.39, + "fertility": 3.852 + }, + { + "year": 1965, + "country": "Israel", + "cluster": 5, + "pop": 2578184, + "life_expect": 70.75, + "fertility": 3.79 + }, + { + "year": 1970, + "country": "Israel", + "cluster": 5, + "pop": 2903434, + "life_expect": 71.63, + "fertility": 3.77 + }, + { + "year": 1975, + "country": "Israel", + "cluster": 5, + "pop": 3354242, + "life_expect": 73.06, + "fertility": 3.409 + }, + { + "year": 1980, + "country": "Israel", + "cluster": 5, + "pop": 3737473, + "life_expect": 74.45, + "fertility": 3.125 + }, + { + "year": 1985, + "country": "Israel", + "cluster": 5, + "pop": 4074965, + "life_expect": 75.6, + "fertility": 3.051 + }, + { + "year": 1990, + "country": "Israel", + "cluster": 5, + "pop": 4512068, + "life_expect": 76.93, + "fertility": 2.933 + }, + { + "year": 1995, + "country": "Israel", + "cluster": 5, + "pop": 5305120, + "life_expect": 78.269, + "fertility": 2.942 + }, + { + "year": 2000, + "country": "Israel", + "cluster": 5, + "pop": 5842454, + "life_expect": 79.696, + "fertility": 2.906 + }, + { + "year": 2005, + "country": "Israel", + "cluster": 5, + "pop": 6276883, + "life_expect": 80.745, + "fertility": 2.75 + }, + { + "year": 1955, + "country": "Italy", + "cluster": 1, + "pop": 48633000, + "life_expect": 67.81, + "fertility": 2.35 + }, + { + "year": 1960, + "country": "Italy", + "cluster": 1, + "pop": 50197600, + "life_expect": 69.24, + "fertility": 2.498 + }, + { + "year": 1965, + "country": "Italy", + "cluster": 1, + "pop": 51987100, + "life_expect": 71.06, + "fertility": 2.493 + }, + { + "year": 1970, + "country": "Italy", + "cluster": 1, + "pop": 53661100, + "life_expect": 72.19, + "fertility": 2.325 + }, + { + "year": 1975, + "country": "Italy", + "cluster": 1, + "pop": 55571894, + "life_expect": 73.48, + "fertility": 1.889 + }, + { + "year": 1980, + "country": "Italy", + "cluster": 1, + "pop": 56451247, + "life_expect": 74.98, + "fertility": 1.53 + }, + { + "year": 1985, + "country": "Italy", + "cluster": 1, + "pop": 56731215, + "life_expect": 76.42, + "fertility": 1.349 + }, + { + "year": 1990, + "country": "Italy", + "cluster": 1, + "pop": 56742886, + "life_expect": 77.44, + "fertility": 1.275 + }, + { + "year": 1995, + "country": "Italy", + "cluster": 1, + "pop": 57274531, + "life_expect": 78.82, + "fertility": 1.213 + }, + { + "year": 2000, + "country": "Italy", + "cluster": 1, + "pop": 57719337, + "life_expect": 80.24, + "fertility": 1.286 + }, + { + "year": 2005, + "country": "Italy", + "cluster": 1, + "pop": 58103033, + "life_expect": 80.546, + "fertility": 1.379 + }, + { + "year": 1955, + "country": "Jamaica", + "cluster": 3, + "pop": 1488805, + "life_expect": 62.61, + "fertility": 5.08 + }, + { + "year": 1960, + "country": "Jamaica", + "cluster": 3, + "pop": 1631784, + "life_expect": 65.61, + "fertility": 5.64 + }, + { + "year": 1965, + "country": "Jamaica", + "cluster": 3, + "pop": 1777397, + "life_expect": 67.51, + "fertility": 5.78 + }, + { + "year": 1970, + "country": "Jamaica", + "cluster": 3, + "pop": 1943787, + "life_expect": 69, + "fertility": 5 + }, + { + "year": 1975, + "country": "Jamaica", + "cluster": 3, + "pop": 2104879, + "life_expect": 70.11, + "fertility": 4 + }, + { + "year": 1980, + "country": "Jamaica", + "cluster": 3, + "pop": 2228803, + "life_expect": 71.21, + "fertility": 3.55 + }, + { + "year": 1985, + "country": "Jamaica", + "cluster": 3, + "pop": 2318652, + "life_expect": 71.77, + "fertility": 3.1 + }, + { + "year": 1990, + "country": "Jamaica", + "cluster": 3, + "pop": 2347922, + "life_expect": 71.766, + "fertility": 2.84 + }, + { + "year": 1995, + "country": "Jamaica", + "cluster": 3, + "pop": 2469389, + "life_expect": 72.262, + "fertility": 2.67 + }, + { + "year": 2000, + "country": "Jamaica", + "cluster": 3, + "pop": 2615467, + "life_expect": 72.047, + "fertility": 2.628 + }, + { + "year": 2005, + "country": "Jamaica", + "cluster": 3, + "pop": 2735520, + "life_expect": 72.567, + "fertility": 2.4289 + }, + { + "year": 1955, + "country": "Japan", + "cluster": 4, + "pop": 89815060, + "life_expect": 65.5, + "fertility": 2.08 + }, + { + "year": 1960, + "country": "Japan", + "cluster": 4, + "pop": 94091638, + "life_expect": 68.73, + "fertility": 2.02 + }, + { + "year": 1965, + "country": "Japan", + "cluster": 4, + "pop": 98882534, + "life_expect": 71.43, + "fertility": 2 + }, + { + "year": 1970, + "country": "Japan", + "cluster": 4, + "pop": 104344973, + "life_expect": 73.42, + "fertility": 2.07 + }, + { + "year": 1975, + "country": "Japan", + "cluster": 4, + "pop": 111573116, + "life_expect": 75.38, + "fertility": 1.81 + }, + { + "year": 1980, + "country": "Japan", + "cluster": 4, + "pop": 116807309, + "life_expect": 77.11, + "fertility": 1.76 + }, + { + "year": 1985, + "country": "Japan", + "cluster": 4, + "pop": 120754335, + "life_expect": 78.67, + "fertility": 1.66 + }, + { + "year": 1990, + "country": "Japan", + "cluster": 4, + "pop": 123537399, + "life_expect": 79.36, + "fertility": 1.49 + }, + { + "year": 1995, + "country": "Japan", + "cluster": 4, + "pop": 125341354, + "life_expect": 80.69, + "fertility": 1.39 + }, + { + "year": 2000, + "country": "Japan", + "cluster": 4, + "pop": 126699784, + "life_expect": 82, + "fertility": 1.291 + }, + { + "year": 2005, + "country": "Japan", + "cluster": 4, + "pop": 127417244, + "life_expect": 82.603, + "fertility": 1.27 + }, + { + "year": 1955, + "country": "Kenya", + "cluster": 2, + "pop": 7033999, + "life_expect": 44.686, + "fertility": 7.816 + }, + { + "year": 1960, + "country": "Kenya", + "cluster": 2, + "pop": 8156827, + "life_expect": 47.949, + "fertility": 8.12 + }, + { + "year": 1965, + "country": "Kenya", + "cluster": 2, + "pop": 9549179, + "life_expect": 50.654, + "fertility": 8.12 + }, + { + "year": 1970, + "country": "Kenya", + "cluster": 2, + "pop": 11247182, + "life_expect": 53.559, + "fertility": 8 + }, + { + "year": 1975, + "country": "Kenya", + "cluster": 2, + "pop": 13433414, + "life_expect": 56.155, + "fertility": 7.6 + }, + { + "year": 1980, + "country": "Kenya", + "cluster": 2, + "pop": 16331401, + "life_expect": 58.766, + "fertility": 7.2 + }, + { + "year": 1985, + "country": "Kenya", + "cluster": 2, + "pop": 19763285, + "life_expect": 59.339, + "fertility": 6.5 + }, + { + "year": 1990, + "country": "Kenya", + "cluster": 2, + "pop": 23358413, + "life_expect": 59.285, + "fertility": 5.4 + }, + { + "year": 1995, + "country": "Kenya", + "cluster": 2, + "pop": 27060142, + "life_expect": 54.407, + "fertility": 5 + }, + { + "year": 2000, + "country": "Kenya", + "cluster": 2, + "pop": 29985839, + "life_expect": 50.992, + "fertility": 5 + }, + { + "year": 2005, + "country": "Kenya", + "cluster": 2, + "pop": 33829590, + "life_expect": 54.11, + "fertility": 4.959 + }, + { + "year": 1955, + "country": "South Korea", + "cluster": 4, + "pop": 8839427, + "life_expect": 54.081, + "fertility": 3.8 + }, + { + "year": 1960, + "country": "South Korea", + "cluster": 4, + "pop": 10391909, + "life_expect": 56.656, + "fertility": 3.41 + }, + { + "year": 1965, + "country": "South Korea", + "cluster": 4, + "pop": 11868751, + "life_expect": 59.942, + "fertility": 4.09 + }, + { + "year": 1970, + "country": "South Korea", + "cluster": 4, + "pop": 13911902, + "life_expect": 63.983, + "fertility": 3.72 + }, + { + "year": 1975, + "country": "South Korea", + "cluster": 4, + "pop": 15801308, + "life_expect": 67.159, + "fertility": 2.58 + }, + { + "year": 1980, + "country": "South Korea", + "cluster": 4, + "pop": 17113626, + "life_expect": 69.1, + "fertility": 2.93 + }, + { + "year": 1985, + "country": "South Korea", + "cluster": 4, + "pop": 18481420, + "life_expect": 70.647, + "fertility": 2.45 + }, + { + "year": 1990, + "country": "South Korea", + "cluster": 4, + "pop": 20018546, + "life_expect": 69.978, + "fertility": 2.35 + }, + { + "year": 1995, + "country": "South Korea", + "cluster": 4, + "pop": 21561856, + "life_expect": 67.727, + "fertility": 2.0938 + }, + { + "year": 2000, + "country": "South Korea", + "cluster": 4, + "pop": 21647682, + "life_expect": 66.662, + "fertility": 1.9173 + }, + { + "year": 2005, + "country": "South Korea", + "cluster": 4, + "pop": 22912177, + "life_expect": 67.297, + "fertility": 1.85 + }, + { + "year": 1955, + "country": "North Korea", + "cluster": 4, + "pop": 21551834, + "life_expect": 52.681, + "fertility": 6.332 + }, + { + "year": 1960, + "country": "North Korea", + "cluster": 4, + "pop": 24784140, + "life_expect": 55.292, + "fertility": 5.63 + }, + { + "year": 1965, + "country": "North Korea", + "cluster": 4, + "pop": 28705000, + "life_expect": 57.716, + "fertility": 4.708 + }, + { + "year": 1970, + "country": "North Korea", + "cluster": 4, + "pop": 32241000, + "life_expect": 62.612, + "fertility": 4.281 + }, + { + "year": 1975, + "country": "North Korea", + "cluster": 4, + "pop": 35281000, + "life_expect": 64.766, + "fertility": 2.919 + }, + { + "year": 1980, + "country": "North Korea", + "cluster": 4, + "pop": 38124000, + "life_expect": 67.123, + "fertility": 2.234 + }, + { + "year": 1985, + "country": "North Korea", + "cluster": 4, + "pop": 40806000, + "life_expect": 69.81, + "fertility": 1.601 + }, + { + "year": 1990, + "country": "North Korea", + "cluster": 4, + "pop": 42869000, + "life_expect": 72.244, + "fertility": 1.696 + }, + { + "year": 1995, + "country": "North Korea", + "cluster": 4, + "pop": 45264146, + "life_expect": 74.647, + "fertility": 1.514 + }, + { + "year": 2000, + "country": "North Korea", + "cluster": 4, + "pop": 47351083, + "life_expect": 77.045, + "fertility": 1.242 + }, + { + "year": 2005, + "country": "North Korea", + "cluster": 4, + "pop": 48640671, + "life_expect": 78.623, + "fertility": 1.21 + }, + { + "year": 1955, + "country": "Lebanon", + "cluster": 5, + "pop": 1560985, + "life_expect": 59.489, + "fertility": 5.72 + }, + { + "year": 1960, + "country": "Lebanon", + "cluster": 5, + "pop": 1786235, + "life_expect": 62.094, + "fertility": 5.689 + }, + { + "year": 1965, + "country": "Lebanon", + "cluster": 5, + "pop": 2057945, + "life_expect": 63.87, + "fertility": 5.336 + }, + { + "year": 1970, + "country": "Lebanon", + "cluster": 5, + "pop": 2383029, + "life_expect": 65.421, + "fertility": 4.78 + }, + { + "year": 1975, + "country": "Lebanon", + "cluster": 5, + "pop": 3098159, + "life_expect": 66.099, + "fertility": 4.311 + }, + { + "year": 1980, + "country": "Lebanon", + "cluster": 5, + "pop": 3085876, + "life_expect": 66.983, + "fertility": 3.895 + }, + { + "year": 1985, + "country": "Lebanon", + "cluster": 5, + "pop": 3088235, + "life_expect": 67.926, + "fertility": 3.313 + }, + { + "year": 1990, + "country": "Lebanon", + "cluster": 5, + "pop": 3147267, + "life_expect": 69.292, + "fertility": 3 + }, + { + "year": 1995, + "country": "Lebanon", + "cluster": 5, + "pop": 3334733, + "life_expect": 70.265, + "fertility": 2.695 + }, + { + "year": 2000, + "country": "Lebanon", + "cluster": 5, + "pop": 3578036, + "life_expect": 71.028, + "fertility": 2.319 + }, + { + "year": 2005, + "country": "Lebanon", + "cluster": 5, + "pop": 3826018, + "life_expect": 71.993, + "fertility": 2.209 + }, + { + "year": 1955, + "country": "Mexico", + "cluster": 3, + "pop": 32929914, + "life_expect": 55.19, + "fertility": 6.8 + }, + { + "year": 1960, + "country": "Mexico", + "cluster": 3, + "pop": 38578505, + "life_expect": 58.299, + "fertility": 6.7495 + }, + { + "year": 1965, + "country": "Mexico", + "cluster": 3, + "pop": 45142399, + "life_expect": 60.11, + "fertility": 6.7495 + }, + { + "year": 1970, + "country": "Mexico", + "cluster": 3, + "pop": 52775158, + "life_expect": 62.361, + "fertility": 6.5 + }, + { + "year": 1975, + "country": "Mexico", + "cluster": 3, + "pop": 60678045, + "life_expect": 65.032, + "fertility": 5.2505 + }, + { + "year": 1980, + "country": "Mexico", + "cluster": 3, + "pop": 68347479, + "life_expect": 67.405, + "fertility": 4.25 + }, + { + "year": 1985, + "country": "Mexico", + "cluster": 3, + "pop": 76767225, + "life_expect": 69.498, + "fertility": 3.6295 + }, + { + "year": 1990, + "country": "Mexico", + "cluster": 3, + "pop": 84913652, + "life_expect": 71.455, + "fertility": 3.1905 + }, + { + "year": 1995, + "country": "Mexico", + "cluster": 3, + "pop": 92880353, + "life_expect": 73.67, + "fertility": 2.6705 + }, + { + "year": 2000, + "country": "Mexico", + "cluster": 3, + "pop": 99926620, + "life_expect": 74.902, + "fertility": 2.4005 + }, + { + "year": 2005, + "country": "Mexico", + "cluster": 3, + "pop": 106202903, + "life_expect": 76.195, + "fertility": 2.211 + }, + { + "year": 1955, + "country": "Netherlands", + "cluster": 1, + "pop": 10750842, + "life_expect": 72.99, + "fertility": 3.095 + }, + { + "year": 1960, + "country": "Netherlands", + "cluster": 1, + "pop": 11486000, + "life_expect": 73.23, + "fertility": 3.168 + }, + { + "year": 1965, + "country": "Netherlands", + "cluster": 1, + "pop": 12292000, + "life_expect": 73.82, + "fertility": 2.797 + }, + { + "year": 1970, + "country": "Netherlands", + "cluster": 1, + "pop": 13032335, + "life_expect": 73.75, + "fertility": 2.059 + }, + { + "year": 1975, + "country": "Netherlands", + "cluster": 1, + "pop": 13653438, + "life_expect": 75.24, + "fertility": 1.596 + }, + { + "year": 1980, + "country": "Netherlands", + "cluster": 1, + "pop": 14143901, + "life_expect": 76.05, + "fertility": 1.515 + }, + { + "year": 1985, + "country": "Netherlands", + "cluster": 1, + "pop": 14491380, + "life_expect": 76.83, + "fertility": 1.555 + }, + { + "year": 1990, + "country": "Netherlands", + "cluster": 1, + "pop": 14951510, + "life_expect": 77.42, + "fertility": 1.583 + }, + { + "year": 1995, + "country": "Netherlands", + "cluster": 1, + "pop": 15459054, + "life_expect": 78.03, + "fertility": 1.6 + }, + { + "year": 2000, + "country": "Netherlands", + "cluster": 1, + "pop": 15907853, + "life_expect": 78.53, + "fertility": 1.726 + }, + { + "year": 2005, + "country": "Netherlands", + "cluster": 1, + "pop": 16407491, + "life_expect": 79.762, + "fertility": 1.721 + }, + { + "year": 1955, + "country": "New Zealand", + "cluster": 4, + "pop": 2136168, + "life_expect": 70.26, + "fertility": 4.07 + }, + { + "year": 1960, + "country": "New Zealand", + "cluster": 4, + "pop": 2371746, + "life_expect": 71.24, + "fertility": 4.022 + }, + { + "year": 1965, + "country": "New Zealand", + "cluster": 4, + "pop": 2640400, + "life_expect": 71.52, + "fertility": 3.348 + }, + { + "year": 1970, + "country": "New Zealand", + "cluster": 4, + "pop": 2828050, + "life_expect": 71.89, + "fertility": 2.843 + }, + { + "year": 1975, + "country": "New Zealand", + "cluster": 4, + "pop": 3117800, + "life_expect": 72.22, + "fertility": 2.178 + }, + { + "year": 1980, + "country": "New Zealand", + "cluster": 4, + "pop": 3170150, + "life_expect": 73.84, + "fertility": 1.963 + }, + { + "year": 1985, + "country": "New Zealand", + "cluster": 4, + "pop": 3298050, + "life_expect": 74.32, + "fertility": 2.053 + }, + { + "year": 1990, + "country": "New Zealand", + "cluster": 4, + "pop": 3359604, + "life_expect": 76.33, + "fertility": 2.061 + }, + { + "year": 1995, + "country": "New Zealand", + "cluster": 4, + "pop": 3565990, + "life_expect": 77.55, + "fertility": 1.952 + }, + { + "year": 2000, + "country": "New Zealand", + "cluster": 4, + "pop": 3819762, + "life_expect": 79.11, + "fertility": 1.964 + }, + { + "year": 2005, + "country": "New Zealand", + "cluster": 4, + "pop": 4035461, + "life_expect": 80.204, + "fertility": 1.994 + }, + { + "year": 1955, + "country": "Nigeria", + "cluster": 2, + "pop": 35458978, + "life_expect": 37.802, + "fertility": 6.9 + }, + { + "year": 1960, + "country": "Nigeria", + "cluster": 2, + "pop": 39914593, + "life_expect": 39.36, + "fertility": 6.9 + }, + { + "year": 1965, + "country": "Nigeria", + "cluster": 2, + "pop": 45020052, + "life_expect": 41.04, + "fertility": 6.9 + }, + { + "year": 1970, + "country": "Nigeria", + "cluster": 2, + "pop": 51027516, + "life_expect": 42.821, + "fertility": 6.9 + }, + { + "year": 1975, + "country": "Nigeria", + "cluster": 2, + "pop": 58522112, + "life_expect": 44.514, + "fertility": 6.9 + }, + { + "year": 1980, + "country": "Nigeria", + "cluster": 2, + "pop": 68550274, + "life_expect": 45.826, + "fertility": 6.9 + }, + { + "year": 1985, + "country": "Nigeria", + "cluster": 2, + "pop": 77573154, + "life_expect": 46.886, + "fertility": 6.834 + }, + { + "year": 1990, + "country": "Nigeria", + "cluster": 2, + "pop": 88510354, + "life_expect": 47.472, + "fertility": 6.635 + }, + { + "year": 1995, + "country": "Nigeria", + "cluster": 2, + "pop": 100960105, + "life_expect": 47.464, + "fertility": 6.246 + }, + { + "year": 2000, + "country": "Nigeria", + "cluster": 2, + "pop": 114306700, + "life_expect": 46.608, + "fertility": 5.845 + }, + { + "year": 2005, + "country": "Nigeria", + "cluster": 2, + "pop": 128765768, + "life_expect": 46.859, + "fertility": 5.322 + }, + { + "year": 1955, + "country": "Norway", + "cluster": 1, + "pop": 3427409, + "life_expect": 73.44, + "fertility": 2.837 + }, + { + "year": 1960, + "country": "Norway", + "cluster": 1, + "pop": 3581239, + "life_expect": 73.47, + "fertility": 2.898 + }, + { + "year": 1965, + "country": "Norway", + "cluster": 1, + "pop": 3723153, + "life_expect": 74.08, + "fertility": 2.719 + }, + { + "year": 1970, + "country": "Norway", + "cluster": 1, + "pop": 3877386, + "life_expect": 74.34, + "fertility": 2.248 + }, + { + "year": 1975, + "country": "Norway", + "cluster": 1, + "pop": 4007313, + "life_expect": 75.37, + "fertility": 1.81 + }, + { + "year": 1980, + "country": "Norway", + "cluster": 1, + "pop": 4085620, + "life_expect": 75.97, + "fertility": 1.687 + }, + { + "year": 1985, + "country": "Norway", + "cluster": 1, + "pop": 4152419, + "life_expect": 75.89, + "fertility": 1.8 + }, + { + "year": 1990, + "country": "Norway", + "cluster": 1, + "pop": 4242006, + "life_expect": 77.32, + "fertility": 1.886 + }, + { + "year": 1995, + "country": "Norway", + "cluster": 1, + "pop": 4359101, + "life_expect": 78.32, + "fertility": 1.853 + }, + { + "year": 2000, + "country": "Norway", + "cluster": 1, + "pop": 4492400, + "life_expect": 79.05, + "fertility": 1.801 + }, + { + "year": 2005, + "country": "Norway", + "cluster": 1, + "pop": 4593041, + "life_expect": 80.196, + "fertility": 1.848 + }, + { + "year": 1955, + "country": "Pakistan", + "cluster": 0, + "pop": 44434445, + "life_expect": 45.557, + "fertility": 6.6 + }, + { + "year": 1960, + "country": "Pakistan", + "cluster": 0, + "pop": 50386898, + "life_expect": 47.67, + "fertility": 6.6 + }, + { + "year": 1965, + "country": "Pakistan", + "cluster": 0, + "pop": 57494940, + "life_expect": 49.8, + "fertility": 6.6 + }, + { + "year": 1970, + "country": "Pakistan", + "cluster": 0, + "pop": 65705964, + "life_expect": 51.929, + "fertility": 6.6 + }, + { + "year": 1975, + "country": "Pakistan", + "cluster": 0, + "pop": 74711541, + "life_expect": 54.043, + "fertility": 6.6 + }, + { + "year": 1980, + "country": "Pakistan", + "cluster": 0, + "pop": 85219117, + "life_expect": 56.158, + "fertility": 6.6 + }, + { + "year": 1985, + "country": "Pakistan", + "cluster": 0, + "pop": 99060352, + "life_expect": 58.245, + "fertility": 6.66 + }, + { + "year": 1990, + "country": "Pakistan", + "cluster": 0, + "pop": 114578478, + "life_expect": 60.838, + "fertility": 5.8 + }, + { + "year": 1995, + "country": "Pakistan", + "cluster": 0, + "pop": 128690285, + "life_expect": 61.818, + "fertility": 4.9596 + }, + { + "year": 2000, + "country": "Pakistan", + "cluster": 0, + "pop": 146342958, + "life_expect": 63.61, + "fertility": 3.9936 + }, + { + "year": 2005, + "country": "Pakistan", + "cluster": 0, + "pop": 162419946, + "life_expect": 65.483, + "fertility": 3.5211 + }, + { + "year": 1955, + "country": "Peru", + "cluster": 3, + "pop": 8671500, + "life_expect": 46.263, + "fertility": 6.853 + }, + { + "year": 1960, + "country": "Peru", + "cluster": 3, + "pop": 9931000, + "life_expect": 49.096, + "fertility": 6.853 + }, + { + "year": 1965, + "country": "Peru", + "cluster": 3, + "pop": 11467300, + "life_expect": 51.445, + "fertility": 6.56 + }, + { + "year": 1970, + "country": "Peru", + "cluster": 3, + "pop": 13192800, + "life_expect": 55.448, + "fertility": 6 + }, + { + "year": 1975, + "country": "Peru", + "cluster": 3, + "pop": 15161199, + "life_expect": 58.447, + "fertility": 5.378 + }, + { + "year": 1980, + "country": "Peru", + "cluster": 3, + "pop": 17295298, + "life_expect": 61.406, + "fertility": 4.65 + }, + { + "year": 1985, + "country": "Peru", + "cluster": 3, + "pop": 19348926, + "life_expect": 64.134, + "fertility": 4.1 + }, + { + "year": 1990, + "country": "Peru", + "cluster": 3, + "pop": 21511443, + "life_expect": 66.458, + "fertility": 3.7 + }, + { + "year": 1995, + "country": "Peru", + "cluster": 3, + "pop": 23846388, + "life_expect": 68.386, + "fertility": 3.0995 + }, + { + "year": 2000, + "country": "Peru", + "cluster": 3, + "pop": 25979722, + "life_expect": 69.906, + "fertility": 2.7005 + }, + { + "year": 2005, + "country": "Peru", + "cluster": 3, + "pop": 27925628, + "life_expect": 71.421, + "fertility": 2.5065 + }, + { + "year": 1955, + "country": "Philippines", + "cluster": 4, + "pop": 24553055, + "life_expect": 51.334, + "fertility": 7.13 + }, + { + "year": 1960, + "country": "Philippines", + "cluster": 4, + "pop": 28528939, + "life_expect": 54.757, + "fertility": 6.85 + }, + { + "year": 1965, + "country": "Philippines", + "cluster": 4, + "pop": 33267569, + "life_expect": 56.393, + "fertility": 6.5 + }, + { + "year": 1970, + "country": "Philippines", + "cluster": 4, + "pop": 38603696, + "life_expect": 58.065, + "fertility": 6 + }, + { + "year": 1975, + "country": "Philippines", + "cluster": 4, + "pop": 44336842, + "life_expect": 60.06, + "fertility": 5.5 + }, + { + "year": 1980, + "country": "Philippines", + "cluster": 4, + "pop": 50940182, + "life_expect": 62.082, + "fertility": 4.95 + }, + { + "year": 1985, + "country": "Philippines", + "cluster": 4, + "pop": 57288037, + "life_expect": 64.151, + "fertility": 4.55 + }, + { + "year": 1990, + "country": "Philippines", + "cluster": 4, + "pop": 64318120, + "life_expect": 66.458, + "fertility": 4.143 + }, + { + "year": 1995, + "country": "Philippines", + "cluster": 4, + "pop": 71717437, + "life_expect": 68.564, + "fertility": 3.7248 + }, + { + "year": 2000, + "country": "Philippines", + "cluster": 4, + "pop": 79739825, + "life_expect": 70.303, + "fertility": 3.5436 + }, + { + "year": 2005, + "country": "Philippines", + "cluster": 4, + "pop": 87857473, + "life_expect": 71.688, + "fertility": 3.2327 + }, + { + "year": 1955, + "country": "Poland", + "cluster": 1, + "pop": 27220668, + "life_expect": 65.77, + "fertility": 3.29 + }, + { + "year": 1960, + "country": "Poland", + "cluster": 1, + "pop": 29589842, + "life_expect": 67.64, + "fertility": 2.65 + }, + { + "year": 1965, + "country": "Poland", + "cluster": 1, + "pop": 31262358, + "life_expect": 69.61, + "fertility": 2.27 + }, + { + "year": 1970, + "country": "Poland", + "cluster": 1, + "pop": 32526000, + "life_expect": 70.85, + "fertility": 2.25 + }, + { + "year": 1975, + "country": "Poland", + "cluster": 1, + "pop": 33969240, + "life_expect": 70.67, + "fertility": 2.26 + }, + { + "year": 1980, + "country": "Poland", + "cluster": 1, + "pop": 35578016, + "life_expect": 71.32, + "fertility": 2.33 + }, + { + "year": 1985, + "country": "Poland", + "cluster": 1, + "pop": 37225792, + "life_expect": 70.98, + "fertility": 2.15 + }, + { + "year": 1990, + "country": "Poland", + "cluster": 1, + "pop": 38119408, + "life_expect": 70.99, + "fertility": 1.89 + }, + { + "year": 1995, + "country": "Poland", + "cluster": 1, + "pop": 38600642, + "life_expect": 72.75, + "fertility": 1.478 + }, + { + "year": 2000, + "country": "Poland", + "cluster": 1, + "pop": 38654164, + "life_expect": 74.67, + "fertility": 1.251 + }, + { + "year": 2005, + "country": "Poland", + "cluster": 1, + "pop": 38557984, + "life_expect": 75.563, + "fertility": 1.227 + }, + { + "year": 1955, + "country": "Portugal", + "cluster": 1, + "pop": 8692600, + "life_expect": 61.51, + "fertility": 3.03 + }, + { + "year": 1960, + "country": "Portugal", + "cluster": 1, + "pop": 9036700, + "life_expect": 64.39, + "fertility": 3.074 + }, + { + "year": 1965, + "country": "Portugal", + "cluster": 1, + "pop": 9128850, + "life_expect": 66.6, + "fertility": 2.849 + }, + { + "year": 1970, + "country": "Portugal", + "cluster": 1, + "pop": 9044200, + "life_expect": 69.26, + "fertility": 2.748 + }, + { + "year": 1975, + "country": "Portugal", + "cluster": 1, + "pop": 9411090, + "life_expect": 70.41, + "fertility": 2.41 + }, + { + "year": 1980, + "country": "Portugal", + "cluster": 1, + "pop": 9777800, + "life_expect": 72.77, + "fertility": 1.982 + }, + { + "year": 1985, + "country": "Portugal", + "cluster": 1, + "pop": 9897192, + "life_expect": 74.06, + "fertility": 1.594 + }, + { + "year": 1990, + "country": "Portugal", + "cluster": 1, + "pop": 9922689, + "life_expect": 74.86, + "fertility": 1.516 + }, + { + "year": 1995, + "country": "Portugal", + "cluster": 1, + "pop": 10065543, + "life_expect": 75.97, + "fertility": 1.475 + }, + { + "year": 2000, + "country": "Portugal", + "cluster": 1, + "pop": 10335597, + "life_expect": 77.29, + "fertility": 1.454 + }, + { + "year": 2005, + "country": "Portugal", + "cluster": 1, + "pop": 10566212, + "life_expect": 78.098, + "fertility": 1.455 + }, + { + "year": 1955, + "country": "Rwanda", + "cluster": 2, + "pop": 2698272, + "life_expect": 41.5, + "fertility": 8 + }, + { + "year": 1960, + "country": "Rwanda", + "cluster": 2, + "pop": 3031804, + "life_expect": 43, + "fertility": 8.1 + }, + { + "year": 1965, + "country": "Rwanda", + "cluster": 2, + "pop": 3264640, + "life_expect": 44.1, + "fertility": 8.2 + }, + { + "year": 1970, + "country": "Rwanda", + "cluster": 2, + "pop": 3769171, + "life_expect": 44.6, + "fertility": 8.29 + }, + { + "year": 1975, + "country": "Rwanda", + "cluster": 2, + "pop": 4356863, + "life_expect": 45, + "fertility": 8.492 + }, + { + "year": 1980, + "country": "Rwanda", + "cluster": 2, + "pop": 5138689, + "life_expect": 46.218, + "fertility": 8.5 + }, + { + "year": 1985, + "country": "Rwanda", + "cluster": 2, + "pop": 6009833, + "life_expect": 44.02, + "fertility": 8.25 + }, + { + "year": 1990, + "country": "Rwanda", + "cluster": 2, + "pop": 6923738, + "life_expect": 23.599, + "fertility": 6.9 + }, + { + "year": 1995, + "country": "Rwanda", + "cluster": 2, + "pop": 5706501, + "life_expect": 36.087, + "fertility": 6.0993 + }, + { + "year": 2000, + "country": "Rwanda", + "cluster": 2, + "pop": 7507056, + "life_expect": 43.413, + "fertility": 6.01 + }, + { + "year": 2005, + "country": "Rwanda", + "cluster": 2, + "pop": 8440820, + "life_expect": 46.242, + "fertility": 5.9169 + }, + { + "year": 1955, + "country": "Saudi Arabia", + "cluster": 5, + "pop": 4243218, + "life_expect": 42.868, + "fertility": 7.175 + }, + { + "year": 1960, + "country": "Saudi Arabia", + "cluster": 5, + "pop": 4718301, + "life_expect": 45.914, + "fertility": 7.257 + }, + { + "year": 1965, + "country": "Saudi Arabia", + "cluster": 5, + "pop": 5327432, + "life_expect": 49.901, + "fertility": 7.257 + }, + { + "year": 1970, + "country": "Saudi Arabia", + "cluster": 5, + "pop": 6109051, + "life_expect": 53.886, + "fertility": 7.298 + }, + { + "year": 1975, + "country": "Saudi Arabia", + "cluster": 5, + "pop": 7204820, + "life_expect": 58.69, + "fertility": 7.278 + }, + { + "year": 1980, + "country": "Saudi Arabia", + "cluster": 5, + "pop": 9999161, + "life_expect": 63.012, + "fertility": 7.015 + }, + { + "year": 1985, + "country": "Saudi Arabia", + "cluster": 5, + "pop": 13330067, + "life_expect": 66.295, + "fertility": 6.217 + }, + { + "year": 1990, + "country": "Saudi Arabia", + "cluster": 5, + "pop": 16060761, + "life_expect": 68.768, + "fertility": 5.446 + }, + { + "year": 1995, + "country": "Saudi Arabia", + "cluster": 5, + "pop": 19966998, + "life_expect": 70.533, + "fertility": 4.621 + }, + { + "year": 2000, + "country": "Saudi Arabia", + "cluster": 5, + "pop": 23153090, + "life_expect": 71.626, + "fertility": 3.81 + }, + { + "year": 2005, + "country": "Saudi Arabia", + "cluster": 5, + "pop": 26417599, + "life_expect": 72.777, + "fertility": 3.352 + }, + { + "year": 1955, + "country": "South Africa", + "cluster": 2, + "pop": 15368551, + "life_expect": 47.985, + "fertility": 6.5 + }, + { + "year": 1960, + "country": "South Africa", + "cluster": 2, + "pop": 17416653, + "life_expect": 49.951, + "fertility": 6.3 + }, + { + "year": 1965, + "country": "South Africa", + "cluster": 2, + "pop": 19898242, + "life_expect": 51.927, + "fertility": 5.7 + }, + { + "year": 1970, + "country": "South Africa", + "cluster": 2, + "pop": 22739921, + "life_expect": 53.696, + "fertility": 5.47 + }, + { + "year": 1975, + "country": "South Africa", + "cluster": 2, + "pop": 25815144, + "life_expect": 55.527, + "fertility": 5 + }, + { + "year": 1980, + "country": "South Africa", + "cluster": 2, + "pop": 29251588, + "life_expect": 58.161, + "fertility": 4.556 + }, + { + "year": 1985, + "country": "South Africa", + "cluster": 2, + "pop": 34254092, + "life_expect": 60.834, + "fertility": 3.85 + }, + { + "year": 1990, + "country": "South Africa", + "cluster": 2, + "pop": 38391094, + "life_expect": 61.888, + "fertility": 3.343 + }, + { + "year": 1995, + "country": "South Africa", + "cluster": 2, + "pop": 41779149, + "life_expect": 60.236, + "fertility": 2.954 + }, + { + "year": 2000, + "country": "South Africa", + "cluster": 2, + "pop": 44066197, + "life_expect": 53.365, + "fertility": 2.802 + }, + { + "year": 2005, + "country": "South Africa", + "cluster": 2, + "pop": 44344136, + "life_expect": 49.339, + "fertility": 2.637 + }, + { + "year": 1955, + "country": "Spain", + "cluster": 1, + "pop": 29318745, + "life_expect": 66.66, + "fertility": 2.75 + }, + { + "year": 1960, + "country": "Spain", + "cluster": 1, + "pop": 30641187, + "life_expect": 69.69, + "fertility": 2.89 + }, + { + "year": 1965, + "country": "Spain", + "cluster": 1, + "pop": 32084511, + "life_expect": 71.44, + "fertility": 2.92 + }, + { + "year": 1970, + "country": "Spain", + "cluster": 1, + "pop": 33876479, + "life_expect": 73.06, + "fertility": 2.86 + }, + { + "year": 1975, + "country": "Spain", + "cluster": 1, + "pop": 35563535, + "life_expect": 74.39, + "fertility": 2.57 + }, + { + "year": 1980, + "country": "Spain", + "cluster": 1, + "pop": 37488360, + "life_expect": 76.3, + "fertility": 1.89 + }, + { + "year": 1985, + "country": "Spain", + "cluster": 1, + "pop": 38534853, + "life_expect": 76.9, + "fertility": 1.48 + }, + { + "year": 1990, + "country": "Spain", + "cluster": 1, + "pop": 39350769, + "life_expect": 77.57, + "fertility": 1.27 + }, + { + "year": 1995, + "country": "Spain", + "cluster": 1, + "pop": 39749715, + "life_expect": 78.77, + "fertility": 1.182 + }, + { + "year": 2000, + "country": "Spain", + "cluster": 1, + "pop": 40016081, + "life_expect": 79.78, + "fertility": 1.287 + }, + { + "year": 2005, + "country": "Spain", + "cluster": 1, + "pop": 40341462, + "life_expect": 80.941, + "fertility": 1.409 + }, + { + "year": 1955, + "country": "Switzerland", + "cluster": 1, + "pop": 4980000, + "life_expect": 70.56, + "fertility": 2.34 + }, + { + "year": 1960, + "country": "Switzerland", + "cluster": 1, + "pop": 5362000, + "life_expect": 71.32, + "fertility": 2.51 + }, + { + "year": 1965, + "country": "Switzerland", + "cluster": 1, + "pop": 5943000, + "life_expect": 72.77, + "fertility": 2.27 + }, + { + "year": 1970, + "country": "Switzerland", + "cluster": 1, + "pop": 6267000, + "life_expect": 73.78, + "fertility": 1.82 + }, + { + "year": 1975, + "country": "Switzerland", + "cluster": 1, + "pop": 6403500, + "life_expect": 75.39, + "fertility": 1.53 + }, + { + "year": 1980, + "country": "Switzerland", + "cluster": 1, + "pop": 6385229, + "life_expect": 76.21, + "fertility": 1.53 + }, + { + "year": 1985, + "country": "Switzerland", + "cluster": 1, + "pop": 6563770, + "life_expect": 77.41, + "fertility": 1.53 + }, + { + "year": 1990, + "country": "Switzerland", + "cluster": 1, + "pop": 6836626, + "life_expect": 78.03, + "fertility": 1.54 + }, + { + "year": 1995, + "country": "Switzerland", + "cluster": 1, + "pop": 7157106, + "life_expect": 79.37, + "fertility": 1.47 + }, + { + "year": 2000, + "country": "Switzerland", + "cluster": 1, + "pop": 7266920, + "life_expect": 80.62, + "fertility": 1.415 + }, + { + "year": 2005, + "country": "Switzerland", + "cluster": 1, + "pop": 7489370, + "life_expect": 81.701, + "fertility": 1.42 + }, + { + "year": 1955, + "country": "Turkey", + "cluster": 1, + "pop": 24144571, + "life_expect": 48.079, + "fertility": 6.6 + }, + { + "year": 1960, + "country": "Turkey", + "cluster": 1, + "pop": 28217122, + "life_expect": 52.098, + "fertility": 6.19 + }, + { + "year": 1965, + "country": "Turkey", + "cluster": 1, + "pop": 31950718, + "life_expect": 54.336, + "fertility": 5.7 + }, + { + "year": 1970, + "country": "Turkey", + "cluster": 1, + "pop": 35758382, + "life_expect": 57.005, + "fertility": 5.3 + }, + { + "year": 1975, + "country": "Turkey", + "cluster": 1, + "pop": 40529798, + "life_expect": 59.507, + "fertility": 4.715 + }, + { + "year": 1980, + "country": "Turkey", + "cluster": 1, + "pop": 45120802, + "life_expect": 61.036, + "fertility": 4.15 + }, + { + "year": 1985, + "country": "Turkey", + "cluster": 1, + "pop": 50669003, + "life_expect": 63.108, + "fertility": 3.276 + }, + { + "year": 1990, + "country": "Turkey", + "cluster": 1, + "pop": 56084632, + "life_expect": 66.146, + "fertility": 2.904 + }, + { + "year": 1995, + "country": "Turkey", + "cluster": 1, + "pop": 61188984, + "life_expect": 68.835, + "fertility": 2.574 + }, + { + "year": 2000, + "country": "Turkey", + "cluster": 1, + "pop": 65666677, + "life_expect": 70.845, + "fertility": 2.23 + }, + { + "year": 2005, + "country": "Turkey", + "cluster": 1, + "pop": 69660559, + "life_expect": 71.777, + "fertility": 2.143 + }, + { + "year": 1955, + "country": "United Kingdom", + "cluster": 1, + "pop": 50946000, + "life_expect": 70.42, + "fertility": 2.49 + }, + { + "year": 1960, + "country": "United Kingdom", + "cluster": 1, + "pop": 52372000, + "life_expect": 70.76, + "fertility": 2.81 + }, + { + "year": 1965, + "country": "United Kingdom", + "cluster": 1, + "pop": 54350000, + "life_expect": 71.36, + "fertility": 2.52 + }, + { + "year": 1970, + "country": "United Kingdom", + "cluster": 1, + "pop": 55632000, + "life_expect": 72.01, + "fertility": 2.04 + }, + { + "year": 1975, + "country": "United Kingdom", + "cluster": 1, + "pop": 56215000, + "life_expect": 72.76, + "fertility": 1.72 + }, + { + "year": 1980, + "country": "United Kingdom", + "cluster": 1, + "pop": 56314000, + "life_expect": 74.04, + "fertility": 1.8 + }, + { + "year": 1985, + "country": "United Kingdom", + "cluster": 1, + "pop": 56620240, + "life_expect": 75.007, + "fertility": 1.81 + }, + { + "year": 1990, + "country": "United Kingdom", + "cluster": 1, + "pop": 57493307, + "life_expect": 76.42, + "fertility": 1.78 + }, + { + "year": 1995, + "country": "United Kingdom", + "cluster": 1, + "pop": 58426014, + "life_expect": 77.218, + "fertility": 1.7 + }, + { + "year": 2000, + "country": "United Kingdom", + "cluster": 1, + "pop": 59522468, + "life_expect": 78.471, + "fertility": 1.695 + }, + { + "year": 2005, + "country": "United Kingdom", + "cluster": 1, + "pop": 60441457, + "life_expect": 79.425, + "fertility": 1.815 + }, + { + "year": 1955, + "country": "United States", + "cluster": 3, + "pop": 165931000, + "life_expect": 69.49, + "fertility": 3.706 + }, + { + "year": 1960, + "country": "United States", + "cluster": 3, + "pop": 180671000, + "life_expect": 70.21, + "fertility": 3.314 + }, + { + "year": 1965, + "country": "United States", + "cluster": 3, + "pop": 194303000, + "life_expect": 70.76, + "fertility": 2.545 + }, + { + "year": 1970, + "country": "United States", + "cluster": 3, + "pop": 205052000, + "life_expect": 71.34, + "fertility": 2.016 + }, + { + "year": 1975, + "country": "United States", + "cluster": 3, + "pop": 215973000, + "life_expect": 73.38, + "fertility": 1.788 + }, + { + "year": 1980, + "country": "United States", + "cluster": 3, + "pop": 227726463, + "life_expect": 74.65, + "fertility": 1.825 + }, + { + "year": 1985, + "country": "United States", + "cluster": 3, + "pop": 238466283, + "life_expect": 75.02, + "fertility": 1.924 + }, + { + "year": 1990, + "country": "United States", + "cluster": 3, + "pop": 250131894, + "life_expect": 76.09, + "fertility": 2.025 + }, + { + "year": 1995, + "country": "United States", + "cluster": 3, + "pop": 266557091, + "life_expect": 76.81, + "fertility": 1.994 + }, + { + "year": 2000, + "country": "United States", + "cluster": 3, + "pop": 282338631, + "life_expect": 77.31, + "fertility": 2.038 + }, + { + "year": 2005, + "country": "United States", + "cluster": 3, + "pop": 295734134, + "life_expect": 78.242, + "fertility": 2.054 + }, + { + "year": 1955, + "country": "Venezuela", + "cluster": 3, + "pop": 6170497, + "life_expect": 57.907, + "fertility": 6.4585 + }, + { + "year": 1960, + "country": "Venezuela", + "cluster": 3, + "pop": 7556483, + "life_expect": 60.77, + "fertility": 6.657 + }, + { + "year": 1965, + "country": "Venezuela", + "cluster": 3, + "pop": 9067735, + "life_expect": 63.479, + "fertility": 5.9045 + }, + { + "year": 1970, + "country": "Venezuela", + "cluster": 3, + "pop": 10758017, + "life_expect": 65.712, + "fertility": 4.941 + }, + { + "year": 1975, + "country": "Venezuela", + "cluster": 3, + "pop": 12674987, + "life_expect": 67.456, + "fertility": 4.4685 + }, + { + "year": 1980, + "country": "Venezuela", + "cluster": 3, + "pop": 14767890, + "life_expect": 68.557, + "fertility": 3.957 + }, + { + "year": 1985, + "country": "Venezuela", + "cluster": 3, + "pop": 16997509, + "life_expect": 70.19, + "fertility": 3.6485 + }, + { + "year": 1990, + "country": "Venezuela", + "cluster": 3, + "pop": 19325222, + "life_expect": 71.15, + "fertility": 3.25 + }, + { + "year": 1995, + "country": "Venezuela", + "cluster": 3, + "pop": 21555902, + "life_expect": 72.146, + "fertility": 2.9415 + }, + { + "year": 2000, + "country": "Venezuela", + "cluster": 3, + "pop": 23542649, + "life_expect": 72.766, + "fertility": 2.723 + }, + { + "year": 2005, + "country": "Venezuela", + "cluster": 3, + "pop": 25375281, + "life_expect": 73.747, + "fertility": 2.547 + } +] diff --git a/data/gapminder/gapminder.vg.json b/src/data/gapminder/gapminder.vg.json similarity index 100% rename from data/gapminder/gapminder.vg.json rename to src/data/gapminder/gapminder.vg.json diff --git a/src/data/gapminder/gdp.txt b/src/data/gapminder/gdp.txt new file mode 100644 index 0000000..0b90fc6 --- /dev/null +++ b/src/data/gapminder/gdp.txt @@ -0,0 +1,174 @@ +country 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 +Afghanistan 603 603 603 603 603 603 603 603 603 603 604 604 604 604 604 604 604 604 604 604 604 607 609 611 613 615 617 619 621 623 625 627 630 632 634 636 638 640 643 645 647 649 651 654 656 658 660 663 665 667 669 672 674 676 678 681 683 685 688 690 692 695 697 699 702 704 707 709 711 714 716 719 721 724 726 729 731 734 736 739 741 744 746 749 751 754 756 759 761 764 767 769 772 774 777 780 782 785 788 790 793 796 798 801 804 807 809 812 815 818 820 823 826 829 833 837 841 845 849 853 857 862 868 874 879 885 890 896 902 908 913 919 925 931 937 943 949 955 961 967 973 979 985 991 997 1004 1010 1016 1022 1029 1035 1050 1069 1116 1122 1125 1155 1134 1176 1187 1206 1192 1188 1185 1182 1182 1168 1173 1187 1178 1174 1092 1046 1137 1170 1201 1231 1119 1179 1155 1158 1284 1402 1454 1429 1384 1486 1230 1113 1087 1028 1022 941 810 725 872 895 921 947 972 962 862 1053 1097 1067 1146 1173 1298 1311 1548 1637 1695 1893 1884 1877 1925 +Albania 667 667 668 668 668 668 668 668 668 668 668 668 669 669 669 669 669 669 669 669 669 671 672 674 676 677 679 680 682 683 685 686 688 689 691 693 694 696 697 699 701 702 704 705 707 709 710 712 713 715 717 718 720 722 723 725 727 728 730 731 733 735 736 738 740 742 743 745 747 748 750 761 773 784 796 808 820 832 844 857 870 882 896 909 922 936 950 964 979 993 1008 1022 1036 1051 1065 1080 1095 1110 1125 1141 1157 1172 1188 1203 1219 1236 1252 1269 1285 1302 1320 1342 1365 1389 1406 1424 1442 1460 1479 1498 1516 1535 1554 1572 1591 1610 1629 1647 1666 1685 1696 1707 1717 1728 1738 1748 1758 1768 1778 1788 1797 1807 1816 1825 1834 1842 1851 1859 1867 1875 1883 1965 1968 2048 2108 2222 2244 2387 2493 2594 2724 2744 2832 2926 3023 3129 3242 3359 3475 3587 3712 3849 3988 4174 4177 4178 4182 4188 4194 4201 4218 4227 4237 4248 4259 4267 4281 4294 4307 4325 4350 3081 2877 3172 3457 3941 4326 3909 4434 4912 5305 5730 5913 6274 6672 7075 7476 7977 8644 8994 9374 9640 9811 9961 10160 10620 +Algeria 716 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 743 751 759 768 776 784 793 802 810 819 828 837 846 855 865 874 884 893 903 913 923 933 943 953 964 974 985 996 1007 1017 1029 1040 1051 1063 1074 1086 1098 1110 1122 1134 1146 1159 1172 1184 1197 1210 1223 1237 1250 1264 1278 1292 1306 1320 1334 1349 1364 1378 1393 1409 1424 1440 1455 1471 1487 1503 1520 1536 1553 1570 1587 1604 1622 1640 1657 1676 1694 1712 1731 1750 1769 1788 1808 1827 1847 1867 1888 1908 1929 1950 1998 2046 2096 2132 2169 2206 2244 2281 2319 2358 2418 2477 2537 2596 2654 2713 2771 2828 2885 2942 2998 3054 3110 3165 3220 3274 3328 3381 3434 3486 3538 3589 3640 3690 3740 3789 3838 3886 3933 3980 3957 4070 4077 4307 4359 4712 5166 5273 6147 6470 5602 4481 5551 5693 5916 5478 5811 6319 6747 7227 6427 7556 7581 7812 8119 8400 8888 9730 10293 10166 10160 10477 10696 10947 11030 10722 10378 9888 10115 10113 9748 9693 9279 9006 9168 9375 9322 9646 9810 9885 10203 10634 11251 11575 12077 12088 12289 12314 12285 12494 12606 12779 12893 13179 13434 +Angola 618 620 623 626 628 631 634 637 640 642 645 648 651 654 657 660 662 665 668 671 674 677 680 683 686 689 692 695 698 701 704 708 711 714 717 720 723 726 730 733 736 739 743 746 749 752 756 759 762 766 769 773 776 779 783 786 790 793 797 800 804 807 811 814 818 822 825 829 832 836 840 844 847 851 855 858 862 866 870 874 878 881 885 889 893 897 901 905 909 913 917 921 925 929 933 937 941 946 950 954 958 962 967 971 975 979 984 988 992 997 1001 1006 1010 1014 1045 1076 1108 1141 1174 1209 1245 1284 1324 1366 1408 1452 1498 1544 1593 1642 1693 1746 1801 1857 1915 1974 2036 2099 2164 2232 2301 2373 2447 2523 2601 2682 2765 2851 2940 3031 3125 3202 3281 3359 3225 3437 3326 3592 3728 3687 3775 4212 4034 4176 4573 4840 5043 5253 5093 5158 5397 5614 5511 5831 5880 5454 5044 4956 4572 4458 4443 4110 3970 3996 4099 4117 4135 4319 4455 4365 4232 4056 3656 2663 2669 2859 3091 3246 3376 3389 3387 3417 3759 3819 4087 4667 5445 6453 7103 7039 7047 7094 7230 7488 7546 7615 +Antigua and Barbuda 757 757 757 757 757 757 757 758 758 758 758 758 758 758 758 758 759 759 759 759 759 764 769 775 780 785 790 796 801 806 812 817 823 828 834 840 845 851 857 863 868 874 880 886 892 898 904 910 917 923 929 935 942 948 954 961 967 974 980 987 994 1000 1007 1014 1021 1028 1035 1042 1049 1056 1063 1070 1077 1085 1092 1099 1107 1114 1122 1129 1137 1145 1152 1160 1168 1176 1184 1192 1200 1208 1216 1224 1233 1241 1249 1258 1266 1275 1283 1292 1301 1310 1319 1327 1336 1345 1355 1364 1373 1382 1391 1401 1410 1420 1455 1491 1528 1565 1604 1643 1684 1726 1770 1814 1860 1907 1955 2004 2054 2106 2159 2213 2269 2326 2384 2444 2505 2568 2633 2699 2767 2836 2907 2980 3055 3131 3210 3290 3373 3457 3544 3633 3723 3817 3912 4010 4110 4213 4319 4427 4537 4651 4767 4886 5008 5133 5262 5393 5528 5666 5807 6088 6378 6770 6888 6458 5885 6371 6691 7536 8169 8689 8827 9540 10388 11383 12600 14027 15441 16611 17154 17361 17226 17753 18400 17167 17830 18186 18483 18780 19319 18388 18676 19566 20395 21414 24016 26008 25736 22389 20567 19988 20577 20353 20797 21049 +Argentina 1507 1508 1508 1508 1508 1508 1509 1509 1509 1509 1510 1510 1510 1510 1511 1511 1511 1511 1511 1512 1512 1533 1555 1578 1600 1623 1646 1670 1693 1718 1742 1767 1792 1818 1844 1870 1897 1924 1951 1979 2008 2036 2065 2095 2125 2155 2186 2217 2249 2281 2313 2346 2380 2414 2448 2483 2519 2555 2591 2628 2666 2704 2742 2781 2821 2861 2902 2944 2986 3028 3072 3115 3160 3205 3251 3297 3266 3502 3218 3260 3097 3051 3748 4086 4249 4852 4721 4896 5531 5896 5228 4786 5569 5728 6427 6927 7449 5820 6139 7040 6002 6340 6034 6727 7255 8014 8047 7844 8250 8275 8495 8253 8541 8233 7004 6716 6363 5698 6598 6680 7002 6886 7142 7622 7892 7531 7600 7840 8020 8078 7439 6709 6293 6402 6715 6810 6689 6997 6839 6923 6859 7042 6943 6724 7309 6898 7289 7862 8041 7687 7540 7612 7019 7198 7305 7631 7652 7863 8157 7449 7868 8254 7950 7600 8227 8818 8709 8782 9003 9610 9951 10167 10209 10419 10809 10571 10408 10918 10406 10976 10982 10221 9765 10030 10102 9262 9810 9936 9620 8820 8539 9333 10130 10602 11108 10673 11150 11935 12268 11722 11504 10875 9574 10318 11135 12039 12913 13873 14646 14605 15765 16972 17101 17629 17519 17344 +Armenia 514 514 514 514 514 514 514 514 514 514 514 515 515 515 515 515 515 515 515 515 515 517 519 521 523 525 527 529 531 533 535 538 540 542 544 546 548 550 552 554 556 559 561 563 565 567 569 572 574 576 578 581 583 585 587 590 592 594 596 599 601 603 606 608 610 613 615 617 620 622 625 627 629 632 634 637 639 642 644 647 649 652 654 657 659 662 635 741 711 660 656 599 655 740 840 776 853 837 857 908 886 906 983 913 1008 890 849 814 887 919 979 902 973 1020 972 998 967 806 671 560 531 504 547 593 642 696 755 818 887 962 1002 1009 991 1025 1116 1273 1356 1464 1456 1511 1444 1413 1383 1353 1324 1296 1268 1405 1583 1724 1862 1834 1914 1958 2013 2141 2299 2299 2421 2345 2515 2611 2636 2536 2823 2945 3051 3151 3300 3313 3533 3589 3571 3832 3871 3810 3917 3937 3964 3877 3815 3783 3809 3862 3840 3805 3890 3872 3886 3889 3736 3329 1973 1842 1988 2169 2333 2438 2636 2740 2919 3214 3654 4182 4635 5297 6020 6877 7383 6358 6508 6812 7291 7527 7763 7763 +Australia 815 816 818 820 822 824 826 828 830 832 834 835 837 839 841 843 845 847 849 851 853 861 886 916 968 1015 1034 1066 1092 1153 1399 1446 1479 1485 1562 1890 1858 1948 1924 1795 2269 1936 1766 2048 2328 2396 2648 3064 3507 3466 3267 3879 4549 4981 4363 4141 5054 4461 3804 4912 4795 4723 4540 4525 4800 4579 4715 5155 5235 5132 5431 5473 5897 6347 6366 6871 6654 6703 7105 6986 7120 7403 6752 7439 7155 7353 7200 7704 7492 7898 7418 7766 6650 6173 6270 5807 6137 5697 6483 6398 6688 6398 6372 6796 7161 7141 7518 7701 7830 8311 8695 8509 8491 8579 8353 8128 8089 7936 7613 7793 7867 8100 8345 8549 8913 9129 9155 9101 8944 8628 7714 7129 7469 7921 8272 8689 9010 9381 9607 9537 10057 11069 12236 12555 11997 11270 10744 10856 11349 11788 12073 12229 12084 12228 12694 13082 13217 13191 13545 14076 14346 14126 14742 15357 16098 16601 16756 17570 18261 18949 19719 20176 20385 21185 21383 21708 22372 22373 22763 23697 23872 24308 23884 23584 24934 25875 26057 26969 27757 28556 28604 28122 27895 28732 29580 30359 31145 32013 33085 34346 35253 35452 36375 37035 38130 38840 39416 40643 41312 41170 41330 41706 42522 42840 43219 44056 +Austria 1848 1855 1863 1870 1878 1885 1893 1901 1908 1916 1924 1932 1939 1947 1955 1963 1971 1979 1987 1995 2003 2035 2068 2102 2136 2171 2206 2242 2278 2316 2353 2378 2402 2427 2452 2477 2503 2529 2555 2581 2608 2637 2666 2695 2725 2754 2785 2815 2846 2877 2909 2937 2966 2995 3024 3054 3084 3114 3145 3175 3206 3229 3252 3274 3297 3321 3344 3367 3391 3415 3439 3662 3666 3556 3691 3685 3744 3847 3950 3898 3928 4063 4062 4203 4288 4235 4345 4617 4580 4509 4725 4858 4925 4917 5162 5258 5296 5366 5625 5699 5704 5681 5856 5861 5905 6186 6374 6715 6693 6620 6665 6805 7076 6984 5786 5329 5269 5177 5105 4507 4804 5263 5699 5614 6230 6615 6688 6852 7131 7194 6957 6364 5677 5459 5482 5576 5733 6028 6786 7793 7518 7993 7534 7675 7175 3245 3675 4063 5177 6158 6919 7382 7386 7692 8458 9373 9998 10578 10919 11175 12027 12584 12800 13225 13915 14213 14898 15228 15814 16743 17865 18698 19747 20602 21381 21364 22385 23427 23364 24684 25259 25187 25637 26435 26522 27100 27707 28136 28951 30067 31053 31802 32113 32017 32660 33480 34237 34952 36157 37382 38548 38919 39370 39475 40292 40875 42036 43418 43952 42171 42861 44029 44216 44059 43906 44401 +Azerbaijan 775 775 775 775 775 776 776 776 776 776 777 777 777 777 777 778 778 778 778 778 779 783 787 792 796 800 805 809 814 818 823 827 832 837 841 846 851 855 860 865 870 874 879 884 889 894 899 904 909 914 919 924 929 934 939 945 950 955 960 966 971 976 982 987 993 998 1004 1009 1015 1021 1026 1032 1038 1043 1049 1055 1061 1067 1073 1078 1084 1090 1096 1103 1109 1115 1071 1251 1203 1117 1112 1018 1113 1261 1432 1324 1457 1432 1469 1557 1522 1559 1693 1575 1740 1539 1470 1411 1540 1598 1703 1573 1698 1782 1700 1749 1553 1363 834 718 721 660 767 884 1121 1402 1575 1642 1728 1749 1830 1848 1820 1890 2065 2363 2526 2737 2731 2844 2727 2678 2629 2582 2535 2489 2444 2717 3071 3357 3638 3595 3765 3864 3987 4254 4583 4597 4859 4723 5081 5285 5348 5155 5751 6012 6241 6458 6778 6819 7285 7416 7395 7952 8076 7994 8263 8351 8456 8315 8228 8205 8307 8469 8466 8435 8673 8679 8760 8814 8513 8323 6346 4806 3808 3320 3329 3488 3801 4047 4459 4863 5338 5891 6435 8052 10711 13243 14365 15394 15950 15754 15888 16593 16710 16986 +Bahamas 1445 1445 1445 1446 1446 1446 1446 1447 1447 1447 1447 1447 1448 1448 1448 1448 1449 1449 1449 1449 1449 1459 1469 1479 1489 1499 1509 1519 1530 1540 1550 1561 1571 1582 1593 1603 1614 1625 1636 1647 1658 1670 1681 1692 1704 1715 1727 1738 1750 1762 1774 1786 1798 1810 1822 1835 1847 1860 1872 1885 1897 1910 1923 1936 1949 1962 1976 1989 2003 2016 2030 2043 2057 2071 2085 2099 2113 2128 2142 2156 2171 2186 2200 2215 2230 2245 2261 2276 2291 2307 2322 2338 2354 2370 2386 2402 2418 2434 2451 2467 2484 2501 2518 2535 2552 2569 2586 2604 2622 2639 2657 2675 2693 2711 2809 2911 3016 3125 3238 3355 3476 3604 3738 3876 4020 4169 4323 4483 4649 4821 4999 5184 5375 5574 5780 5994 6215 6445 6683 6930 7186 7451 7726 8011 8307 8614 8932 9261 9603 9957 10324 10705 11100 11509 11933 12373 12829 13302 13792 14300 14826 15618 16405 17248 18160 19156 20007 21048 21975 23154 21210 21018 19856 20957 17127 14320 14767 15790 17660 21812 22747 21634 22519 23560 23646 24154 24343 24818 24959 25109 24281 22841 21555 21222 21516 22119 22758 22971 23799 25193 25858 26078 26260 25387 25073 25397 25530 25412 24373 22950 22915 22689 22841 22518 22439 22818 +Bahrain 1235 1240 1246 1251 1256 1262 1267 1273 1278 1284 1289 1295 1300 1306 1312 1317 1323 1329 1334 1340 1346 1352 1358 1363 1369 1375 1381 1387 1393 1399 1405 1411 1417 1423 1430 1436 1442 1448 1454 1461 1467 1473 1480 1486 1492 1499 1505 1512 1518 1525 1531 1549 1567 1584 1602 1621 1639 1658 1677 1696 1715 1735 1755 1775 1795 1815 1836 1857 1878 1900 1921 1943 1965 1988 2010 2033 2057 2080 2104 2128 2152 2177 2201 2226 2252 2278 2303 2330 2356 2383 2410 2438 2466 2494 2522 2551 2580 2610 2639 2669 2700 2701 2703 2705 2706 2708 2710 2711 2713 2715 2717 2718 2720 2722 2723 2725 2727 2728 2730 2732 2733 2748 2763 2778 2793 2808 2823 2838 2853 2868 2883 2898 2913 2927 2942 3272 3637 4044 4496 4999 5557 6178 6868 7635 8487 9434 10487 11656 12956 14401 16007 16689 17391 18107 18839 19556 20266 20938 21541 22078 22540 22941 23418 24022 24751 25662 26651 27726 28802 29943 31232 31102 33824 35688 36456 33509 41062 40589 36597 40292 44996 42034 38841 38395 41099 32131 29586 28401 31346 32515 35398 38315 39854 43894 42712 43244 43781 43798 44399 44619 45063 44169 43654 43914 44206 44031 43358 43251 42507 40825 40553 40083 40732 42444 43963 44138 +Bangladesh 876 876 876 876 876 876 876 876 876 875 875 875 875 875 875 875 875 875 875 875 874 875 875 875 875 875 875 875 875 876 876 876 876 876 876 876 876 877 877 877 877 877 877 877 877 878 878 878 878 878 878 878 878 879 879 879 879 879 879 879 880 880 880 880 880 880 880 881 881 881 881 883 885 887 890 892 894 896 898 901 903 905 907 909 912 939 907 947 954 927 968 878 947 969 982 957 885 1045 1045 962 995 1009 1087 1096 1094 1068 1092 1020 1028 1163 1158 1148 1145 1118 1179 1149 1182 1159 1010 1149 1057 1133 1170 1122 1167 1171 1197 1187 1188 1227 1225 1202 1200 1186 1182 1156 1186 1152 1140 1151 1174 1183 1165 1199 1174 1143 1072 1066 1066 1080 1027 1031 1046 1045 1046 972 1056 1017 979 1011 1048 1087 1062 1147 1138 1177 1169 1122 1202 1195 1226 1142 986 971 1069 1035 1059 1038 1082 1101 1079 1085 1071 1097 1131 1142 1169 1196 1208 1216 1274 1287 1327 1360 1383 1424 1457 1492 1538 1579 1632 1685 1721 1774 1840 1934 2038 2158 2265 2355 2459 2589 2725 2853 2991 3161 +Barbados 913 914 914 914 914 914 914 914 915 915 915 915 915 915 915 916 916 916 916 916 916 922 929 935 941 948 954 960 967 973 980 987 993 1000 1007 1014 1020 1027 1034 1041 1048 1055 1063 1070 1077 1084 1092 1099 1106 1114 1121 1129 1137 1144 1152 1160 1168 1175 1183 1191 1199 1208 1216 1224 1232 1241 1249 1257 1266 1274 1283 1292 1300 1309 1318 1327 1336 1345 1354 1363 1372 1382 1391 1400 1410 1419 1429 1439 1448 1458 1468 1478 1488 1498 1508 1518 1529 1539 1549 1560 1570 1581 1592 1602 1613 1624 1635 1646 1657 1668 1680 1691 1702 1714 1740 1766 1792 1819 1847 1875 1903 1932 1961 1991 2022 2053 2084 2116 2148 2181 2215 2248 2283 2318 2353 2389 2425 2462 2500 2538 2577 2616 2656 2696 2737 2779 2821 2864 2907 2952 2996 3149 3310 3478 3656 3842 4038 4243 4459 4687 4925 5289 5747 5432 5681 6309 6544 7223 7705 8261 9013 9109 9148 9277 10465 10203 10605 10981 11501 12364 12885 12557 11845 11793 12097 12115 12619 12828 13162 13524 12992 12573 11911 11995 12437 12587 12783 13564 14081 14400 14677 14244 14275 14485 14620 15128 15913 16099 16075 15334 15297 15336 15261 12867 12829 12984 +Belarus 608 608 608 609 609 609 610 610 610 611 611 611 612 612 612 613 613 613 614 614 614 618 622 625 629 633 636 640 644 647 651 655 659 663 666 670 674 678 682 686 690 694 698 702 706 710 715 719 723 727 731 736 740 744 749 753 757 762 766 771 775 780 784 789 793 798 803 807 812 817 822 826 831 836 841 846 851 856 861 866 871 876 881 886 891 896 861 1007 968 899 895 820 897 1016 1154 1068 1175 1155 1185 1257 1229 1259 1368 1273 1407 1245 1189 1142 1246 1293 1380 1274 1376 1444 1379 1418 1260 1106 677 583 585 535 621 714 904 1129 1267 1319 1386 1400 1462 1474 1451 1504 1640 1874 2000 2164 2156 2241 2146 2104 2063 2022 1982 1943 1905 2115 2387 2605 2819 2781 2908 2981 3070 3271 3518 3524 3719 3610 3878 4026 4066 3913 4357 4547 4712 4866 5099 5120 5461 5549 5523 5929 6108 6132 6429 6591 6769 6752 6776 6855 7039 7279 7381 7459 7780 7896 8084 8251 8084 7983 7201 6639 5869 5275 5441 6087 6630 6879 7300 7704 8144 8778 9851 10851 12010 13103 14488 14549 15703 16603 16907 17085 17349 17415 +Belgium 2412 2413 2413 2413 2414 2414 2414 2415 2415 2416 2416 2416 2417 2417 2417 2418 2418 2418 2419 2419 2420 2426 2433 2440 2447 2454 2460 2467 2474 2481 2488 2523 2559 2596 2633 2670 2708 2747 2786 2826 2866 2907 2948 2990 3033 3076 3120 3246 3231 3300 3406 3478 3549 3621 3822 3824 4009 4087 4088 4062 4240 4273 4355 4449 4566 4533 4635 4626 4761 4935 4990 4974 5238 5233 5364 5310 5337 5356 5465 5471 5697 5707 5832 5849 5834 5838 5868 6050 6046 6293 6387 6326 6415 6442 6467 6549 6625 6692 6746 6825 6967 6946 6985 7049 7141 7258 7326 7355 7357 7431 7606 7736 7816 7811 5700 4652 5187 4303 4005 4917 7395 7737 8205 8673 9000 8956 9015 8924 9468 9647 9737 9329 8824 8670 8413 8743 8965 9335 9103 8687 7097 6030 6157 4965 5014 5328 8351 9365 9793 10035 10309 10790 10688 11038 11390 11728 12053 12252 11919 12137 12608 13122 13689 14163 14995 15360 15721 16225 16816 17868 18903 19548 20504 21700 22550 22196 23418 23546 24202 24756 25847 25517 25873 25879 26527 26792 27189 27813 29092 29980 30798 31247 31596 31170 32077 32774 33217 34377 34992 36209 37404 37620 38036 38214 39356 39881 40661 41575 41641 40225 40764 40946 40687 40607 40885 41240 +Belize 579 579 579 579 579 579 579 579 579 579 580 580 580 580 580 580 580 580 580 580 580 584 588 592 596 600 604 608 613 617 621 625 629 634 638 642 646 651 655 660 664 669 673 678 682 687 692 696 701 706 710 715 720 725 730 735 740 745 750 755 760 765 770 775 781 786 791 797 802 807 813 818 824 829 835 841 846 852 858 864 869 875 881 887 893 899 905 911 918 924 930 936 943 949 955 962 968 975 981 988 995 1002 1008 1015 1022 1029 1036 1043 1050 1057 1064 1071 1079 1086 1102 1119 1136 1153 1170 1188 1205 1223 1241 1259 1278 1297 1316 1335 1355 1375 1395 1415 1436 1457 1478 1500 1522 1544 1567 1590 1613 1637 1661 1685 1710 1734 1760 1786 1812 1838 1865 1879 1892 1906 1920 1934 1949 1963 1977 1992 2006 2032 2056 2082 2114 2153 2196 2248 2362 2435 2509 2570 2797 2911 3259 3315 3244 3370 3539 3701 4148 4091 3973 3809 3763 3705 3777 4083 4344 4820 5166 5594 6154 6424 6310 6209 6137 6177 6220 6568 7215 7373 7548 8042 8203 8202 8360 8240 8293 8145 8209 8178 8287 8215 8418 8501 +Benin 597 597 597 597 597 597 597 597 597 597 598 598 598 598 598 598 598 598 598 598 598 601 604 607 610 613 616 619 622 625 628 631 634 637 640 643 646 650 653 656 659 662 665 669 672 675 678 682 685 688 692 695 698 702 705 709 712 715 719 722 726 729 733 736 740 744 747 751 754 758 762 765 769 773 777 780 784 788 792 796 799 803 807 811 815 819 823 827 831 835 839 843 847 851 855 859 864 868 872 876 880 885 889 893 898 902 906 911 915 920 924 928 933 937 944 951 957 964 971 978 985 993 1001 1009 1017 1025 1033 1041 1050 1058 1066 1075 1083 1092 1101 1109 1118 1127 1136 1145 1154 1163 1172 1182 1191 1200 1210 1219 1229 1239 1248 1226 1203 1148 1159 1136 1114 1092 1109 1127 1137 1149 1085 1110 1159 1191 1206 1189 1204 1210 1205 1180 1251 1248 1124 1141 1158 1191 1195 1255 1338 1377 1484 1380 1447 1510 1497 1429 1427 1352 1362 1370 1359 1386 1364 1398 1414 1451 1466 1500 1525 1570 1586 1594 1590 1584 1592 1616 1646 1641 1637 1643 1685 1733 1779 1830 +Bhutan 629 629 630 630 630 630 630 630 630 630 630 630 631 631 631 631 631 631 631 631 631 633 634 635 636 638 639 640 641 643 644 645 646 648 649 650 651 653 654 655 657 658 659 661 662 663 664 666 667 668 670 671 672 674 675 676 678 679 680 682 683 684 686 687 688 690 691 692 694 695 697 698 699 701 702 703 705 706 708 709 710 712 713 715 716 717 719 720 722 723 724 726 727 729 730 732 733 735 736 737 739 740 742 743 745 746 748 749 751 752 754 755 757 758 759 761 762 764 765 767 769 771 774 776 779 782 784 787 790 792 795 798 800 803 806 808 811 814 816 819 822 825 827 830 833 835 838 841 844 846 849 859 869 879 889 899 910 920 931 941 952 963 974 985 997 1008 1020 1031 1043 1055 1067 1059 1034 1011 1026 957 1008 1051 1090 1108 1131 1228 1227 1297 1345 1385 1534 1948 2004 2111 2332 2326 2463 2557 2723 2930 3072 3184 3292 3459 3596 3780 4062 4247 4373 4565 4767 5507 5663 5934 6516 6909 7138 7167 7500 7983 +Bolivia 854 854 854 854 854 854 854 854 855 855 855 855 855 855 855 856 856 856 856 856 856 864 873 881 889 898 906 915 924 932 941 950 959 968 977 987 996 1006 1015 1025 1035 1044 1054 1064 1075 1085 1095 1106 1116 1127 1137 1148 1159 1170 1181 1193 1204 1215 1227 1239 1250 1262 1274 1286 1299 1311 1323 1336 1349 1362 1374 1388 1401 1414 1428 1441 1455 1469 1483 1497 1511 1525 1540 1554 1569 1584 1599 1614 1630 1645 1661 1677 1693 1709 1725 1741 1758 1775 1792 1809 1826 1843 1861 1878 1896 1914 1933 1951 1970 1988 2007 2026 2046 2065 2085 2104 2124 2145 2165 2186 2206 2228 2251 2273 2296 2319 2342 2365 2389 2412 2436 2460 2485 2510 2534 2560 2585 2611 2636 2662 2689 2715 2742 2769 2797 2824 2843 2861 2891 2919 3216 3374 3405 3020 3019 3113 2866 2713 2717 2650 2703 2699 2787 2899 2971 3046 3191 3312 3510 3581 3678 3727 3823 3988 4093 4260 4484 4560 4602 4496 4363 4322 4064 3819 3795 3706 3525 3551 3613 3638 3740 3845 3817 3887 3975 4068 4152 4264 4384 4312 4330 4315 4335 4367 4464 4578 4716 4850 5066 5152 5279 5462 5650 5934 6153 6295 +Bosnia and Herzegovina 669 669 669 669 669 669 669 669 669 669 670 670 670 670 670 670 670 670 670 670 671 674 677 681 684 688 691 695 698 702 706 709 713 716 720 724 727 731 735 739 742 746 750 754 758 762 765 769 773 777 781 782 782 783 783 783 784 784 785 785 786 786 787 787 787 788 788 789 789 790 790 801 812 823 835 846 858 870 881 894 906 918 931 944 957 970 983 997 1011 1025 1039 1042 1045 1048 1052 1055 1058 1062 1065 1068 1072 1085 1098 1111 1125 1139 1152 1166 1181 1195 1209 1205 1200 1196 1187 1178 1169 1160 1152 1143 1135 1136 1142 1174 1230 1261 1318 1266 1346 1384 1326 1256 1113 1122 1137 1094 1207 1199 1265 1304 1280 1256 1233 1210 1188 1166 1144 1123 1308 1404 1284 1304 1174 1318 1360 1412 1354 1550 1583 1742 1815 1858 1853 2004 2152 2164 2234 2227 2229 2431 2500 2732 2768 2803 3100 3036 3064 3217 3325 3480 3582 3579 3538 3504 3528 3494 3572 3471 3363 3263 2974 2613 1970 1466 1574 1976 3771 4996 5609 5965 6158 6354 6660 6929 7369 7751 8242 8820 9316 9063 9145 9248 9149 9387 9516 9833 +Botswana 397 397 397 397 397 398 398 398 398 398 398 398 398 398 398 398 398 398 398 398 398 400 402 404 406 408 410 412 414 416 418 420 422 424 426 428 430 432 435 437 439 441 443 445 447 449 452 454 456 458 460 463 465 467 469 472 474 476 479 481 483 486 488 490 493 495 497 500 502 505 507 510 512 515 517 520 522 525 527 530 532 535 537 540 543 545 548 550 553 556 559 561 564 567 569 572 575 578 581 583 586 589 592 595 598 600 603 606 609 612 615 618 621 624 629 633 638 643 648 653 658 663 668 674 679 684 690 696 701 707 712 718 724 730 735 741 747 753 759 765 771 778 784 790 796 803 809 815 822 828 835 851 862 877 893 907 920 933 944 960 970 989 1002 1019 1038 1055 1142 1240 1347 1455 1567 1810 2317 2722 3152 2969 3354 3298 3736 3920 4292 4520 4679 5224 5608 5822 6065 6393 7173 7856 8075 8430 8436 8368 8449 8823 9121 9637 9507 10228 10250 10115 10577 10923 11085 11460 12241 13170 13858 12680 13642 14341 14905 16155 16725 17196 +Brazil 1109 1109 1109 1109 1109 1110 1110 1110 1110 1110 1110 1111 1111 1111 1111 1111 1111 1112 1112 1112 1112 1114 1117 1119 1122 1124 1126 1129 1131 1134 1136 1138 1141 1143 1146 1148 1151 1153 1155 1158 1160 1163 1165 1168 1170 1173 1175 1178 1180 1183 1185 1267 1233 1157 1118 1129 1170 1252 1333 1323 1358 1346 1282 1311 1330 1429 1481 1604 1604 1605 1488 1488 1540 1494 1518 1541 1483 1442 1512 1525 1455 1467 1503 1462 1561 1450 1497 1398 1345 1364 1492 1586 1375 1170 1171 1388 1260 1241 1271 1248 1201 1354 1315 1318 1301 1322 1456 1445 1369 1475 1487 1533 1592 1598 1531 1498 1471 1571 1492 1569 1722 1702 1785 1879 1853 1797 1834 1977 2143 2099 1998 1870 1896 2012 2133 2137 2330 2370 2407 2397 2308 2351 2214 2337 2451 2457 2662 2643 2811 2932 3030 3074 3191 3228 3366 3543 3521 3668 3935 4184 4433 4663 4823 4697 4707 4671 4836 4888 5215 5550 5930 6463 7082 7904 8362 8595 9274 9512 9759 10187 10922 10224 10094 9590 9913 10495 11079 11267 11062 11226 10331 10315 10104 10413 10802 11108 11178 11382 11250 11139 11461 11446 11638 11627 12135 12373 12732 13364 13906 13749 14660 15101 15234 15518 15412 15441 +Brunei 1512 1512 1512 1513 1513 1513 1513 1513 1514 1514 1514 1514 1515 1515 1515 1515 1515 1516 1516 1516 1516 1522 1527 1532 1537 1542 1548 1553 1558 1563 1569 1574 1579 1585 1590 1596 1601 1606 1612 1617 1623 1628 1634 1639 1645 1651 1656 1662 1667 1673 1679 1684 1690 1696 1702 1707 1713 1719 1725 1731 1737 1743 1748 1754 1760 1766 1772 1778 1784 1790 1797 1803 1809 1815 1821 1827 1833 1840 1846 1852 1859 1865 1871 1878 1884 1890 1897 1903 1910 1916 1923 1929 1936 1942 1949 1955 1962 1969 1975 1982 1989 1996 2002 2009 2016 2023 2030 2037 2044 2051 2057 2064 2071 2078 2086 2093 2100 2107 2114 2121 2128 2136 2143 2150 2158 2165 2172 2180 2187 2195 2557 2979 3471 4044 4711 5489 6395 7451 8680 10113 11782 13727 15992 18631 21706 25288 29461 34323 39986 46584 54271 55126 55994 56876 57771 58680 59604 60541 61493 62460 63442 64439 65451 66479 67522 68582 69658 70751 71861 72988 74132 78230 82612 86923 93231 89842 103744 110729 113988 134864 121356 94314 95207 93016 90992 87154 82425 81711 80275 77184 77076 77275 78688 76750 77038 78406 78661 75654 73498 74041 74475 74868 76130 76737 75596 74441 76287 75054 72351 69924 70636 71991 71664 69474 72219 73003 +Bulgaria 1089 1089 1089 1089 1090 1090 1090 1090 1090 1090 1091 1091 1091 1091 1091 1091 1092 1092 1092 1092 1092 1098 1103 1108 1114 1119 1125 1131 1136 1142 1147 1153 1159 1164 1170 1176 1182 1188 1194 1199 1205 1211 1217 1223 1229 1235 1242 1248 1254 1260 1266 1272 1279 1285 1291 1298 1304 1311 1317 1324 1330 1337 1343 1350 1357 1363 1370 1377 1384 1391 1397 1419 1440 1462 1484 1506 1529 1552 1576 1600 1624 1648 1673 1699 1724 1751 1777 1804 1831 1859 1887 1902 1917 1933 1948 1964 1980 1995 2011 2028 2044 2080 2117 2155 2193 2232 2271 2312 2353 2394 2437 2480 2523 2567 2448 2334 2226 2123 2024 1930 1840 1755 1673 1595 1521 1544 1957 2100 2040 1975 2149 2433 2417 2425 2190 2068 2498 2621 2668 2681 2590 2621 2475 2531 2320 1794 1956 2132 2323 2533 2761 3325 3165 3486 3385 3590 3557 3895 4192 4485 4866 5133 5506 5711 6110 6432 6891 7216 7296 7592 7971 8186 8534 8824 9040 9736 9987 9844 10048 10425 10088 10325 10631 10408 10730 10388 10643 10646 10567 10367 9333 8630 8089 8033 8207 8479 8659 8617 8976 8516 9075 9596 10220 10829 11602 12359 13228 14430 15368 14692 14886 15278 15443 15695 16048 16371 +Burkina Faso 480 480 480 480 480 480 480 480 480 480 480 480 480 481 481 481 481 481 481 481 481 482 482 483 483 484 484 485 485 486 486 487 488 488 489 489 490 490 491 491 492 493 493 494 494 495 495 496 496 497 498 498 499 499 500 500 501 501 502 503 503 504 504 505 505 506 507 507 508 508 509 509 510 511 511 512 512 513 513 514 515 515 516 516 517 517 518 519 519 520 520 521 522 522 523 523 524 524 525 526 526 527 527 528 529 529 530 530 531 532 532 533 533 534 535 535 536 536 537 538 538 538 537 537 537 536 536 535 535 534 534 533 533 533 532 532 531 531 530 530 529 529 528 528 527 527 526 526 525 525 524 537 550 563 576 590 605 619 634 649 659 681 717 702 711 731 726 781 794 799 790 810 830 774 747 703 683 714 778 766 759 771 767 738 729 801 900 857 898 858 821 872 851 857 845 869 938 970 1012 1057 1046 1084 1099 1150 1167 1232 1271 1304 1358 1358 1431 1481 1532 1588 1606 1654 +Burundi 418 418 419 419 420 420 420 421 421 422 422 422 423 423 423 424 424 425 425 425 426 426 427 427 427 428 428 429 429 429 430 430 431 431 431 432 432 433 433 433 434 434 435 435 435 436 436 437 437 437 438 438 439 439 439 440 440 441 441 441 442 442 443 443 444 444 444 445 445 446 446 446 447 447 448 448 448 449 449 450 450 451 451 451 452 452 453 453 453 454 454 455 455 456 456 456 457 457 458 458 459 459 459 460 460 461 461 462 462 462 463 463 464 464 465 465 465 466 466 467 467 468 470 471 472 473 475 476 477 478 480 481 482 483 485 486 487 488 490 491 492 493 495 496 497 498 500 501 502 503 505 525 533 546 567 576 588 601 608 633 632 531 567 582 603 610 623 665 645 627 782 827 753 806 788 780 826 909 879 856 887 945 922 929 908 994 1014 1032 1044 1037 1051 1075 1062 975 921 835 758 737 763 744 723 720 731 700 709 692 704 713 723 723 725 731 737 747 758 777 +Cambodia 903 904 904 904 904 904 904 904 905 905 905 905 905 905 905 905 906 906 906 906 906 908 909 910 912 913 914 916 917 918 920 921 922 924 925 926 928 929 931 932 933 935 936 937 939 940 942 943 944 946 947 949 950 951 953 954 956 957 958 960 961 963 964 966 967 968 970 971 973 974 976 977 979 980 981 983 984 986 987 989 990 992 993 995 996 997 999 1000 1002 1003 1005 1006 1008 1009 1011 1012 1014 1015 1017 1018 1020 1021 1023 1024 1026 1027 1029 1030 1032 1033 1035 1037 1038 1040 1041 1043 1044 1046 1047 1049 1050 1052 1054 1056 1058 1059 1061 1063 1065 1066 1068 1070 1072 1074 1075 1077 1079 1081 1082 1084 1086 1088 1089 1091 1093 1095 1097 1098 1100 1102 1104 1114 1156 1140 1242 1187 1311 1363 1394 1491 1539 1484 1562 1634 1548 1579 1608 1647 1678 1660 1643 1539 1440 1161 1101 1096 1116 976 1003 891 839 822 792 791 790 787 792 920 993 1025 996 1055 1096 1004 1058 1091 1117 1148 1176 1285 1368 1448 1516 1617 1755 1957 2136 2321 2442 2409 2513 2646 2790 2942 3093 3267 +Cameroon 626 626 626 626 626 627 627 627 627 627 627 627 627 627 627 627 628 628 628 628 628 631 634 637 640 643 646 650 653 656 659 662 665 669 672 675 678 682 685 688 692 695 698 702 705 708 712 715 719 722 726 729 733 736 740 744 747 751 754 758 762 765 769 773 777 780 784 788 792 795 799 803 807 811 815 819 823 827 831 835 839 843 847 851 855 859 864 868 872 876 880 885 889 893 897 902 906 911 915 919 924 928 933 937 942 946 951 956 960 965 970 974 979 984 993 1002 1011 1021 1030 1040 1049 1060 1072 1083 1095 1107 1119 1131 1143 1155 1167 1180 1192 1205 1218 1231 1244 1257 1270 1284 1298 1311 1325 1339 1354 1368 1382 1397 1412 1427 1442 1479 1517 1554 1592 1632 1671 1710 1750 1790 1813 1808 1836 1874 1910 1917 1973 1992 2084 2146 2169 2190 2238 2224 2274 2338 2324 2386 2444 2505 2671 3034 3188 3319 3476 3675 3821 3526 3271 2895 2768 2586 2434 2177 2160 2188 2233 2289 2338 2369 2404 2447 2480 2514 2540 2532 2547 2564 2571 2554 2571 2610 2661 2739 2829 2897 +Canada 1314 1322 1330 1339 1347 1356 1365 1373 1382 1391 1400 1409 1417 1427 1436 1445 1454 1463 1472 1482 1491 1507 1522 1538 1553 1569 1585 1602 1618 1635 1651 1677 1702 1728 1755 1781 1809 1836 1864 1893 1922 1948 1975 2002 2029 2057 2085 2114 2143 2172 2202 2222 2242 2261 2282 2302 2322 2343 2364 2385 2406 2444 2483 2522 2562 2603 2644 2686 2728 2771 2815 2915 2834 3061 3081 2966 2728 2873 2723 2936 3021 3394 3510 3479 3714 3451 3456 3530 3746 3730 3963 4014 3951 3890 4035 3953 3816 4189 4309 4664 4858 5168 5560 5565 5476 5948 6423 6472 5967 6432 6794 7037 7309 7423 6717 7061 7747 8002 7399 6695 6430 5587 6310 6611 6610 7211 7468 8046 8581 8402 7976 6636 6083 5582 6111 6538 6824 7399 7517 7882 8871 9996 11617 11993 12287 11773 11437 11694 11654 11650 12022 12419 12911 13158 12687 13513 14253 14177 14056 14289 14414 14545 15276 15752 16464 17243 18022 18240 18900 19614 19842 20688 21532 22797 23405 23593 24563 25095 25853 26665 26678 27171 26031 26525 27781 29016 29482 30288 31356 31550 31163 30090 29977 30424 31505 32101 32290 33310 34389 35810 37314 37563 38270 38621 39436 40284 41012 41432 41468 39884 40773 41567 41865 42213 42817 43294 +Cape Verde 529 529 529 529 530 530 530 530 530 530 530 530 530 530 530 530 530 531 531 531 531 533 535 538 540 542 545 547 549 552 554 556 559 561 563 566 568 571 573 575 578 580 583 585 588 590 593 595 598 601 603 606 608 611 613 616 619 621 624 627 629 632 635 637 640 643 646 648 651 654 657 659 662 665 668 671 674 677 679 682 685 688 691 694 697 700 703 706 709 712 715 718 721 724 727 730 733 737 740 743 746 749 752 756 759 762 765 769 772 775 779 782 785 789 792 795 799 802 805 809 812 812 811 810 809 808 808 807 806 805 804 803 802 801 800 799 798 797 795 794 793 792 790 789 788 786 785 784 782 781 779 784 790 795 779 778 782 751 740 797 826 849 867 882 895 905 915 923 930 936 942 856 805 788 757 771 759 749 814 886 1189 1269 1276 1366 1385 1469 1474 1538 1546 1589 1609 1597 1728 1827 2120 2361 2568 2794 3082 3363 3772 3784 3910 4006 4352 4604 4937 5666 6031 5941 6005 6206 6224 6232 6343 6514 +Chad 418 418 418 418 418 418 418 419 419 419 419 419 419 419 419 419 419 419 419 419 419 421 423 425 428 430 432 434 436 438 440 442 444 447 449 451 453 455 457 460 462 464 466 469 471 473 475 478 480 482 485 487 489 492 494 497 499 501 504 506 509 511 514 516 519 521 524 526 529 531 534 536 539 542 544 547 550 552 555 558 560 563 566 568 571 574 577 579 582 585 588 591 594 597 599 602 605 608 611 614 617 620 623 626 629 632 635 638 641 644 648 651 654 657 668 679 690 701 713 725 737 749 762 775 789 802 816 830 844 859 873 888 903 919 935 951 967 983 1000 1017 1035 1052 1070 1089 1107 1126 1145 1165 1185 1205 1225 1254 1282 1310 1339 1369 1398 1428 1459 1488 1475 1470 1522 1474 1409 1387 1334 1315 1281 1341 1338 1334 1216 1131 1258 1441 1387 1253 1217 946 891 880 884 983 994 1202 1122 1058 1185 1221 1111 1169 1223 999 1066 1044 1032 1054 1090 1045 998 1073 1120 1237 1592 1803 1755 1755 1753 1772 1953 1896 2003 2055 2141 2191 +Chile 1026 1026 1027 1027 1027 1027 1027 1027 1028 1028 1028 1028 1028 1028 1028 1029 1029 1029 1029 1029 1029 984 990 986 962 991 998 1003 996 1002 986 985 998 994 1016 1039 1031 1056 1060 1062 1117 1119 1132 1155 1159 1181 1208 1222 1259 1334 1389 1413 1440 1395 1421 1472 1475 1508 1559 1594 1632 1617 1596 1640 1710 1751 1771 1685 1752 1908 1929 1904 2017 2119 2000 2134 2080 1983 2073 2353 2605 2658 2838 2815 2800 2678 2753 2905 2753 2786 2948 3147 3044 3155 3064 3238 3216 3106 3441 3421 3295 3338 3443 3213 3437 3395 3620 3769 4123 4098 4512 4333 4448 4471 3729 3562 4309 4344 4340 3673 4092 3495 3571 4237 4488 4613 4163 4023 4849 5019 4145 3210 2666 3227 3826 3973 4091 4564 4529 4535 4625 4484 4600 4638 4633 4935 5254 4598 5263 5056 5196 5279 5505 5811 5519 5613 5584 6016 6194 5699 6020 6155 6293 6538 6537 6451 7026 7114 7231 7364 7382 7906 7674 7123 7070 6058 6168 6675 7122 7603 8088 8454 7182 6867 7160 7193 7483 7851 8288 9016 9193 9747 10744 11287 11725 12759 13498 14186 14450 14159 14614 14925 15075 15499 16260 16985 17554 18278 18698 18329 19204 20141 21050 21746 21967 22465 +China 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 985 986 986 986 986 986 986 986 986 986 986 986 986 1031 1033 999 973 980 980 986 995 992 985 975 1017 1011 991 984 1013 999 1029 1007 1023 1044 1074 1095 1098 1066 1087 1087 1113 1101 1099 1084 1090 1057 1000 1026 1061 1001 1014 1031 1015 1011 1003 1005 977 974 959 940 945 955 918 933 916 921 911 940 895 904 876 882 894 893 922 916 936 856 898 917 945 956 991 983 938 936 946 957 968 979 990 1001 1012 1017 1021 1026 1031 1035 1040 1045 1050 1054 1055 1048 1064 1047 942 1004 1052 1012 973 905 841 782 727 676 629 585 570 556 542 529 535 582 631 692 694 706 736 780 889 958 889 558 567 635 713 772 826 719 669 732 848 876 843 894 888 920 891 904 1016 1059 1073 1099 1175 1229 1456 1557 1604 1652 1597 1474 1516 1634 1845 2078 2323 2551 2775 3000 3205 3419 3678 3955 4285 4685 5127 5675 6360 7225 7880 8565 9430 10274 11017 11805 12609 13334 +Colombia 963 963 963 963 963 963 964 964 964 964 964 964 964 965 965 965 965 965 965 965 966 968 971 973 976 978 981 983 986 988 991 993 996 999 1001 1004 1006 1009 1012 1014 1017 1019 1022 1025 1027 1030 1033 1035 1038 1041 1043 1046 1049 1051 1054 1057 1060 1062 1065 1068 1071 1073 1076 1079 1082 1085 1087 1090 1093 1096 1099 1101 1104 1107 1110 1113 1116 1119 1122 1124 1127 1130 1133 1136 1139 1142 1145 1148 1151 1154 1157 1160 1163 1166 1169 1172 1175 1178 1181 1184 1187 1190 1193 1196 1199 1202 1212 1268 1313 1356 1405 1440 1476 1504 1516 1540 1573 1591 1631 1717 1782 1826 1890 1948 1995 2038 2166 2290 2383 2393 2329 2251 2359 2449 2559 2577 2668 2663 2789 2871 2842 2799 2717 2643 2738 2780 2960 2983 2975 3143 3177 3151 3238 3287 3404 3418 3459 3452 3396 3519 3535 3592 3655 3650 3749 3777 3868 3893 4021 4162 4325 4484 4731 4952 5161 5208 5382 5544 5953 6200 6373 6441 6405 6421 6518 6613 6887 7158 7371 7519 7752 7776 8014 8052 8366 8643 8664 8804 8701 8194 8414 8415 8488 8683 9005 9286 9759 10278 10489 10511 10777 11332 11636 12054 12447 12761 +Comoros 696 697 697 698 699 700 700 701 702 702 703 704 705 705 706 707 707 708 709 710 710 711 712 712 713 714 715 715 716 717 718 718 719 720 720 721 722 723 723 724 725 726 726 727 728 729 729 730 731 732 732 733 734 735 735 736 737 738 738 739 740 741 741 742 743 744 744 745 746 747 747 748 749 750 750 751 752 753 753 754 755 756 756 757 758 759 760 760 761 762 763 763 764 765 766 767 767 768 769 770 770 771 772 773 774 774 775 776 777 778 778 779 780 781 781 782 783 784 785 785 786 787 788 788 789 790 791 791 792 793 794 794 795 796 796 797 798 799 799 800 801 801 802 803 803 804 805 805 806 807 807 837 846 862 892 901 915 929 935 967 1026 1013 1079 1278 1342 1308 1416 1530 1494 1425 1425 1453 1452 1522 1525 1575 1523 1522 1504 1583 1636 1640 1686 1712 1730 1719 1703 1687 1689 1621 1595 1473 1561 1569 1451 1467 1413 1434 1416 1407 1391 1517 1513 1505 1495 1498 1499 1472 1440 1431 1426 1427 1435 1450 1459 1472 +Congo, Dem. Rep. 485 487 489 491 493 495 497 499 501 503 505 507 509 511 513 515 518 520 522 524 526 528 531 533 535 537 539 542 544 546 548 551 553 555 558 560 562 565 567 569 572 574 576 579 581 584 586 588 591 593 596 598 601 603 606 608 611 613 616 618 621 623 626 629 631 634 636 639 642 644 647 650 652 655 658 661 663 666 669 672 674 677 680 683 686 688 691 694 697 700 703 706 709 712 715 717 720 723 726 729 732 735 739 742 745 748 751 754 757 760 763 766 770 773 788 803 819 835 852 868 885 902 920 937 955 973 992 1011 1030 1050 1070 1091 1112 1133 1155 1177 1199 1222 1245 1269 1293 1318 1343 1369 1395 1422 1449 1476 1504 1533 1562 1756 1845 1994 2041 2128 2202 2177 2085 2084 2225 1948 2158 2147 2108 2016 2085 1999 2062 2160 2094 2194 2145 2253 2323 2032 1840 1772 1628 1575 1567 1567 1517 1496 1535 1498 1523 1517 1478 1410 1270 1120 963 801 742 724 698 645 622 583 531 506 507 520 539 556 569 588 607 607 632 657 685 724 768 809 +Congo, Rep. 575 576 578 580 581 583 585 586 588 590 591 593 595 596 598 600 601 603 605 606 608 610 612 613 615 617 619 620 622 624 626 627 629 631 633 635 636 638 640 642 644 645 647 649 651 653 655 656 658 660 662 664 666 668 670 672 673 675 677 679 681 683 685 687 689 691 693 695 697 699 701 703 705 707 709 711 713 715 717 719 721 723 725 727 729 731 733 735 737 739 741 743 746 748 750 752 754 756 758 760 763 765 767 769 771 773 776 778 780 782 784 787 789 791 809 827 845 864 883 903 923 945 967 990 1013 1036 1060 1085 1111 1136 1163 1190 1218 1246 1275 1305 1335 1366 1398 1431 1464 1498 1533 1568 1605 1642 1680 1719 1759 1800 1842 1880 1918 1954 1991 2028 2063 2099 2135 2170 2198 2535 2435 2263 2282 2329 2411 2642 2825 3057 3348 3545 3584 4082 3930 3784 3852 3469 3576 3869 4238 4993 5995 6153 6414 6166 5586 5448 5398 5350 5264 5249 5248 5062 4659 4715 4782 4618 4657 4413 4623 4680 4778 4702 4745 4978 5138 4905 5022 5236 5533 5569 5631 5680 5905 6220 +Costa Rica 775 775 775 775 775 776 776 776 776 776 776 776 776 776 777 777 777 777 777 777 777 786 795 804 813 822 831 841 850 860 869 879 889 899 909 919 929 940 950 961 972 983 994 1005 1016 1028 1039 1051 1063 1075 1087 1099 1111 1124 1137 1149 1162 1175 1188 1202 1215 1229 1243 1257 1271 1285 1300 1314 1329 1344 1359 1374 1390 1405 1421 1437 1453 1470 1486 1503 1520 1537 1554 1571 1589 1607 1625 1643 1662 1680 1699 1718 1738 1757 1777 1797 1817 1837 1858 1879 1900 1921 1943 1965 1987 2009 2032 2055 2078 2101 2125 2149 2173 2197 2222 2247 2272 2297 2323 2349 2376 2275 2478 2241 2510 2448 2651 2409 2484 2333 2401 2327 2102 2458 2129 2265 2375 2677 2790 2779 2626 2896 2518 2477 2180 2414 2633 3050 3141 3186 2948 2933 3179 3542 3449 3709 3472 3633 3936 3929 4110 4123 4221 4427 4495 4749 4953 5094 5324 5518 5723 5933 6287 6597 6772 6725 6898 7305 7465 7607 7537 7190 6508 6505 6820 6683 6851 6984 7036 7253 7333 7337 7816 8196 8378 8495 8357 8603 9095 9610 9564 9465 9548 9972 10212 10629 11371 12079 12219 11914 12322 12694 13162 13427 13713 14132 +Cote d'Ivoire 812 816 819 822 825 829 832 835 839 842 845 849 852 856 859 863 866 869 873 876 880 884 887 891 894 898 901 905 909 912 916 920 923 927 931 934 938 942 946 950 953 957 961 965 969 973 976 980 984 988 992 996 1000 1004 1008 1012 1016 1020 1025 1029 1033 1037 1041 1045 1049 1054 1058 1062 1066 1071 1075 1079 1084 1088 1092 1097 1101 1105 1110 1114 1119 1123 1128 1132 1137 1141 1146 1151 1155 1160 1164 1169 1174 1179 1183 1188 1193 1198 1202 1207 1212 1217 1222 1227 1232 1236 1241 1246 1251 1256 1261 1266 1272 1277 1293 1309 1326 1343 1360 1377 1394 1413 1432 1451 1470 1489 1509 1529 1549 1570 1591 1612 1633 1655 1676 1699 1721 1744 1767 1790 1814 1838 1862 1886 1911 1936 1962 1988 2014 2040 2067 2102 2138 2173 2209 2245 2281 2317 2353 2377 2510 2751 2651 2901 3312 3091 3291 3261 3565 3645 3798 3983 3975 4029 4020 4159 4488 4602 4878 4776 4068 4030 3868 3564 3330 3347 3330 3203 3129 3385 3234 3128 3019 2918 2851 2964 3103 3131 3202 3178 3049 2999 2904 2825 2820 2828 2827 2831 2854 2892 2892 2706 2928 3123 3324 3491 +Croatia 1395 1399 1402 1406 1411 1415 1420 1425 1430 1435 1441 1447 1453 1459 1466 1473 1480 1487 1487 1487 1350 1361 1373 1384 1395 1407 1418 1430 1441 1453 1465 1477 1489 1502 1514 1526 1539 1551 1564 1577 1590 1603 1616 1629 1643 1656 1670 1683 1697 1711 1725 1732 1739 1746 1752 1759 1766 1773 1780 1787 1794 1801 1808 1815 1822 1829 1836 1843 1851 1858 1865 1897 1930 1964 1998 2033 2068 2104 2141 2178 2216 2254 2294 2333 2374 2415 2457 2500 2543 2588 2633 2651 2669 2688 2706 2725 2744 2763 2782 2802 2821 2866 2913 2960 3007 3056 3105 3155 3206 3258 3310 3311 3311 3312 3301 3290 3279 3267 3256 3246 3235 3267 3315 3439 3634 3759 3965 3846 4125 4282 4139 3958 3541 3601 3684 3579 3988 3999 4260 4434 4395 4356 4318 4280 4243 4205 4168 4132 4863 5271 4871 4997 4549 5159 5376 5644 5469 6325 6531 7264 7651 7916 7984 8730 9476 9636 10057 10141 10267 11324 11777 13019 13345 13674 15299 15162 15482 16453 17208 18232 18996 19215 19228 19282 19659 19711 20412 20085 19712 19374 17890 14020 12269 11182 11764 12543 13797 14463 14965 14652 15644 16130 16977 17920 18656 19420 20358 21426 21873 20283 19989 20571 20183 20049 20060 20260 +Cuba 864 874 884 895 905 916 926 937 948 959 970 982 993 1005 1016 1028 1040 1052 1065 1077 1090 1102 1115 1128 1141 1155 1168 1182 1196 1210 1224 1238 1252 1267 1282 1297 1312 1327 1343 1358 1374 1390 1406 1423 1439 1456 1473 1490 1508 1525 1543 1561 1579 1598 1616 1635 1654 1674 1693 1713 1733 1753 1774 1794 1815 1836 1858 1880 1901 1924 1946 1969 1992 2015 2038 2062 2086 2111 2135 2160 2185 2211 2237 2263 2289 2316 2343 2370 2398 2426 2454 2483 2512 2541 2571 2601 2631 2662 2693 2724 2756 2788 2821 2854 2887 2920 2955 2989 3024 3059 3095 3182 3271 3361 3453 3547 3643 3740 3839 3940 4042 4187 4332 4479 4626 4775 4925 5076 5228 5381 5027 4212 3369 3631 4246 4937 5740 6578 5083 5346 4631 6198 5177 5709 6523 7174 7720 8724 7645 8193 8630 9245 9446 8192 8492 8757 9424 10636 10501 9234 9213 9248 9273 9244 9179 9116 9436 10372 9626 9377 8918 9471 9745 10439 10805 11176 11334 11712 12312 12519 12284 13224 13421 13669 14019 14135 14025 13805 13925 13829 13670 12113 10637 9001 9018 9195 9871 10106 10086 10674 11268 11588 11715 12123 12791 14200 15901 17055 17765 18035 18477 19005 19586 20122 20704 21291 +Cyprus 853 854 854 854 854 854 854 854 854 855 855 855 855 855 855 855 855 856 856 856 856 866 876 887 897 908 919 930 941 952 963 975 986 998 1010 1022 1034 1046 1059 1071 1084 1097 1110 1123 1137 1150 1164 1178 1192 1206 1220 1235 1249 1264 1279 1295 1310 1325 1341 1357 1373 1390 1406 1423 1440 1457 1474 1492 1510 1527 1546 1564 1583 1601 1620 1640 1659 1679 1699 1719 1740 1760 1781 1802 1824 1845 1867 1890 1912 1935 1958 1981 2005 2028 2053 2077 2102 2127 2152 2177 2203 2230 2256 2283 2310 2337 2365 2393 2422 2451 2480 2509 2539 2569 2593 2616 2640 2664 2688 2712 2737 2766 2795 2825 2855 2885 2915 2946 2977 3009 3040 3072 3105 3138 3171 3204 3238 3272 3306 3341 3376 3411 3447 3483 3519 3556 3593 3631 3668 3707 3745 3899 4058 4224 4397 4577 4764 4959 5161 5372 5592 5820 6058 6306 6563 6831 7110 7400 7702 8017 8344 9415 10088 10394 10200 8574 10217 11852 12722 13897 14582 14858 15638 16279 17500 18130 18626 19748 21185 22598 23802 23366 24891 24467 25380 26445 26450 26704 27721 28698 30005 30745 31373 31858 32812 33592 34528 35455 35828 34166 33747 32983 31710 30081 29673 29797 +Denmark 2013 2017 2020 2024 2028 2032 2035 2039 2043 2047 2050 2054 2058 2062 2066 2070 2073 2077 2081 2085 2089 2169 2182 2154 2191 2184 2191 2235 2251 2200 2214 2198 2261 2234 2339 2308 2296 2340 2341 2353 2412 2391 2384 2503 2594 2639 2673 2641 2755 2895 3029 2853 2927 2913 2899 3182 2967 2982 2927 3089 3029 3044 3103 3266 3207 3286 3263 3234 3262 3420 3536 3524 3695 3647 3723 3755 3794 3650 3755 3844 3908 3917 4026 4137 4118 4104 4222 4334 4330 4356 4587 4652 4737 4800 4860 5074 5201 5259 5279 5439 5566 5736 5812 6098 6172 6219 6332 6499 6631 6810 6937 7210 7116 7292 7649 7020 7219 6699 6396 7126 7359 7031 7633 8327 8247 7951 8326 8412 8620 9118 9571 9581 9219 9414 9591 9708 9856 10001 10148 10534 8977 8012 8095 8871 9666 8822 10047 10484 10643 11258 12025 12004 12027 12601 12732 12767 12837 13741 13963 14896 15198 16061 16815 16793 18228 18917 19284 19775 20482 21701 21990 22464 23562 24318 24027 23846 25376 25758 26108 27020 26921 26741 27622 28392 29711 31032 32181 32297 32720 32849 33256 33601 34152 34008 35766 36670 37521 38584 39297 40321 41693 41886 41947 41996 42993 43919 45437 45609 45017 42498 42997 43314 42869 42483 42777 43495 +Djibouti 752 754 757 759 762 764 766 769 771 774 776 779 781 784 786 789 791 794 796 799 801 804 806 809 811 814 816 819 822 824 827 830 832 835 837 840 843 845 848 851 853 856 859 862 864 867 870 873 875 878 881 884 886 889 892 895 898 901 903 906 909 912 915 918 921 924 927 930 932 935 938 941 944 947 950 953 956 959 962 965 969 972 975 978 981 984 987 990 993 997 1000 1003 1006 1009 1012 1016 1019 1022 1025 1029 1032 1035 1038 1042 1045 1048 1052 1055 1058 1062 1065 1068 1072 1075 1107 1139 1173 1207 1243 1280 1317 1356 1396 1438 1480 1524 1569 1615 1663 1712 1762 1815 1868 1923 1980 2038 2099 2160 2224 2290 2357 2427 2498 2572 2648 2726 2806 2889 2974 3061 3151 3248 3267 3311 3411 3432 3473 3508 3502 3601 3727 3752 3701 3734 3700 3693 3708 3701 3676 3668 4357 4510 4529 4602 4381 4350 4538 3779 3632 3555 3500 3526 3531 3461 3795 3704 3616 3532 3364 3165 3050 2811 2736 2505 2440 2315 2181 2127 2092 2103 2079 2090 2114 2150 2202 2240 2315 2399 2502 2590 2665 2767 2807 2903 3016 3139 +Ecuador 529 529 529 529 530 530 530 530 530 530 530 530 530 530 530 530 530 531 531 531 531 534 538 541 545 548 552 555 559 562 566 569 573 577 580 584 588 592 595 599 603 607 611 615 619 623 627 631 635 639 643 647 651 655 660 664 668 672 677 681 685 690 694 699 703 708 712 717 721 726 731 735 740 745 749 754 759 764 769 774 779 784 789 794 799 804 809 814 820 825 830 835 841 846 852 857 863 868 874 879 885 891 896 902 908 914 919 925 931 937 943 973 1004 1035 1066 1097 1129 1161 1194 1227 1260 1307 1354 1401 1448 1495 1541 1587 1633 1678 1723 1768 1813 1857 1901 1945 1988 2032 2074 2117 2237 2210 2300 2557 2551 2525 2783 3034 3388 3383 3416 3393 3742 3750 3975 3997 4058 4151 4178 4302 4473 4474 4594 4590 4786 5108 5102 5226 5364 5501 5723 5866 6035 6580 6752 6891 7330 7560 7844 8023 8145 8231 8083 7689 7777 7880 7887 7189 7739 7540 7542 7685 7672 7652 7805 7811 7781 7951 8045 7511 7444 7593 7753 7814 8300 8582 8802 8840 9244 9143 9311 9882 10233 10541 10774 10996 +Egypt 791 791 791 791 791 791 792 792 792 792 792 792 792 792 792 793 793 793 793 793 793 797 801 804 808 812 815 819 823 827 831 834 838 842 846 850 854 858 862 866 870 874 878 882 886 890 894 898 903 907 911 915 919 924 928 932 936 941 945 950 954 958 963 967 972 976 981 985 990 994 999 1004 1008 1000 992 984 976 968 961 953 960 988 1016 1045 1075 1106 1118 1130 1142 1154 1166 1178 1191 1203 1216 1229 1241 1255 1268 1281 1295 1308 1322 1336 1350 1364 1333 1340 1366 1349 1365 1393 1395 1418 1363 1397 1392 1352 1328 1372 1254 1273 1350 1431 1503 1523 1518 1538 1562 1567 1513 1536 1580 1634 1638 1674 1693 1708 1662 1625 1642 1642 1572 1587 1607 1645 1663 1682 1700 1718 1736 1738 1818 1868 1781 1741 1736 1780 1908 1947 2052 2105 2103 2128 2443 2509 2447 2377 2460 2614 3055 3090 3140 3095 3105 3193 3552 3745 3953 4262 4580 4553 4757 5044 5303 5539 5658 5774 5886 5933 6020 5974 6134 6212 6360 6553 6774 7036 7207 7528 7807 7955 8013 8134 8328 8556 8990 9467 9974 10267 10615 10629 10683 10731 10792 11031 +El Salvador 974 975 975 975 975 975 975 975 976 976 976 976 976 976 976 977 977 977 977 977 977 986 994 1002 1011 1019 1028 1036 1045 1054 1063 1072 1081 1090 1099 1108 1118 1127 1137 1146 1156 1166 1175 1185 1195 1205 1216 1226 1236 1247 1257 1268 1278 1289 1300 1311 1322 1333 1344 1356 1367 1379 1390 1402 1414 1426 1438 1450 1462 1474 1487 1499 1512 1525 1538 1551 1564 1577 1590 1603 1617 1631 1644 1658 1672 1686 1700 1715 1729 1744 1758 1773 1788 1803 1818 1834 1849 1865 1881 1896 1912 1929 1945 1961 1978 1994 2011 2028 2045 2062 2080 2097 2115 2133 2151 2169 2187 2206 2224 2243 2262 2226 2296 2350 2450 2225 2566 2218 2522 2485 2490 2197 1954 2185 2222 2410 2321 2504 2294 2426 2598 2506 2669 2871 2671 2526 2532 3143 3930 3504 3414 3387 3540 3683 3616 3688 3855 3933 3891 3935 3963 3966 4297 4333 4585 4671 4819 4906 4882 4863 4810 4878 5033 5119 5312 5448 5498 5659 5867 5618 5064 4692 4463 4436 4459 4478 4434 4457 4449 4408 4454 4545 4811 5086 5318 5589 5626 5817 5994 6165 6266 6345 6469 6595 6693 6907 7148 7391 7450 7180 7237 7352 7442 7515 7613 7776 +Equatorial Guinea 356 356 357 357 357 358 358 359 359 360 360 361 361 362 362 363 363 364 364 365 365 366 366 367 367 368 368 369 369 370 370 370 371 371 372 372 373 373 374 374 375 375 376 376 377 377 378 378 379 379 380 380 381 381 382 382 383 383 384 385 385 386 386 387 387 388 388 389 389 390 390 391 391 392 392 393 393 394 394 395 395 396 396 397 397 398 399 399 400 400 401 401 402 402 403 403 404 404 405 405 406 407 409 410 412 413 415 416 418 419 420 422 423 425 426 428 429 431 432 434 435 437 439 441 442 444 446 447 449 451 453 454 456 458 460 461 463 465 467 468 470 472 474 476 477 479 481 483 485 486 488 507 517 531 553 562 577 588 598 624 678 732 806 915 1041 1169 1203 1268 1296 1242 1193 1081 933 971 1029 1181 1325 1331 1436 1407 1349 1301 1290 1248 1169 1240 1154 1161 1155 1108 1050 1005 1310 1406 1586 1803 2907 7037 8437 10273 11768 18637 21586 23856 31942 36200 33468 36788 40143 35880 34431 35150 35282 32654 30783 31087 +Eritrea 532 532 532 532 532 532 532 533 533 533 533 533 533 533 533 533 533 533 533 534 534 535 536 538 539 540 542 543 545 546 547 549 550 552 553 554 556 557 559 560 561 563 564 566 567 569 570 572 573 575 576 577 579 580 582 583 585 586 588 589 591 592 594 595 597 598 600 601 603 605 606 608 609 611 612 614 615 617 619 620 622 623 625 627 628 630 631 633 635 636 638 639 641 643 644 646 648 649 651 653 654 656 658 659 661 663 664 666 668 669 671 673 675 676 679 683 686 689 692 696 699 702 705 708 711 713 716 719 722 725 728 731 734 737 740 743 746 749 752 755 758 761 764 767 771 774 777 780 783 786 789 798 806 838 823 851 863 841 852 858 885 899 912 927 937 974 998 1039 1068 1080 1037 1054 1068 1061 1035 965 948 931 864 940 942 943 925 966 913 783 831 915 891 858 850 939 1040 1175 1416 1438 1542 1623 1603 1550 1446 1511 1491 1389 1351 1332 1272 1246 1088 1095 1083 1139 1180 1157 1140 1129 +Estonia 938 939 940 941 942 943 944 945 947 948 949 950 951 952 953 954 956 957 958 959 960 966 973 979 985 992 998 1005 1011 1018 1024 1031 1038 1044 1051 1058 1065 1072 1079 1086 1093 1100 1107 1114 1121 1128 1136 1143 1151 1158 1166 1173 1181 1188 1196 1204 1212 1219 1227 1235 1243 1251 1260 1268 1276 1284 1292 1301 1309 1318 1326 1335 1344 1352 1361 1370 1379 1388 1397 1406 1415 1424 1433 1443 1452 1461 1405 1643 1581 1470 1464 1342 1469 1665 1893 1752 1930 1898 1949 2068 2024 2075 2255 2100 2322 2056 1965 1889 2063 2142 2286 2112 2283 2398 2291 2358 2097 1841 1473 1355 1762 2028 2333 2497 2541 2661 2735 2925 3098 3110 3053 2957 2923 3098 3428 3549 3765 3953 4124 3917 3703 3635 3568 3503 3438 3375 3313 3682 4161 4546 4926 4866 5094 5228 5392 5752 6195 6213 6565 6379 6861 7128 7204 6936 7728 8069 8368 8647 9066 9109 9721 9885 9844 10573 10839 10829 11297 11525 11778 11690 11676 11753 12010 12358 12470 12540 13014 13144 13392 13601 13260 12008 10523 9870 9870 10464 11245 12709 13705 13723 14877 15894 16974 18359 19665 21651 24047 26066 24743 21137 21710 23576 24761 25254 25865 26812 +Ethiopia 523 523 523 523 523 523 523 523 523 523 523 523 524 524 524 524 524 524 524 524 524 524 524 525 525 525 525 525 526 526 526 526 526 526 527 527 527 527 527 528 528 528 528 528 529 529 529 529 529 529 530 530 530 530 530 531 531 531 531 531 531 532 532 532 532 532 533 533 533 533 533 533 534 534 534 534 534 535 535 535 535 535 535 536 536 536 536 536 537 537 537 537 537 538 538 538 538 538 538 539 539 539 539 539 540 540 540 540 540 541 541 541 541 541 542 543 544 545 545 546 547 548 549 550 551 552 554 555 556 557 558 559 560 561 562 563 564 565 567 568 569 570 571 572 573 574 575 576 577 578 579 586 593 617 607 629 638 622 631 636 657 668 678 690 698 727 746 777 800 810 778 792 803 799 780 729 716 704 655 713 715 717 704 736 696 597 635 700 682 657 653 585 516 564 562 578 630 630 591 604 623 656 647 615 679 738 796 863 931 986 1081 1171 1240 1336 1432 1520 +Fiji 785 785 785 785 785 785 786 786 786 786 786 786 786 786 787 787 787 787 787 787 787 790 793 795 798 801 803 806 809 812 814 817 820 823 826 828 831 834 837 840 842 845 848 851 854 857 860 863 866 869 872 875 877 880 883 886 889 892 896 899 902 905 908 911 914 917 920 923 926 930 933 936 939 942 945 949 952 955 958 962 965 968 971 975 978 981 985 988 991 995 998 1002 1005 1008 1012 1015 1019 1022 1026 1029 1033 1036 1040 1043 1047 1050 1054 1057 1061 1065 1068 1072 1075 1079 1106 1134 1163 1192 1222 1252 1284 1317 1350 1385 1420 1456 1493 1531 1570 1610 1651 1694 1737 1781 1826 1873 1920 1969 2019 2071 2123 2177 2233 2289 2348 2407 2468 2531 2595 2661 2729 2798 2869 2942 3016 3093 3171 3252 3334 3419 3505 3508 3513 3613 3671 3471 3382 3744 3953 3971 4384 4590 4834 5287 5319 5245 5291 5506 5510 6066 5843 6066 5560 5208 5528 5193 5545 5160 5204 5583 5694 5488 5751 5792 6002 6073 6291 6087 6108 6594 6444 6548 6745 6804 7149 7169 7253 7128 7129 6959 7098 7228 7303 7502 7735 7925 +Finland 1244 1246 1248 1251 1253 1255 1257 1260 1262 1264 1267 1269 1271 1274 1276 1278 1281 1283 1286 1288 1290 1297 1304 1311 1318 1325 1332 1339 1346 1353 1360 1367 1375 1382 1389 1397 1404 1411 1419 1426 1434 1442 1449 1457 1465 1472 1480 1488 1496 1504 1512 1520 1528 1536 1544 1552 1561 1569 1577 1586 1594 1592 1490 1592 1611 1582 1594 1474 1670 1833 1897 1876 1906 1987 2005 2017 2098 2018 1954 1946 1925 1851 2006 2051 2034 2054 2128 2128 2173 2214 2305 2255 2137 2239 2338 2493 2623 2714 2788 2686 2789 2736 2661 2820 2896 2914 3002 3070 3061 3154 3192 3247 3388 3536 3353 3154 3174 2651 2298 2782 3097 3164 3456 3674 3738 3914 4023 4302 4556 4574 4489 4347 4297 4554 5039 5216 5531 5807 6059 5753 5439 5612 5622 6247 6228 5832 6228 6287 6695 7011 7198 7738 7914 7877 8470 8802 8971 9302 9276 9751 10560 11286 11560 11858 12389 13006 13269 13477 13726 15058 16245 16564 17722 18804 19273 19409 19268 19261 19608 20918 21965 22279 22873 23351 23926 24630 25133 26086 27282 28735 28599 26761 25726 25414 26301 27303 28210 29884 31423 32743 34517 35327 35834 36461 37783 38700 40115 42016 42122 38455 39425 40251 39489 38788 38569 38923 +France 1803 1806 1810 1813 1817 1821 1824 1828 1832 1835 1839 1842 1846 1850 1854 1857 1861 1865 1868 1872 1876 1992 1844 1834 1789 1798 1851 1860 1742 1836 1799 1783 1910 1905 1879 1974 2008 2029 2069 2033 2184 2119 2074 2148 2209 2284 2424 2638 2055 2047 2146 2106 2379 2641 2958 3114 3228 3112 2900 2902 3086 3147 3255 3342 3396 3333 3469 3413 3644 3417 3297 3449 3631 3581 3730 3653 3607 3591 3389 3354 3555 3782 3910 3739 3543 3438 3393 3420 3500 3510 3639 3678 3755 3613 3964 3883 4005 3888 4117 4261 4314 4100 4048 4181 4261 4367 4304 4648 4629 4774 4542 5004 5420 5373 4506 3968 4548 4506 3861 4258 4550 4326 5188 5434 6032 6075 6284 6157 6522 7078 6835 6534 5962 6140 5929 5785 5869 6008 5861 6106 4821 4666 4700 4691 3594 4423 5909 6228 6988 7367 7914 8301 8446 8622 9006 9453 9907 10442 10681 10911 11642 12168 12767 13235 13969 14514 15158 15759 16321 17339 18185 18891 19570 20486 20997 20851 21661 22270 22928 23647 23962 24186 24753 25188 25497 25917 26453 26963 28101 28942 29476 29707 30033 29719 30303 30823 31141 31756 32764 33707 34774 35197 35333 35371 36090 36395 37001 37641 37505 36215 36745 37328 37227 37309 37218 37599 +Gabon 390 390 390 390 390 391 391 391 391 391 391 391 391 391 391 391 391 391 391 391 391 391 392 392 392 392 392 392 392 392 392 392 392 392 392 392 392 392 392 393 393 393 393 393 393 393 393 393 393 393 393 393 393 393 393 393 394 394 394 394 394 394 394 394 394 394 394 394 394 394 394 394 394 395 395 395 395 395 395 395 395 395 395 395 395 395 395 395 395 395 396 396 396 396 396 396 396 396 396 396 396 398 399 401 403 404 406 408 409 411 413 414 416 418 420 421 423 425 427 428 430 437 444 451 458 465 472 479 487 494 501 509 516 523 531 538 546 554 561 569 577 585 593 601 609 617 625 633 641 650 658 711 769 831 899 971 1050 1134 1226 1324 1431 1638 1874 2144 2454 2807 2679 3219 3423 3836 4656 5793 6180 8349 18287 18169 21774 20699 22649 24502 27736 27631 24800 26740 25707 23142 18203 16383 15076 19870 19358 19995 18868 19101 19298 19738 19933 20545 20729 18413 17630 17579 17126 17105 16822 17069 16059 16693 15800 15238 15982 16590 17252 17580 17912 18627 +Gambia 813 813 814 814 815 815 816 816 817 817 818 818 819 819 820 820 821 821 822 822 823 823 824 824 825 825 826 826 827 827 828 828 829 829 830 830 831 831 832 832 833 833 834 834 835 835 836 836 837 837 838 839 839 840 840 841 841 842 842 843 843 844 844 845 845 846 846 847 847 848 848 849 849 850 850 851 851 852 852 853 853 854 854 855 856 856 857 857 858 858 859 859 860 860 861 861 862 862 863 863 864 865 867 869 870 872 873 875 877 878 880 881 883 885 886 888 890 891 893 895 896 899 902 906 909 912 915 918 921 924 927 931 934 937 940 943 946 950 953 956 959 962 965 969 972 975 978 981 985 988 991 1025 1034 1050 1084 1092 1106 1119 1120 1154 1196 1353 1298 1268 1312 1412 1597 1602 1575 1691 1478 1597 1660 1684 1956 1778 1923 1957 1799 2028 1772 1703 1861 1586 1494 1323 1347 1371 1463 1510 1517 1510 1513 1515 1475 1448 1439 1468 1477 1527 1564 1606 1506 1559 1617 1552 1521 1528 1566 1615 1667 1545 1584 1608 1555 1644 +Georgia 543 543 543 543 543 543 543 543 544 544 544 544 544 544 544 544 544 544 544 544 545 547 550 552 555 558 560 563 566 568 571 574 576 579 582 585 587 590 593 596 599 602 604 607 610 613 616 619 622 625 628 631 634 637 640 643 646 649 652 655 658 661 665 668 671 674 677 681 684 687 690 694 697 700 704 707 710 714 717 720 724 727 731 734 738 741 712 831 798 741 737 674 737 834 947 875 962 945 969 1026 1003 1027 1114 1036 1144 1011 965 926 1010 1047 1115 1029 1110 1165 1111 1141 1139 890 695 543 520 499 560 629 706 793 890 999 1122 1136 1188 1199 1181 1226 1339 1532 1637 1773 1769 1842 1766 1733 1701 1670 1639 1609 1579 1756 1984 2168 2349 2320 2429 2493 2571 2743 2954 2962 3130 3041 3271 3404 3445 3322 3707 3877 4128 4347 4505 4685 5212 5303 5415 5727 6192 6611 6979 7425 7941 8485 8825 9236 9363 9703 10158 10580 9633 9670 10135 9379 8018 6282 3435 2410 2181 2298 2621 2951 3072 3185 3269 3451 3664 4096 4346 4716 5116 5760 5900 5642 5938 6322 6702 6930 7233 7474 +Germany 1639 1651 1663 1674 1686 1698 1710 1722 1734 1746 1759 1771 1784 1796 1809 1822 1834 1847 1860 1874 1887 1900 1913 1927 1941 1954 1968 1982 1996 2010 2024 2032 2039 2047 2055 2063 2070 2078 2086 2094 2102 2110 2118 2126 2134 2142 2150 2158 2166 2174 2182 2152 2180 2161 2207 2173 2343 2440 2409 2396 2509 2423 2519 2678 2726 2711 2713 2706 2852 2851 2819 2785 2962 3065 3258 3241 3177 3119 3228 3114 3057 3110 3140 3292 3347 3405 3398 3497 3598 3658 3733 3685 3798 3946 3996 4133 4216 4271 4384 4473 4596 4422 4457 4634 4751 4783 4858 5002 5017 5049 5162 5277 5477 5692 4793 4559 4633 4679 4746 4131 4482 4969 5415 4500 5270 5857 6015 6618 6909 6884 6791 6276 5809 6178 6738 7232 7852 8305 8894 9674 9711 10310 10407 10722 11120 8284 4084 4504 5258 6112 7251 7884 8561 9252 9926 10998 11751 12385 12884 13759 14808 15317 15872 16221 17100 17838 18262 18311 19254 20409 21218 21695 22497 23461 23662 23630 24904 25678 26444 27515 27765 27846 27645 28227 29135 29851 30514 30986 31906 32706 31476 32844 33221 32689 33375 33843 34008 34578 35254 35931 36953 37517 37458 37167 37614 37901 39352 40693 41199 38975 40632 42080 42959 42887 43444 44053 +Ghana 696 696 697 698 698 699 699 700 700 701 701 702 703 703 704 704 705 705 706 707 707 708 708 709 709 710 710 711 712 712 713 713 714 714 715 716 716 717 717 718 718 719 720 720 721 721 722 722 723 724 724 725 725 726 727 727 728 728 729 729 730 731 731 732 732 733 734 734 735 735 736 738 739 741 742 744 746 747 749 751 752 754 756 757 759 761 762 764 766 768 769 771 768 773 763 768 743 747 745 742 725 701 738 756 789 808 867 896 909 958 952 1138 1131 1190 1183 1395 1305 1437 1149 2015 1570 1580 1881 2001 2147 2094 2144 1966 2031 2079 1763 1804 1853 1902 1952 2023 2095 2170 1951 1906 1861 1818 1775 1733 1692 1652 1435 1232 1287 1416 1682 1704 1634 1816 1996 1822 2167 1936 2092 2145 2246 2267 2316 2334 2322 2290 2230 2208 2177 2240 2455 2527 2396 2458 2559 2190 2072 2085 2226 2130 2090 1960 1766 1628 1710 1740 1778 1813 1865 1909 1920 1965 1985 2024 2036 2066 2110 2148 2199 2244 2273 2306 2350 2409 2479 2558 2652 2751 2907 2934 3091 3446 3685 3873 3953 4099 +Greece 1371 1374 1376 1378 1381 1383 1386 1388 1390 1393 1395 1398 1400 1402 1405 1407 1410 1412 1415 1417 1420 1431 1443 1455 1467 1479 1491 1503 1516 1528 1541 1554 1566 1579 1592 1605 1619 1632 1645 1659 1672 1686 1700 1714 1728 1742 1757 1771 1786 1801 1815 1822 1830 1837 1844 1851 1859 1866 1873 1881 1888 1895 1903 1910 1918 1925 1933 1940 1948 1956 1963 1993 2022 2052 2083 2113 2145 2177 2209 2242 2275 2309 2343 2378 2413 2449 2485 2522 2560 2598 2636 2673 2710 2748 2786 2825 2865 2905 2945 2986 3028 3067 3106 3146 3186 3227 3269 3311 3353 3396 3440 3470 3500 3530 3604 3680 3757 3836 3916 3998 4081 4159 4239 4273 4403 4562 4628 4696 4708 4916 4723 4449 4754 4958 4990 5102 5036 5662 5459 5365 4510 3792 3188 2673 2243 1881 2776 3524 3589 3723 3811 4098 4076 4581 4673 4978 5355 5656 5860 6011 6219 6708 6920 7598 8197 8931 9414 9822 10458 11466 12366 13227 14818 15373 14801 15594 16413 16765 17707 18184 18373 18270 18286 18309 18776 19345 19657 19575 20486 21229 21085 21528 21442 20906 21147 21426 21905 22739 23535 24152 25030 25884 26625 28303 29604 29768 31399 32408 32197 30780 29190 26675 24991 24159 24502 25430 +Grenada 959 959 959 959 959 959 959 960 960 960 960 960 960 960 961 961 961 961 961 961 961 965 970 974 978 982 986 990 995 999 1003 1007 1012 1016 1020 1025 1029 1033 1038 1042 1046 1051 1055 1060 1064 1069 1073 1078 1083 1087 1092 1096 1101 1106 1111 1115 1120 1125 1130 1134 1139 1144 1149 1154 1159 1164 1168 1173 1178 1183 1188 1194 1199 1204 1209 1214 1219 1224 1229 1235 1240 1245 1251 1256 1261 1267 1272 1277 1283 1288 1294 1299 1305 1310 1316 1321 1327 1333 1338 1344 1350 1355 1361 1367 1373 1379 1384 1390 1396 1402 1408 1414 1420 1426 1432 1438 1444 1451 1457 1463 1469 1476 1482 1489 1496 1503 1509 1516 1523 1530 1537 1544 1550 1557 1564 1571 1578 1585 1592 1599 1607 1614 1621 1628 1635 1642 1650 1657 1664 1672 1679 1718 1758 1799 1841 1884 1927 1972 2018 2065 2113 2162 2212 2263 2316 2370 2425 2481 2539 2597 2658 2852 3074 3354 3588 3724 4106 4401 4820 4964 4949 4945 4959 4888 5019 5253 5756 6341 6583 7057 7488 7646 7565 7283 7401 7522 7785 8117 8633 9489 9650 9433 9734 10627 10529 11892 11380 12042 12116 11273 11178 11219 11046 11273 11400 11593 +Guatemala 857 857 857 857 858 858 858 858 858 858 858 858 859 859 859 859 859 859 859 860 860 867 874 881 888 895 903 910 917 925 932 940 948 956 963 971 979 987 995 1003 1011 1020 1028 1036 1045 1053 1062 1071 1079 1088 1097 1106 1115 1124 1133 1143 1152 1161 1171 1180 1190 1200 1210 1220 1229 1240 1250 1260 1270 1281 1291 1302 1312 1323 1334 1345 1356 1367 1378 1389 1400 1412 1423 1435 1447 1458 1470 1482 1494 1507 1519 1531 1544 1556 1569 1582 1595 1608 1621 1634 1648 1661 1675 1688 1702 1716 1730 1744 1758 1773 1787 1802 1817 1831 1846 1861 1877 1892 1907 1923 1939 2105 1966 2138 2287 2220 2218 2338 2365 2611 2694 2457 2092 2057 2289 2591 3487 3336 3361 3711 4140 4263 4222 2766 2624 2608 3014 2971 2989 3172 3131 3083 3055 3075 3041 3024 3202 3284 3336 3397 3377 3421 3441 3661 3722 3815 3955 4044 4320 4441 4606 4766 5012 5242 5460 5450 5730 6047 6215 6373 6475 6361 5953 5662 5534 5345 5198 5225 5269 5314 5315 5383 5514 5598 5691 5836 5873 5992 6149 6239 6313 6305 6389 6390 6429 6475 6658 6906 6960 6826 6849 6957 6985 7063 7181 7279 +Guinea 450 450 450 450 450 451 451 451 451 451 451 451 451 451 451 451 451 451 451 451 452 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 530 531 532 533 534 535 536 537 538 539 540 542 543 544 545 546 547 548 549 551 552 553 554 556 558 560 562 564 566 568 570 572 574 576 578 580 582 584 586 588 590 592 594 596 599 601 603 605 607 609 611 613 615 643 654 669 699 713 730 745 755 786 806 846 893 831 870 914 917 929 940 950 966 977 979 1003 1053 1076 1159 1162 1170 1149 1166 1149 1147 1137 1117 1085 1077 1085 1122 1139 1128 1097 1068 1059 1046 1049 1061 1089 1107 1130 1139 1161 1200 1194 1200 1210 1212 1203 1230 1194 1185 1200 1216 1213 1179 1225 +Guinea-Bissau 777 777 777 777 778 778 778 778 778 778 778 778 779 779 779 779 779 779 779 779 779 780 781 781 782 783 783 784 785 785 786 786 787 788 788 789 790 790 791 792 792 793 793 794 795 795 796 797 797 798 799 799 800 801 801 802 803 803 804 804 805 806 806 807 808 808 809 810 810 811 812 812 813 814 814 815 816 816 817 818 818 819 820 820 821 822 822 823 824 824 825 826 826 827 828 828 829 830 830 831 832 832 833 834 834 835 836 836 837 838 838 839 840 840 841 842 842 843 844 844 845 845 845 844 844 844 843 843 843 843 842 842 842 841 841 841 840 840 840 839 839 839 838 838 837 837 837 836 836 836 835 867 900 935 1096 1027 1140 1184 1190 1175 1208 1260 1308 1332 1440 1511 1577 1639 1659 1708 1756 1676 1775 1770 1829 1852 1803 1644 1825 1827 1500 1730 1790 1605 1631 1679 1626 1562 1585 1553 1564 1607 1588 1585 1599 1632 1781 1855 1305 1289 1330 1329 1287 1266 1273 1299 1300 1313 1326 1340 1368 1457 1391 1362 1363 1386 +Guyana 1214 1214 1214 1215 1215 1215 1215 1215 1215 1216 1216 1216 1216 1216 1217 1217 1217 1217 1217 1217 1218 1226 1234 1242 1251 1259 1268 1276 1285 1294 1302 1311 1320 1329 1338 1347 1356 1365 1375 1384 1393 1403 1412 1422 1431 1441 1451 1460 1470 1480 1490 1500 1510 1521 1531 1541 1552 1562 1573 1583 1594 1605 1616 1627 1638 1649 1660 1671 1682 1694 1705 1717 1728 1740 1752 1764 1775 1787 1800 1812 1824 1836 1849 1861 1874 1886 1899 1912 1925 1938 1951 1964 1977 1991 2004 2018 2031 2045 2059 2073 2087 2101 2115 2129 2144 2158 2173 2188 2202 2217 2232 2247 2262 2278 2312 2347 2382 2418 2454 2491 2529 2575 2621 2669 2717 2766 2816 2867 2919 2972 3025 3080 3135 3192 3249 3308 3367 3427 3489 3551 3615 3679 3745 3812 3880 3949 4020 4091 4164 4238 4314 4207 4103 4001 3902 3805 3711 3619 3529 3442 3356 3426 3383 2902 3164 3427 3535 3618 3593 3788 3905 3996 3846 3883 4172 4509 4556 4409 4304 4206 4270 4337 3775 3535 3378 3485 3485 3551 3454 3312 3231 3432 3703 4001 4331 4533 4872 5153 5041 5166 5071 5163 5197 5124 5270 5140 4837 5143 5208 5344 5542 5808 6054 6336 6545 6816 +Haiti 633 633 634 634 634 634 634 634 634 634 634 634 634 635 635 635 635 635 635 635 635 642 648 655 662 668 675 682 689 696 703 710 718 725 732 740 748 755 763 771 779 787 795 803 811 819 828 836 845 853 862 871 880 889 898 907 916 926 935 945 954 964 974 984 994 1004 1014 1025 1035 1046 1056 1067 1078 1089 1100 1112 1123 1134 1146 1158 1170 1182 1194 1206 1218 1231 1243 1256 1269 1282 1295 1308 1322 1335 1349 1362 1376 1390 1405 1419 1434 1448 1463 1478 1493 1508 1524 1539 1555 1571 1587 1603 1620 1636 1653 1670 1687 1704 1722 1739 1757 1775 1793 1812 1831 1849 1868 1888 1907 1927 1946 1966 1986 2007 2027 2048 2069 2090 2112 2133 2155 2177 2199 2222 2244 2267 2261 2274 2271 2270 2281 2278 2367 2252 2394 2256 2408 2222 2351 2196 2292 2154 2312 2116 2024 2003 1949 1869 1902 1922 1970 2076 2130 2204 2322 2249 2421 2412 2507 2666 2848 2727 2588 2559 2515 2469 2414 2346 2314 2290 2242 2208 1873 1799 1621 1672 1710 1726 1733 1748 1734 1688 1657 1637 1557 1562 1576 1607 1600 1628 1518 1580 1603 1648 1670 1710 +Honduras 675 675 675 675 675 675 675 675 675 675 676 676 676 676 676 676 676 676 676 676 677 685 694 703 712 721 730 740 749 759 769 779 789 799 809 819 830 841 851 862 873 885 896 907 919 931 943 955 967 980 992 1005 1018 1031 1044 1058 1071 1085 1099 1113 1127 1142 1156 1171 1186 1202 1217 1233 1248 1265 1281 1297 1314 1331 1348 1365 1383 1400 1418 1437 1455 1474 1493 1512 1531 1551 1571 1591 1612 1632 1653 1674 1696 1718 1740 1762 1785 1808 1831 1854 1878 1902 1927 1952 1977 2002 2028 2054 2080 2107 2134 2161 2189 2217 2246 2275 2304 2333 2363 2394 2424 2382 2486 2376 2162 2515 2448 2655 2917 2822 2940 2937 2575 2365 2266 2120 2115 1981 2056 2073 2154 2110 1878 1863 1858 2249 2361 2453 2446 2405 2407 2460 2478 2593 2369 2353 2460 2490 2483 2461 2526 2501 2551 2549 2583 2703 2756 2805 2864 2781 2771 2778 2775 2803 3089 3061 3266 3488 3700 3738 3616 3557 3373 3233 3241 3261 3170 3240 3288 3304 3205 3219 3308 3423 3293 3344 3385 3475 3500 3362 3483 3505 3563 3651 3801 3952 4128 4297 4391 4200 4270 4345 4131 4154 4214 4270 +Hungary 1249 1249 1250 1250 1250 1250 1250 1250 1251 1251 1251 1251 1251 1252 1252 1252 1252 1252 1253 1253 1253 1263 1273 1283 1293 1303 1313 1323 1333 1344 1354 1365 1376 1386 1397 1408 1419 1430 1441 1453 1464 1476 1487 1499 1510 1522 1534 1546 1558 1570 1583 1595 1607 1620 1633 1645 1658 1671 1684 1698 1711 1724 1738 1751 1765 1779 1793 1807 1821 1835 1849 1878 1906 1935 1965 1995 2025 2056 2087 2119 2151 2184 2217 2251 2285 2320 2355 2391 2428 2465 2502 2536 2570 2605 2641 2676 2713 2750 2787 2825 2863 2913 2965 3017 3070 3124 3179 3235 3292 3350 3409 3488 3569 3652 3571 3492 3414 3338 3264 3191 3120 3250 3384 3523 3666 4419 4239 4434 4837 5010 4913 4681 4567 4991 5027 5288 5650 5533 5824 6273 5850 5893 6199 5555 4977 4459 3994 4141 5168 5562 5893 6439 6633 6724 6914 7483 7115 7795 8317 8641 9087 9539 9939 10492 11083 11173 11809 12475 12612 12973 12917 13471 13736 14420 14746 14991 14970 15853 16199 16209 16369 16500 17122 16989 17485 17103 17493 17811 18395 18077 16930 14926 14474 14407 14852 15095 15126 15667 16365 16943 17707 18411 19292 20079 21087 22029 22938 23091 23334 21839 22062 22524 22306 22708 23609 24200 +Iceland 926 926 927 927 927 927 927 927 927 928 928 928 928 928 928 928 929 929 929 929 929 939 950 960 970 981 992 1002 1013 1025 1036 1047 1058 1070 1082 1093 1105 1118 1130 1142 1155 1167 1180 1193 1206 1219 1232 1246 1259 1273 1287 1301 1315 1330 1344 1359 1374 1389 1404 1419 1435 1450 1466 1482 1498 1515 1531 1548 1565 1582 1599 1628 1622 1696 1747 1740 1712 1749 1814 1920 2035 2039 1820 1751 1772 1810 1816 1786 1848 1927 2009 2057 2189 2331 2357 2307 2353 2338 2268 2266 2352 2455 2522 2522 2526 2699 2760 2866 2844 2812 3012 3140 3162 3305 3232 3171 2796 2736 2576 2982 2514 2762 3097 2927 3117 3108 3343 3669 3807 4022 4444 4371 4170 4595 4624 4451 4439 4603 4601 5111 5373 6087 7013 7387 7986 8487 8702 9451 9452 9085 8670 8350 8120 9169 9821 10548 10575 10295 10896 10865 10993 10801 11489 12447 13450 14173 15166 14734 13752 13983 14937 16687 17413 18360 19123 19023 19978 21583 22659 23523 24580 25312 25455 24594 25356 25997 27379 29335 28780 28629 28666 28272 26977 27055 27789 27671 28839 30009 31601 32521 33599 34403 34252 34938 37482 39108 39818 42598 42294 39979 38809 39619 39925 40958 41237 42182 +India 1052 1052 1052 1052 1052 1052 1052 1052 1051 1051 1051 1051 1051 1051 1051 1051 1051 1050 1050 1050 1050 1050 1050 1051 1051 1051 1051 1051 1051 1051 1052 1052 1052 1052 1052 1052 1052 1053 1053 1053 1053 1053 1053 1054 1054 1054 1054 1054 1054 1054 1055 1055 1055 1055 1055 1055 1056 1056 1056 1056 1056 1056 1057 1057 1057 1057 1057 1057 1058 1058 1058 1061 1063 1066 1068 1071 1074 1076 1079 1081 1084 1087 1089 1092 1095 1127 1090 1137 1146 1113 1163 1054 1137 1164 1180 1149 1063 1255 1255 1156 1194 1212 1305 1316 1314 1283 1311 1225 1235 1396 1391 1371 1359 1320 1383 1340 1370 1336 1158 1309 1197 1268 1296 1229 1264 1254 1268 1244 1232 1259 1244 1208 1194 1168 1153 1116 1134 1091 1069 1069 1081 1079 1054 1075 1043 1007 937 924 917 922 908 908 912 947 962 963 993 959 1005 1002 1048 1051 1046 1071 1125 1053 1037 1096 1095 1141 1170 1154 1125 1151 1139 1212 1201 1266 1305 1211 1270 1322 1334 1412 1436 1462 1493 1525 1649 1723 1777 1760 1821 1871 1959 2069 2186 2235 2332 2496 2548 2628 2684 2850 3029 3262 3514 3806 3901 4177 4547 4787 4967 5244 5565 5903 +Indonesia 994 994 995 995 995 995 995 995 996 996 996 996 996 996 996 997 997 997 997 997 997 999 1000 1002 1003 1005 1006 1008 1009 1011 1012 1014 1015 1017 1018 1020 1021 1023 1024 1026 1027 1029 1030 1032 1033 1035 1036 1038 1039 1041 1043 1044 1046 1047 1049 1050 1052 1054 1055 1057 1058 1060 1062 1063 1065 1067 1068 1070 1071 1073 1075 1060 1047 1057 1070 1079 1101 1103 1079 1092 1088 1143 1101 1077 1155 1154 1136 1137 1127 1117 1077 1096 1127 1150 1154 1144 1139 1140 1132 1175 1198 1169 1135 1184 1187 1188 1207 1223 1210 1253 1313 1359 1366 1411 1396 1398 1395 1383 1409 1520 1460 1449 1474 1489 1548 1562 1636 1720 1764 1791 1795 1637 1609 1599 1608 1662 1766 1879 1910 1912 2053 2048 1505 1336 1066 940 972 1075 1249 1363 1443 1527 1541 1587 1665 1701 1664 1779 1643 1696 1737 1791 1772 1668 1694 1682 1666 1602 1741 1920 2082 2162 2351 2637 2679 2612 2797 2946 3026 3111 3314 3445 3254 3294 3461 3489 3646 3775 3940 4234 4548 4868 5131 5412 5727 6111 6478 6683 5721 5684 5878 6005 6186 6389 6615 6892 7168 7516 7856 8108 8498 8907 9327 9729 10099 10504 +Iran 977 977 977 977 978 978 978 978 978 978 979 979 979 979 979 979 979 980 980 980 980 982 984 986 988 989 991 993 995 997 999 1001 1003 1004 1006 1008 1010 1012 1014 1016 1018 1020 1022 1024 1026 1027 1029 1031 1033 1035 1037 1039 1041 1043 1045 1047 1049 1051 1053 1055 1057 1059 1061 1063 1065 1067 1069 1071 1073 1075 1077 1085 1092 1099 1107 1115 1122 1130 1138 1146 1153 1161 1169 1177 1185 1193 1202 1210 1218 1227 1235 1243 1252 1261 1269 1278 1287 1296 1304 1313 1322 1331 1341 1350 1359 1368 1378 1387 1397 1406 1416 1431 1446 1461 1497 1534 1572 1611 1650 1691 1733 1785 1839 1894 1950 2008 2067 2127 2189 2252 2317 2383 2451 2520 2591 2664 2738 2814 2891 2970 3051 3134 3219 3306 3394 3485 3577 3672 3768 3867 3968 3881 3796 3717 3635 3554 3783 4211 4591 4863 5203 5505 5472 5921 6188 6768 7252 7862 8816 9709 10467 11475 13019 13782 14316 14690 16697 16033 13827 12312 10366 9691 10715 11655 11274 11047 9675 9335 8626 8753 9511 10502 10792 10500 10344 10477 11043 11216 11311 11327 11719 11977 12712 13454 13975 14452 15127 15903 15955 16123 16980 17425 16068 15552 15573 15573 +Iraq 970 970 970 970 970 970 971 971 971 971 971 971 971 972 972 972 972 972 972 972 973 977 981 985 989 993 997 1001 1005 1009 1013 1017 1021 1026 1030 1034 1038 1043 1047 1051 1055 1060 1064 1068 1073 1077 1082 1086 1090 1095 1099 1104 1108 1113 1117 1122 1127 1131 1136 1140 1145 1150 1155 1159 1164 1169 1174 1178 1183 1188 1193 1202 1212 1221 1231 1241 1250 1260 1270 1280 1290 1300 1311 1321 1331 1342 1352 1363 1374 1385 1396 1407 1418 1429 1440 1452 1463 1474 1486 1498 1510 1522 1534 1546 1558 1570 1582 1595 1607 1620 1633 1647 1661 1675 1702 1730 1759 1788 1818 1848 1878 1908 1939 1970 2001 2033 2066 2099 2132 2166 2200 2235 2270 2306 2343 2379 2417 2455 2493 2532 2572 2612 2653 2694 2736 2779 2822 2866 2910 2955 3001 3178 3423 4678 5410 5045 5242 5045 5465 5528 5989 6480 6599 6278 6805 7178 7306 6898 7852 7846 7555 7785 7354 8648 9508 10522 11920 11575 13210 16718 16614 13478 12681 10779 10666 10711 11057 13010 13153 11519 11212 3921 5048 6379 6420 6353 6834 8027 10490 11958 11764 11684 10567 6873 10311 10489 11271 11157 11616 11992 12330 13248 14545 15368 14018 14646 +Ireland 1447 1447 1447 1448 1448 1448 1448 1449 1449 1449 1449 1449 1450 1450 1450 1450 1450 1451 1451 1451 1451 1472 1493 1515 1536 1558 1581 1603 1626 1650 1673 1697 1722 1746 1772 1797 1823 1849 1875 1902 1930 1957 1985 2014 2043 1709 1430 1625 1430 1394 1800 2091 2289 2322 2355 2389 2423 2458 2493 2529 2565 2602 2639 2677 2716 2755 2794 2834 2875 2916 2958 2988 3019 3050 3081 3113 3145 3177 3210 3243 3276 3309 3343 3378 3412 3447 3483 3518 3555 3591 3628 3665 3703 3741 3779 3818 3857 3897 3937 3977 4018 4059 4101 4143 4185 4228 4272 4316 4360 4405 4450 4499 4549 4599 4559 4519 4479 4440 4402 4363 4325 4295 4418 4389 4391 4409 4417 4569 4725 4886 5025 5166 5027 4891 5045 5203 5367 5210 5390 5401 5412 5423 5434 5444 5455 5407 5476 5559 5818 6142 6241 6417 6607 6808 6905 7147 7116 7159 7089 7409 7869 8297 8544 8899 9215 9350 9416 9933 10722 11331 11551 11850 12440 12834 13176 13703 13691 14631 15499 15734 16078 16425 16640 16502 17116 17606 17546 18385 19420 20665 22468 22770 23371 23881 25156 27439 29695 32568 34985 38122 41198 42686 44423 44998 46205 47775 49048 50001 47713 44222 43860 44913 44673 44640 46633 47758 +Israel 879 880 880 880 880 880 880 880 881 881 881 881 881 881 881 881 882 882 882 882 882 882 882 882 883 883 883 883 883 883 883 884 884 884 884 884 884 884 884 885 885 885 885 885 885 885 886 886 886 886 886 886 886 886 887 887 887 887 887 887 887 887 888 888 888 888 888 888 888 889 889 894 899 904 909 914 919 924 929 934 940 945 950 956 961 966 972 977 983 988 994 999 1005 1010 1016 1022 1028 1033 1039 1045 1051 1057 1063 1069 1074 1081 1087 1093 1099 1105 1111 1117 1124 1130 1077 1026 978 932 965 998 1032 1067 1102 1049 1316 1405 1193 1316 1434 1641 1961 2218 2531 3007 3351 3195 2642 2330 2131 2045 2064 2334 2765 2873 2947 3031 3304 3448 3612 3782 3961 4435 4247 4075 4718 5167 5382 5557 5712 6249 6464 6915 7279 7719 8152 8630 8504 8535 9634 10562 11062 11878 12903 13110 13606 13751 13626 13324 13656 14159 14768 15245 15265 15501 15310 15542 16015 16871 16906 16743 17152 17394 17749 18244 19010 22550 23240 23544 24009 24263 25739 25167 24650 24470 25256 25891 26908 28091 28562 28419 29509 30183 30518 30927 31180 31590 +Italy 2225 2197 2268 2333 2433 2355 2412 2419 2555 2570 2371 2293 2343 2407 2436 2330 2294 2316 2495 2474 2474 2432 2460 2482 2547 2512 2583 2541 2513 2506 2471 2557 2578 2593 2615 2687 2494 2430 2466 2445 2524 2575 2597 2468 2469 2490 2469 2412 2477 2463 2435 2435 2400 2350 2193 2215 2222 2402 2495 2417 2403 2389 2461 2511 2469 2598 2419 2441 2456 2521 2643 2629 2587 2587 2767 2710 2610 2646 2783 2776 2849 2928 2993 3030 2937 3024 3168 3212 3176 3061 3141 3221 3200 3279 3294 3331 3367 3389 3404 3448 3528 3593 3673 3768 3884 4007 4116 4247 4305 4378 4386 4421 4557 4720 5135 5152 5723 6091 6694 5796 5181 5218 5431 5435 5363 5580 5548 5551 5839 5967 5608 5633 5816 5741 5760 6186 6300 6530 6519 6875 6619 6434 6403 6014 5087 3957 4940 5610 5906 6050 6381 6736 7023 7421 7710 8117 8420 8816 9182 9686 10276 10973 11555 12094 12343 12599 13279 13997 14929 15735 16450 16680 17160 18390 19085 18469 19699 20050 20882 22146 22861 23113 23385 23664 24842 25646 26242 27304 28879 30152 30746 31198 31437 31149 31813 32731 33143 33733 34269 34798 36073 36692 36729 36622 36962 37130 37761 38125 37475 35260 35753 35901 34813 33827 33078 33297 +Jamaica 1170 1171 1171 1171 1171 1171 1171 1172 1172 1172 1172 1172 1172 1173 1173 1173 1173 1173 1173 1174 1174 1164 1155 1145 1136 1126 1117 1108 1098 1089 1080 1071 1063 1054 1045 1036 1028 1019 1011 1003 994 986 978 970 962 954 946 938 930 923 915 914 914 913 913 912 911 911 910 910 909 908 908 907 907 906 905 905 904 904 903 906 909 911 914 917 920 923 926 929 932 935 937 940 943 946 949 952 955 958 961 964 967 970 973 976 979 982 986 989 992 995 998 1001 1004 1007 1010 1014 1017 1020 1023 1032 1041 1050 1076 1103 1130 1158 1186 1215 1245 1277 1309 1343 1376 1410 1445 1481 1517 1554 1591 1629 1667 1706 1746 1787 1828 1870 1912 1918 1923 1928 1933 2297 2597 2937 3321 3052 2928 2808 2693 2872 3064 3449 3795 4132 4483 5057 5041 5214 5447 5549 5591 5663 5965 6304 6424 6522 6734 7132 7880 7769 7862 8398 7929 7782 7196 6952 6912 6688 6243 6310 6268 6375 6288 5969 6041 6481 6641 7056 7391 7697 7792 8463 8514 8644 8531 8354 8086 8115 8139 8197 8349 8500 8651 8803 8954 9047 8951 8526 8370 8485 8521 8607 8462 8606 +Japan 1050 1051 1053 1054 1056 1057 1059 1060 1061 1063 1064 1066 1067 1069 1070 1072 1073 1075 1076 1078 1079 1081 1082 1084 1085 1087 1088 1090 1091 1093 1094 1096 1097 1099 1100 1102 1104 1105 1107 1108 1110 1111 1113 1114 1116 1117 1119 1120 1122 1124 1125 1129 1134 1138 1142 1146 1151 1155 1159 1164 1168 1172 1177 1181 1186 1190 1195 1199 1204 1208 1213 1218 1223 1229 1235 1320 1277 1304 1287 1352 1395 1338 1359 1346 1341 1378 1465 1519 1433 1483 1606 1516 1602 1592 1765 1768 1651 1665 1955 1786 1840 1879 1755 1850 1840 1788 2002 2042 2028 1997 1998 2069 2104 2100 2001 2148 2438 2481 2476 2701 2496 2723 2668 2623 2648 2705 2673 2657 2817 2851 2592 2561 2722 2932 2885 2903 3065 3154 3329 3818 3888 3877 3796 3792 3567 1802 1930 2055 2297 2392 2549 2728 3015 3168 3280 3464 3646 3843 3996 4288 4756 5276 5686 6106 6741 7048 7724 8454 9439 10548 14203 14673 15694 16731 16320 16632 17117 17705 18484 19346 19741 20413 20951 21446 22268 23554 24116 25018 26724 28077 29550 30437 30610 30587 30746 31224 31958 32391 31656 31535 32193 32230 32248 32721 33483 33916 34468 35183 34800 32880 34404 34316 34988 35614 35635 36162 +Jordan 976 976 977 977 977 977 977 977 977 978 978 978 978 978 978 978 979 979 979 979 979 983 987 991 995 999 1003 1008 1012 1016 1020 1024 1028 1033 1037 1041 1045 1050 1054 1058 1062 1067 1071 1076 1080 1084 1089 1093 1098 1102 1107 1111 1116 1120 1125 1130 1134 1139 1143 1148 1153 1158 1162 1167 1172 1177 1181 1186 1191 1196 1201 1210 1220 1229 1239 1249 1259 1269 1279 1289 1299 1309 1319 1330 1340 1351 1362 1372 1383 1394 1405 1416 1427 1438 1450 1461 1473 1484 1496 1508 1520 1532 1544 1556 1568 1581 1593 1606 1618 1631 1644 1660 1676 1693 1720 1747 1775 1803 1831 1861 1890 1922 1955 1988 2022 2056 2090 2125 2160 2196 2232 2269 2306 2343 2381 2420 2459 2498 2538 2579 2620 2661 2703 2745 2788 2832 2876 2920 2965 3010 3056 3120 3180 3241 3301 3005 3961 3900 4119 4247 4330 4994 4876 4935 5556 5937 5855 5711 4994 5182 4478 4421 4401 4462 4681 4824 5781 5941 6939 7313 8357 8397 8657 8493 8884 8859 9318 9244 8844 7637 7057 6426 7242 7242 7312 7516 7443 7481 7503 7566 7695 7903 8160 8292 8788 9293 9818 10386 10897 11243 11256 11292 11340 11405 11496 11752 +Kazakhstan 1140 1141 1142 1144 1145 1147 1148 1149 1151 1152 1153 1155 1156 1158 1159 1160 1162 1163 1164 1166 1167 1175 1182 1190 1198 1206 1213 1221 1229 1237 1245 1253 1261 1269 1278 1286 1294 1303 1311 1320 1328 1337 1345 1354 1363 1372 1381 1390 1399 1408 1417 1426 1435 1445 1454 1463 1473 1482 1492 1502 1511 1521 1531 1541 1551 1561 1571 1581 1592 1602 1612 1623 1633 1644 1655 1665 1676 1687 1698 1709 1720 1731 1742 1754 1765 1776 1708 1997 1922 1787 1780 1631 1786 2024 2301 2130 2346 2307 2369 2514 2461 2522 2741 2553 2823 2499 2389 2296 2508 2604 2779 2568 2775 2915 2784 2866 2549 2238 1370 1182 1187 1087 1263 1455 1845 2307 2592 2702 2844 2879 3011 3040 2995 3110 3397 3887 4154 4502 4492 4677 4485 4404 4324 4245 4168 4092 4018 4467 5050 5519 5982 5910 6189 6353 6554 6994 7533 7558 7988 7763 8353 8680 8775 8450 9418 9836 10202 10546 11059 11115 11864 12067 12021 12914 13052 12857 13224 13301 13402 13115 12914 12816 12913 13100 13032 12922 13222 13166 13225 13242 12729 11258 10669 9751 8647 8079 8243 8517 8500 8813 9706 11035 12116 13198 14365 15619 17109 18419 18797 18527 19601 20772 21506 22470 23092 23468 +Kenya 854 856 859 862 864 867 870 872 875 878 881 883 886 889 892 895 897 900 903 906 909 912 914 917 920 923 926 929 932 935 938 941 943 946 949 952 955 958 961 964 967 970 973 977 980 983 986 989 992 995 998 1001 1004 1008 1011 1014 1017 1020 1023 1027 1030 1033 1036 1040 1043 1046 1049 1053 1056 1059 1063 1066 1069 1073 1076 1079 1083 1086 1090 1093 1096 1100 1103 1107 1110 1114 1117 1121 1124 1128 1131 1135 1138 1142 1145 1149 1153 1156 1160 1163 1167 1177 1187 1197 1207 1218 1228 1239 1249 1260 1271 1281 1292 1303 1314 1326 1337 1348 1360 1371 1383 1395 1407 1420 1432 1444 1457 1469 1482 1495 1508 1521 1534 1547 1561 1574 1588 1601 1615 1629 1643 1657 1672 1686 1700 1715 1730 1745 1760 1775 1790 2046 1877 1745 1838 1892 1934 1963 1913 1797 1887 1765 1852 1872 1922 1952 2114 2133 2064 2124 1948 2002 2029 2059 2082 2000 2004 2109 2214 2212 2249 2246 2242 2188 2144 2155 2226 2275 2332 2359 2376 2332 2239 2177 2168 2199 2227 2179 2194 2187 2143 2166 2120 2124 2173 2240 2319 2416 2358 2371 2503 2585 2631 2706 2776 2898 +Kiribati 551 551 552 552 553 553 554 554 555 555 556 556 557 557 558 558 559 559 560 560 561 561 562 562 563 563 564 564 565 565 566 566 567 567 568 568 569 569 570 570 571 571 572 572 573 573 574 574 575 575 576 576 577 577 578 578 579 579 580 580 581 581 582 582 583 583 584 584 585 586 586 587 587 588 588 589 589 590 590 591 591 592 592 593 593 594 594 595 595 596 596 597 597 598 599 599 600 600 601 601 602 602 603 603 604 604 605 605 606 606 607 608 608 609 626 644 663 682 702 722 743 764 787 810 834 858 883 909 936 963 991 1021 1050 1081 1113 1145 1179 1213 1249 1285 1323 1362 1402 1443 1485 1528 1573 1619 1666 1715 1765 1816 1869 1924 1980 2038 2097 2158 2221 2286 2353 2422 2492 2565 2639 2716 2796 2877 2961 3047 3136 2998 3295 3913 5582 5764 4131 3850 3798 3275 1774 1669 1792 1574 1651 1531 1510 1421 1633 1455 1453 1365 1388 1418 1468 1434 1500 1559 1702 1676 1804 1785 1763 1801 1826 1792 1683 1782 1803 1765 1729 1750 1772 1796 1822 1824 +Kuwait 1097 1101 1105 1110 1114 1118 1122 1126 1131 1135 1139 1143 1148 1152 1156 1161 1165 1169 1174 1178 1182 1187 1191 1196 1200 1205 1209 1214 1218 1223 1228 1232 1237 1241 1246 1251 1255 1260 1265 1270 1274 1279 1284 1289 1293 1298 1303 1308 1313 1318 1323 1328 1333 1338 1343 1348 1353 1358 1363 1368 1373 1378 1384 1389 1394 1399 1404 1410 1415 1420 1426 1446 1467 1489 1511 1533 1555 1578 1601 1624 1648 1672 1696 1721 1746 1771 1797 1823 1850 1877 1904 1932 1960 1989 2018 2047 2077 2107 2138 2169 2201 2233 2266 2299 2332 2366 2401 2436 2471 2507 2544 2581 2618 2657 2586 2517 2449 2384 2320 2337 2353 2368 2346 2324 2302 2281 2259 2238 2217 2034 1867 1713 1572 1443 1456 1469 1483 1496 1510 1524 1538 1552 1566 1581 1595 1610 1625 2091 2692 3466 4462 5745 7395 9521 10545 11679 12935 14325 15866 17572 19461 21554 23871 26437 29279 32427 35912 39772 44047 48781 54023 63583 62371 59388 115159 91796 92442 87987 81146 109863 108146 85525 67708 65168 63619 58143 42858 47974 40807 46363 37521 18820 50924 69683 75577 82268 82811 82227 80971 75316 75219 72922 72630 82466 88010 92665 94642 94915 91966 81025 75365 79102 81080 79395 83394 82633 +Latvia 751 752 753 754 754 755 756 757 758 759 760 761 762 763 763 764 765 766 767 768 769 774 779 784 789 794 799 805 810 815 820 826 831 836 842 847 853 858 864 869 875 881 886 892 898 904 910 915 921 927 933 939 946 952 958 964 970 977 983 989 996 1002 1009 1015 1022 1028 1035 1042 1049 1055 1062 1069 1076 1083 1090 1097 1104 1111 1118 1126 1133 1140 1148 1155 1163 1170 1125 1316 1266 1177 1173 1074 1176 1333 1516 1403 1546 1520 1561 1656 1621 1662 1806 1682 1860 1646 1574 1512 1652 1715 1831 1692 1828 1921 1834 1888 1679 1474 1180 1085 1411 1623 1867 1999 2033 2129 2187 2339 2477 2486 2440 2363 2335 2475 2738 2834 3005 3154 3291 3125 2954 2899 2845 2792 2740 2689 2639 2932 3313 3619 3921 3872 4053 4158 4288 4574 4924 4938 5217 5068 5450 5661 5720 5506 6134 6403 6639 6859 7190 7222 7706 7834 7801 8376 8712 9235 9629 9810 10003 10481 10844 11237 11434 11957 12572 12448 12959 13182 13770 14466 13383 11735 8057 7792 8081 8110 8408 9238 9912 10208 10859 11787 12782 14020 15437 17192 19367 21438 20977 18300 18148 19405 20597 21699 22460 23282 +Lebanon 1081 1082 1083 1084 1085 1086 1087 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1098 1099 1107 1115 1122 1130 1138 1145 1153 1161 1169 1177 1185 1193 1202 1210 1218 1226 1235 1243 1252 1260 1269 1278 1287 1295 1304 1313 1322 1331 1340 1350 1359 1368 1378 1387 1397 1406 1416 1425 1435 1445 1455 1465 1475 1485 1495 1506 1516 1526 1537 1547 1563 1579 1594 1610 1627 1643 1659 1676 1693 1710 1727 1744 1762 1779 1797 1815 1834 1852 1870 1889 1908 1927 1947 1966 1986 2006 2026 2046 2067 2088 2108 2130 2151 2173 2194 2216 2239 2261 2284 2307 2342 2377 2414 2334 2258 2184 2112 2213 2319 2430 2612 2805 2934 3067 3203 3342 3484 3630 3779 3932 4088 4248 4412 4579 4751 4926 5106 5289 5477 5669 5865 6066 6271 6481 6696 6915 7140 7369 7603 7842 6946 7284 8274 9368 9980 9610 9638 8150 8710 8805 9242 9446 9370 9767 10545 11047 10320 11391 11422 11978 12871 14207 14597 14773 10242 4303 7403 7589 8585 9098 9165 5811 7026 10182 12739 12021 14077 10186 5891 7734 10497 10699 11136 11729 12254 12726 12347 12703 12475 12335 12356 12199 11998 12348 12258 12171 13122 14158 15393 16263 16431 16633 16623 16794 17050 +Lesotho 393 393 394 394 394 394 394 395 395 395 395 396 396 396 396 396 397 397 397 397 398 398 398 398 398 399 399 399 399 400 400 400 400 400 401 401 401 401 402 402 402 402 402 403 403 403 403 404 404 404 404 405 405 405 405 405 406 406 406 406 407 407 407 407 407 408 408 408 408 409 409 409 409 410 410 410 410 410 411 411 411 411 412 412 412 412 413 413 413 413 413 414 414 414 414 415 415 415 415 416 416 416 416 416 417 417 417 417 418 418 418 418 419 419 419 419 420 420 420 420 420 421 421 421 421 421 421 421 422 422 422 422 422 422 422 423 423 423 423 423 423 423 423 423 424 424 424 424 424 424 424 442 448 458 476 483 493 503 513 518 546 541 613 669 711 708 707 767 748 741 742 659 768 949 984 882 1002 1149 1339 1162 1100 1081 1090 1079 1101 1113 1144 1124 1202 1248 1301 1326 1395 1413 1461 1466 1520 1563 1572 1563 1629 1684 1680 1747 1775 1810 1873 1947 2041 2091 2235 2301 2390 2473 2494 2598 +Liberia 797 797 797 797 797 797 798 798 798 798 798 798 798 798 799 799 799 799 799 799 799 801 804 806 808 810 812 814 817 819 821 823 825 828 830 832 834 837 839 841 843 846 848 850 852 855 857 859 862 864 866 869 871 873 876 878 880 883 885 887 890 892 895 897 899 902 904 907 909 912 914 916 919 921 924 926 929 931 934 936 939 941 944 946 949 951 954 957 959 962 964 967 970 972 975 977 980 983 985 988 991 993 996 999 1001 1004 1007 1009 1012 1015 1017 1020 1023 1026 1028 1031 1034 1037 1039 1042 1045 1042 1039 1036 1033 1030 1027 1024 1032 1040 1048 1056 1064 1073 1081 1089 1098 1106 1114 1123 1131 1139 1148 1156 1165 1173 1181 1190 1198 1207 1215 1247 1247 1257 1287 1288 1294 1301 1295 1326 1323 1310 1282 1268 1287 1298 1348 1386 1399 1446 1486 1507 1507 1510 1505 1394 1408 1370 1397 1408 1268 1168 1138 1055 1015 971 947 959 988 1020 503 439 290 197 153 142 151 289 346 397 473 557 718 474 441 470 499 555 588 643 689 729 782 875 934 958 +Libya 1050 1050 1050 1050 1050 1051 1051 1051 1051 1051 1051 1051 1052 1052 1052 1052 1052 1052 1053 1053 1053 1066 1079 1092 1106 1119 1133 1147 1161 1176 1190 1205 1220 1235 1250 1265 1281 1297 1313 1329 1345 1362 1379 1396 1413 1430 1448 1466 1484 1502 1521 1539 1558 1578 1597 1617 1637 1657 1677 1698 1719 1740 1762 1783 1805 1828 1850 1873 1896 1919 1943 1967 1991 2016 2041 2066 2091 2117 2143 2170 2196 2223 2251 2279 2307 2335 2364 2393 2423 2453 2483 2513 2544 2576 2607 2640 2672 2705 2738 2772 2806 2841 2876 2911 2947 2984 3021 3058 3095 3134 3172 3211 3251 3291 3332 3373 3414 3456 3499 3542 3586 3631 3676 3723 3769 3817 3864 3913 3962 4011 4062 4113 4164 4216 4269 4322 4376 4431 4486 4542 4599 4656 4714 4773 4833 4893 4954 5015 5078 5141 5205 5671 5965 5936 5783 7113 8467 8625 9271 9764 12271 13113 16919 22194 30463 37902 43467 47050 60948 66299 67491 61707 52706 50828 41433 42903 51382 55104 56017 61213 59420 45426 44043 40280 35408 35825 30572 25010 23850 24458 26928 30431 28944 27251 27202 23363 23533 22977 22502 22235 22682 21933 21390 23808 24489 26967 28256 29553 29853 29182 30261 11358 23032 19760 14887 17261 +Lithuania 1270 1271 1273 1274 1276 1277 1279 1280 1282 1284 1285 1287 1288 1290 1291 1293 1294 1296 1297 1299 1300 1309 1317 1326 1334 1343 1352 1361 1369 1378 1387 1396 1405 1414 1424 1433 1442 1451 1461 1470 1480 1489 1499 1509 1519 1528 1538 1548 1558 1568 1579 1589 1599 1610 1620 1630 1641 1652 1662 1673 1684 1695 1706 1717 1728 1739 1751 1762 1773 1785 1796 1808 1820 1832 1843 1855 1867 1879 1892 1904 1916 1929 1941 1954 1966 1979 1903 2225 2141 1991 1983 1817 1989 2255 2564 2373 2614 2571 2639 2801 2741 2810 3054 2844 3145 2784 2662 2558 2794 2901 3096 2861 3092 3248 3102 3193 2839 2493 1995 1836 2387 2748 3163 3388 3449 3614 3717 3978 4215 4235 4159 4030 3986 4227 4681 4849 5145 5405 5644 5363 5073 4982 4893 4806 4720 4636 4553 5063 5726 6259 6786 6707 7025 7213 7444 7946 8561 8591 9083 8831 9503 9879 9989 9623 10728 11208 11628 12024 12613 12679 13539 13774 13725 14749 15047 14961 15533 15770 16039 15843 15747 15774 16042 16428 16497 16510 17052 17140 17378 17564 17041 16038 12629 10615 9599 10115 10606 11360 12200 12002 12484 13314 14268 15709 16913 18256 19923 22396 23223 20003 20758 22530 23711 24732 25708 26665 +Luxembourg 1453 1453 1453 1453 1454 1454 1454 1454 1454 1455 1455 1455 1455 1455 1456 1456 1456 1456 1457 1457 1457 1474 1492 1510 1528 1546 1564 1583 1601 1621 1640 1659 1679 1699 1719 1740 1760 1781 1802 1824 1846 1867 1890 1912 1935 1958 1981 2005 2029 2053 2077 2102 2127 2152 2178 2204 2230 2256 2283 2310 2338 2365 2394 2422 2451 2480 2509 2539 2570 2600 2631 2662 2694 2726 2758 2791 2824 2858 2892 2926 2961 2996 3032 3068 3104 3141 3179 3216 3255 3293 3333 3372 3412 3453 3494 3535 3577 3620 3663 3707 3751 3795 3840 3886 3932 3979 4026 4074 4122 4171 4221 4271 4322 4373 4546 4725 4911 5104 5305 5514 5731 5963 6204 6455 6716 6988 7270 7564 7870 8188 8519 8863 9221 9594 9981 10384 10803 11240 11693 12165 12656 13167 13698 14250 14825 15423 16045 16692 17365 18065 18793 17504 18535 19082 18757 19501 20392 21516 21591 21558 22285 23005 23148 23269 25235 25359 25371 25163 26273 29081 29363 29877 31508 33777 34948 32351 32993 33506 34756 35697 35908 35680 36047 37142 39480 40621 44557 46150 50010 54556 56922 61019 61310 63033 64557 64568 64660 67646 71147 76102 81425 82071 83876 83849 86738 88944 91810 96245 95001 88284 91147 91469 89153 88850 88203 88314 +Macedonia, FYR 690 690 690 690 690 691 691 691 691 691 691 691 691 691 691 692 692 692 692 692 692 698 703 709 715 721 727 733 739 745 751 757 763 770 776 782 789 795 802 808 815 822 828 835 842 849 856 863 870 877 884 888 891 895 898 902 905 909 912 916 919 923 927 930 934 937 941 945 949 952 956 973 989 1007 1024 1042 1060 1078 1097 1116 1136 1155 1176 1196 1217 1238 1259 1281 1304 1326 1349 1359 1368 1378 1387 1397 1406 1416 1426 1436 1446 1469 1493 1517 1541 1566 1592 1617 1643 1670 1697 1697 1697 1697 1692 1686 1680 1675 1669 1663 1658 1675 1701 1766 1867 1933 2040 1979 2125 2207 2134 2042 1828 1860 1904 1851 2064 2071 2207 2299 2280 2261 2243 2225 2206 2188 2170 2153 2535 2750 2542 2610 2377 2697 2813 2955 2865 3315 3425 3812 4017 4159 4197 4592 4987 5075 5300 5347 5417 5978 6221 6881 7057 7235 8100 8033 8207 8727 9133 9682 10094 10216 10229 10264 10471 10505 10885 10717 10524 10350 9563 8995 8454 7878 7779 7700 7759 7805 7983 8242 8543 8229 8314 8473 8848 9247 9704 10319 10872 10824 11179 11431 11370 11664 12096 12547 +Madagascar 573 573 573 573 573 573 573 573 573 574 574 574 574 574 574 574 574 574 574 574 574 577 580 583 586 589 591 594 597 600 603 606 609 612 615 618 621 624 627 630 633 636 639 642 645 648 651 654 658 661 664 667 670 674 677 680 683 687 690 693 697 700 704 707 710 714 717 721 724 728 731 735 738 742 746 749 753 756 760 764 767 771 775 779 782 786 790 794 798 801 805 809 813 817 821 825 829 833 837 841 845 849 853 858 862 866 870 874 878 883 887 891 896 900 918 936 955 974 993 1013 1033 1055 1077 1099 1122 1145 1169 1193 1218 1244 1269 1296 1323 1350 1378 1407 1436 1466 1496 1527 1559 1591 1624 1658 1692 1727 1763 1799 1837 1875 1913 1956 1999 2041 2083 2126 2169 2211 2254 2295 2284 2288 2296 2230 2273 2218 2218 2293 2398 2436 2509 2551 2463 2346 2339 2314 2187 2184 2074 2218 2177 1936 1850 1814 1700 1691 1657 1646 1626 1645 1661 1510 1482 1468 1422 1402 1388 1394 1404 1424 1446 1487 1259 1342 1371 1393 1421 1468 1528 1426 1390 1372 1374 1369 1371 1400 +Malawi 350 350 350 350 350 350 350 350 350 350 350 350 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 351 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 352 353 353 353 353 353 353 353 353 353 353 353 353 353 353 353 353 353 353 353 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 354 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 355 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 356 355 355 355 355 355 355 355 355 355 355 355 355 355 355 363 371 380 388 387 410 418 424 429 430 441 429 411 391 433 464 496 477 494 489 545 585 616 639 643 649 662 703 714 698 606 600 609 612 614 594 554 540 535 540 575 527 576 514 593 625 633 639 640 632 585 580 596 609 609 604 641 674 713 737 747 740 757 778 799 +Malaysia 997 997 998 998 998 998 998 998 998 999 999 999 999 999 999 1000 1000 1000 1000 1000 1000 1002 1004 1006 1008 1011 1013 1015 1017 1019 1021 1023 1025 1027 1029 1031 1033 1036 1038 1040 1042 1044 1046 1048 1050 1053 1055 1057 1059 1061 1063 1066 1068 1070 1072 1074 1076 1079 1081 1083 1085 1087 1090 1092 1094 1096 1099 1101 1103 1105 1108 1113 1118 1124 1129 1134 1140 1145 1151 1156 1162 1167 1173 1178 1184 1190 1195 1201 1207 1213 1218 1224 1230 1236 1242 1248 1254 1260 1266 1272 1278 1284 1290 1296 1303 1309 1315 1321 1328 1334 1340 1349 1387 1522 1559 1591 1694 1761 1654 1979 1902 1849 1988 1924 1844 2098 2308 2201 2453 2981 2908 2762 2500 2585 2773 2465 2679 2379 2482 2943 2344 2277 3084 2828 2593 2377 2179 1997 2218 2872 2933 2715 2780 2726 2827 2776 2868 2776 2702 2811 2937 3061 3152 3220 3338 3491 3578 3552 3774 3902 4051 4252 4468 5000 5255 5182 5699 6028 6414 6785 7183 7517 7779 8065 8488 8198 8101 8333 8860 9476 10159 10832 11491 12309 13107 14035 15051 15749 14231 14748 15695 15443 15950 16550 17342 17929 18582 19394 19968 19320 20398 21096 21920 22589 23579 24320 +Maldives 842 843 843 843 843 843 843 843 843 844 844 844 844 844 844 844 845 845 845 845 845 845 845 845 845 845 845 844 844 844 844 844 844 844 844 844 844 844 843 843 843 843 843 843 843 843 843 843 843 843 842 842 842 842 842 842 842 842 842 842 842 842 841 841 841 841 841 841 841 841 841 841 841 840 840 840 840 840 840 840 840 840 840 840 840 839 839 839 839 839 839 839 839 839 839 839 839 838 838 838 838 838 838 838 838 838 838 838 838 837 837 837 837 837 837 837 837 837 837 837 836 838 840 841 843 845 846 848 849 851 853 854 856 857 859 860 862 864 865 867 868 870 871 873 874 876 877 879 880 882 883 904 925 947 969 992 1016 1039 1064 1089 1114 1140 1167 1194 1222 1251 1280 1310 1341 1372 1404 1446 1449 1439 1486 1334 1309 1418 1584 1706 1968 2141 2020 2284 2817 3091 3279 3461 3648 3866 4363 4555 4699 4850 5037 5264 5602 6120 6564 6950 7134 7247 7540 8452 9511 8619 10157 11040 12029 11096 11674 12694 12637 13353 14095 14408 +Mali 603 603 603 603 603 603 603 603 603 603 603 604 604 604 604 604 604 604 604 604 604 605 605 605 605 605 606 606 606 606 606 607 607 607 607 607 608 608 608 608 608 609 609 609 609 609 610 610 610 610 611 611 611 611 611 612 612 612 612 612 613 613 613 613 613 614 614 614 614 614 615 615 615 615 615 616 616 616 616 616 617 617 617 617 618 618 618 618 618 619 619 619 619 619 620 620 620 620 620 621 621 621 621 621 622 622 622 622 623 623 623 623 623 624 624 624 624 624 625 625 625 626 627 628 628 629 630 631 632 632 633 634 635 636 636 637 638 639 640 640 641 642 643 644 644 645 646 647 648 648 649 660 672 684 695 707 719 732 744 757 764 754 744 779 799 795 811 821 834 813 844 855 880 839 801 891 990 1043 1003 1227 1068 1016 943 969 996 1001 1047 1048 1028 1113 1100 1095 1159 1106 1087 1126 1132 1178 1217 1265 1269 1382 1397 1456 1442 1483 1560 1576 1602 1622 1664 1658 1603 1589 1653 1684 +Malta 781 782 782 782 782 782 782 782 782 783 783 783 783 783 783 783 783 783 784 784 784 791 798 806 813 821 828 836 843 851 859 867 875 883 891 899 908 916 924 933 941 950 959 968 977 986 995 1004 1013 1022 1032 1041 1051 1061 1070 1080 1090 1100 1110 1120 1131 1141 1152 1162 1173 1184 1195 1206 1217 1228 1239 1251 1262 1274 1286 1297 1309 1321 1333 1346 1358 1371 1383 1396 1409 1422 1435 1448 1461 1475 1488 1502 1516 1530 1544 1558 1573 1587 1602 1616 1631 1646 1661 1677 1692 1708 1723 1739 1755 1771 1788 1804 1821 1838 1855 1872 1889 1906 1924 1941 1959 1978 1996 2014 2033 2052 2071 2090 2110 2129 2149 2169 2189 2209 2230 2250 2271 2292 2313 2334 2356 2378 2400 2422 2444 2466 2489 2512 2535 2558 2582 2605 2629 2653 2678 2702 2727 2752 2777 2803 2828 2860 2767 2773 2830 3015 3325 3541 3885 4121 4631 4780 5080 5574 6092 7201 8275 9040 9767 10563 11200 11566 11912 11996 12324 12888 13253 13660 14683 15750 16596 17459 18100 18732 19616 20720 21373 22344 23347 24330 25841 24685 25191 25059 24766 25510 25983 27001 27872 26888 27906 28178 28271 28822 29508 30265 +Mauritania 527 528 528 528 528 528 528 528 528 528 528 528 528 528 529 529 529 529 529 529 529 532 534 537 539 542 545 547 550 553 555 558 561 563 566 569 572 574 577 580 583 585 588 591 594 597 600 603 606 609 611 614 617 620 623 626 629 632 636 639 642 645 648 651 654 657 661 664 667 670 673 677 680 683 687 690 693 697 700 703 707 710 714 717 721 724 727 731 735 738 742 745 749 752 756 760 763 767 771 775 778 782 786 790 794 797 801 805 809 813 817 821 825 829 833 838 842 847 851 856 861 870 880 890 900 910 920 930 940 950 960 971 981 992 1002 1013 1024 1035 1046 1057 1068 1079 1090 1102 1113 1125 1137 1148 1160 1172 1184 1224 1264 1304 1345 1388 1431 1474 1516 1561 1672 1941 1882 1752 2254 2542 2531 2592 2791 2717 2964 2957 2958 2739 2981 2753 2932 2852 2797 2879 2942 2998 2881 2962 2692 2710 2800 2822 2861 2899 2800 2772 2745 2824 2660 2838 2916 2717 2711 2834 2738 2709 2646 2721 2792 2955 3413 3412 3356 3233 3299 3357 3470 3579 3718 3877 +Mauritius 940 940 940 940 941 941 941 941 941 941 941 942 942 942 942 942 942 942 943 943 943 947 952 957 961 966 970 975 980 985 989 994 999 1004 1009 1014 1018 1023 1028 1033 1038 1043 1048 1053 1059 1064 1069 1074 1079 1084 1090 1095 1100 1106 1111 1116 1122 1127 1133 1138 1144 1149 1155 1160 1166 1172 1177 1183 1189 1194 1200 1206 1212 1218 1224 1229 1235 1241 1247 1253 1259 1266 1272 1278 1284 1290 1296 1303 1309 1315 1322 1328 1335 1341 1348 1354 1361 1367 1374 1380 1387 1394 1401 1407 1414 1421 1428 1435 1442 1449 1456 1463 1470 1477 1495 1514 1532 1551 1571 1590 1610 1633 1657 1680 1705 1729 1754 1779 1805 1830 1857 1883 1910 1938 1965 1993 2022 2051 2080 2110 2140 2170 2201 2232 2264 2296 2329 2362 2395 2429 2464 2519 2512 2518 2579 2584 2596 2620 2621 2702 2800 3352 3288 3679 3334 3359 3168 3247 2973 3080 3023 3133 3408 3797 4155 4110 4720 4954 5061 5153 4560 4760 4965 4942 5132 5447 5944 6493 6883 7128 7568 7819 8219 8535 8764 9062 9471 9885 10375 10512 11349 11549 11711 12052 12665 12747 13188 13901 14615 15020 15599 16179 16651 17146 17731 18350 +Mexico 1379 1379 1379 1380 1380 1380 1380 1380 1381 1381 1381 1381 1381 1382 1382 1382 1382 1383 1383 1383 1383 1380 1377 1374 1371 1368 1365 1362 1359 1356 1353 1350 1347 1344 1341 1338 1335 1332 1329 1326 1323 1320 1317 1314 1311 1308 1305 1302 1300 1297 1294 1291 1288 1285 1282 1279 1277 1274 1271 1268 1265 1262 1260 1257 1254 1251 1248 1246 1243 1240 1237 1263 1289 1316 1343 1370 1399 1428 1457 1487 1518 1549 1581 1614 1647 1681 1716 1751 1787 1824 1862 1905 1948 1993 2039 2086 2120 2230 2326 2179 2164 2327 2136 2352 2368 2589 2532 2653 2621 2670 2665 2560 2541 2389 2395 2362 2546 2657 2762 2874 3059 3054 3081 3143 3046 3191 3337 3142 3115 2949 2721 2768 2311 2536 2667 2823 3004 3055 3056 3172 3165 3391 3492 3530 3725 3744 3892 3923 3981 4094 4392 4601 4647 4522 4840 5107 5305 5549 5678 5679 5970 6082 6181 6486 7045 7283 7559 7795 8183 8441 8757 8810 9253 9694 9960 10234 10391 10456 11118 11912 12716 13501 13126 12384 12546 12562 11923 11894 11817 12079 12479 12738 12925 13172 13516 12491 12979 13634 14033 14177 14704 14411 14243 14268 14700 14961 15516 15805 15826 14893 15460 15887 16320 16346 16496 16850 +Micronesia, Fed. Sts. 518 518 518 519 519 519 520 520 520 521 521 521 522 522 522 523 523 523 524 524 524 525 525 525 526 526 526 527 527 527 528 528 528 529 529 529 530 530 530 530 531 531 531 532 532 532 533 533 533 534 534 534 535 535 535 536 536 536 537 537 537 538 538 538 539 539 539 540 540 540 541 541 542 542 542 543 543 543 544 544 544 545 545 545 546 546 546 547 547 547 548 548 548 549 549 549 550 550 550 551 551 551 552 552 552 553 553 553 554 554 554 555 555 555 567 578 589 601 613 625 638 651 664 677 691 705 720 734 749 764 780 796 812 828 845 862 880 898 916 935 954 973 993 1013 1033 1054 1076 1097 1120 1142 1165 1189 1213 1238 1263 1288 1314 1341 1368 1395 1424 1452 1482 1512 1542 1573 1605 1637 1670 1704 1738 1760 1774 2377 2735 2709 2667 2662 2726 2692 2417 2565 2418 2392 2229 2529 2663 2656 2756 2715 2763 2894 2933 3094 3016 3185 3063 2873 2966 3018 3167 3230 3256 3320 3220 3301 3312 3262 3197 3243 3337 3412 3428 3286 3475 3510 +Moldova 621 621 621 621 621 621 622 622 622 622 622 622 622 622 622 622 622 623 623 623 623 626 630 633 637 640 643 647 650 654 658 661 665 668 672 676 679 683 687 690 694 698 702 706 709 713 717 721 725 729 733 737 741 745 749 753 757 761 765 770 774 778 782 787 791 795 799 804 808 813 817 821 826 830 835 839 844 849 853 858 862 867 872 877 881 886 851 994 956 888 883 809 884 1001 1137 1052 1157 1137 1166 1236 1209 1238 1344 1250 1381 1221 1166 1120 1222 1267 1351 1247 1346 1413 1348 1386 1231 1080 661 569 571 522 605 696 880 1099 1232 1282 1346 1360 1419 1430 1406 1457 1589 1814 1935 2092 2084 2165 2072 2030 1989 1949 1910 1872 1834 2035 2296 2504 2708 2670 2791 2859 2943 3134 3369 3373 3558 3451 3706 3847 3885 3738 4162 4342 4499 4646 4868 4887 5212 5295 5270 5656 5765 5727 5941 6027 6124 6044 6002 6008 6104 6246 6266 6266 6466 6494 6578 6643 6440 5395 3822 3780 2620 2596 2466 2515 2353 2276 2329 2476 2676 2860 3080 3318 3487 3603 3890 3661 3925 4179 4151 4542 4754 4896 +Mongolia 592 592 592 592 592 593 593 593 593 593 593 593 593 593 593 593 593 594 594 594 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 640 641 642 643 644 645 646 647 648 649 650 652 653 654 655 656 657 658 659 660 661 663 664 665 666 667 668 669 670 672 673 674 675 676 677 678 680 681 682 683 684 685 686 688 689 690 691 692 693 695 696 697 698 699 700 702 703 708 713 718 723 728 733 738 743 748 753 759 764 769 774 779 784 789 795 800 805 810 816 821 826 831 837 842 847 853 858 886 919 950 984 1018 1053 1091 1128 1167 1208 1249 1291 1337 1383 1431 1479 1532 1584 1637 1695 1731 1748 1854 1886 1949 1975 2121 2167 2211 2502 2223 2587 2911 3256 3188 3359 3573 3694 3609 5122 4606 4132 3966 4020 4244 4304 4435 4544 4643 4655 4748 4925 5216 5706 6047 6480 7046 7563 7357 7708 8905 9851 10833 11509 11819 +Montenegro 1057 1058 1058 1058 1058 1058 1058 1059 1059 1059 1059 1059 1059 1059 1060 1060 1060 1060 1060 1060 1061 1069 1078 1087 1096 1105 1114 1123 1132 1141 1151 1160 1170 1179 1189 1199 1209 1219 1229 1239 1249 1259 1269 1280 1290 1301 1312 1322 1333 1344 1355 1360 1366 1371 1376 1382 1387 1393 1398 1403 1409 1414 1420 1426 1431 1437 1442 1448 1454 1459 1465 1490 1516 1543 1569 1597 1625 1653 1681 1711 1740 1771 1801 1833 1865 1897 1930 1964 1998 2032 2068 2082 2097 2111 2126 2140 2155 2170 2185 2200 2216 2251 2288 2325 2362 2400 2439 2478 2518 2559 2600 2601 2601 2601 2593 2584 2575 2566 2558 2549 2541 2571 2615 2718 2878 2984 3154 3065 3295 3427 3320 3181 2852 2906 2979 2900 3239 3254 3473 3622 3598 3573 3549 3525 3501 3477 3454 3430 4046 4394 4068 4182 3814 4334 4526 4761 4622 5356 5541 6176 6517 6756 6828 7479 8135 8288 8667 8756 8882 9816 10228 11328 11634 11943 13388 13294 13601 14481 15175 16108 16814 17041 17085 17165 17534 17613 18274 18015 17714 17442 16136 14269 10808 6780 6788 7635 9559 9978 10482 9506 9803 9871 10019 10228 10659 11090 12025 13288 14183 13352 13656 14082 13712 14156 14358 14833 +Morocco 715 715 715 715 715 715 715 716 716 716 716 716 716 716 716 716 716 717 717 717 717 718 719 721 722 723 724 726 727 728 730 731 732 733 735 736 737 739 740 741 742 744 745 746 748 749 750 752 753 754 755 757 758 759 761 762 763 765 766 767 769 770 771 773 774 775 777 778 780 781 782 784 785 786 788 789 791 792 793 795 796 797 799 800 802 803 804 806 807 809 810 811 813 814 816 817 819 820 821 823 824 826 827 829 830 832 833 834 836 837 839 843 848 853 873 893 914 935 957 980 1003 1029 1056 1084 1112 1141 1171 1201 1231 1262 1294 1327 1360 1394 1428 1463 1499 1535 1573 1610 1649 1688 1729 1769 1811 1853 1897 1941 1985 2031 2077 2088 2097 2115 2132 2148 2108 2067 2027 1987 1948 1971 1994 2017 2040 2064 2130 2198 2267 2338 2411 2484 2492 2530 2616 2737 2979 3066 3096 3176 3402 3250 3502 3392 3443 3566 3750 3576 3849 3845 3901 4119 3930 3825 4197 3870 4325 4177 4448 4414 4430 4710 4815 5067 5259 5363 5725 5825 6091 6313 6466 6698 6777 6967 7040 7319 +Mozambique 390 391 391 391 391 392 392 392 392 392 393 393 393 393 394 394 394 394 395 395 395 395 395 396 396 396 396 397 397 397 397 398 398 398 398 398 399 399 399 399 400 400 400 400 401 401 401 401 401 402 402 402 402 403 403 403 403 404 404 404 404 405 405 405 405 405 406 406 406 406 407 407 407 407 408 408 408 408 409 409 409 409 410 410 410 410 410 411 411 411 411 412 412 412 412 413 413 413 413 414 414 414 414 415 415 415 415 415 416 416 416 416 417 417 417 417 418 418 418 418 419 420 420 421 422 423 424 425 426 427 427 428 429 430 431 432 433 434 434 435 436 437 438 439 440 440 441 442 443 444 445 454 464 473 476 497 492 494 508 526 528 533 559 528 540 542 548 573 623 682 703 734 738 759 683 570 527 515 504 496 499 498 477 437 420 379 383 405 441 461 462 473 435 455 468 465 485 520 562 592 583 634 671 692 732 774 801 835 864 893 930 974 1017 1064 1115 1176 +Myanmar 840 840 840 840 841 841 841 841 841 841 841 841 842 842 842 842 842 842 842 842 843 843 843 843 843 843 843 843 844 844 844 844 844 844 844 844 845 845 845 845 845 845 845 845 846 846 846 846 846 846 846 846 847 847 847 847 847 847 847 847 848 848 848 848 848 848 848 848 849 849 849 858 867 877 886 895 905 915 925 935 945 955 965 975 986 997 1007 1018 1029 1040 1051 1063 1074 1086 1097 1109 1121 1133 1145 1158 1170 1183 1134 1088 1043 1000 959 972 986 1000 1014 1033 1103 1178 1258 1344 1435 1400 1367 1334 1301 1275 1320 1368 1416 1466 1518 1561 1605 1650 1696 1743 1728 1714 1699 1684 1669 1577 1490 1422 1357 1295 1098 931 789 794 804 813 823 833 842 954 963 977 905 1011 1064 1112 1067 1215 1238 1250 1339 1356 1358 1371 1292 1306 1369 1401 1438 1458 1441 1409 1456 1490 1554 1620 1700 1751 1864 1935 2002 2050 2110 2131 2072 1956 1709 1749 1775 1741 1784 1809 1839 1868 1895 1919 1944 1998 2069 2129 2196 2276 2351 2339 2593 2846 2891 2979 3077 3181 3346 3526 3727 4012 +Namibia 540 540 540 540 540 541 541 541 541 541 541 541 541 541 541 541 541 542 542 542 542 550 558 567 575 584 593 601 610 620 629 638 648 658 668 678 688 698 709 719 730 741 752 764 775 787 799 811 823 835 848 860 873 887 900 913 927 941 955 970 984 999 1014 1029 1045 1060 1076 1092 1109 1126 1142 1160 1177 1195 1213 1231 1250 1268 1287 1307 1326 1346 1367 1387 1408 1429 1451 1472 1495 1517 1540 1563 1586 1610 1635 1659 1684 1709 1735 1761 1788 1814 1842 1869 1898 1926 1955 1984 2014 2045 2075 2106 2138 2170 2203 2236 2270 2304 2338 2374 2409 2447 2486 2525 2564 2605 2645 2687 2729 2772 2815 2860 2904 2950 2996 3043 3091 3139 3188 3238 3289 3340 3392 3445 3499 3554 3609 3665 3722 3781 3839 3871 3901 3960 4086 4121 4175 4233 4247 4384 4682 4618 5141 5516 6254 6509 6590 6165 6060 6112 5981 5972 6106 6136 6182 6022 6124 6337 6619 6703 6824 6933 6871 6491 6219 6069 6077 6072 5961 6120 5717 5970 6198 5921 5850 5900 5906 5971 5991 6035 6111 6076 6279 6470 7184 7279 7696 8095 8169 8090 8433 8715 8995 9275 9506 10040 +Nepal 654 654 654 654 655 655 655 655 655 655 655 655 655 655 655 656 656 656 656 656 656 656 656 656 656 657 657 657 657 657 657 657 657 657 657 658 658 658 658 658 658 658 658 658 658 658 659 659 659 659 659 659 659 659 659 659 660 660 660 660 660 660 660 660 660 660 660 661 661 661 661 666 670 675 680 685 690 695 700 705 711 716 721 726 732 737 742 748 753 759 764 770 775 781 787 792 798 804 810 816 822 828 834 840 846 852 858 864 871 877 883 890 897 903 902 900 898 897 895 893 892 889 886 883 881 878 875 872 869 867 864 861 858 856 853 850 847 844 842 839 836 833 831 828 825 822 819 817 814 811 808 822 840 881 889 896 925 914 954 968 976 984 991 997 1002 1007 1057 1020 1007 1031 1036 1002 1010 982 1019 1009 1027 1031 1049 1045 994 967 1059 1000 1068 1104 1120 1134 1190 1186 1240 1287 1306 1321 1393 1405 1443 1478 1487 1517 1577 1619 1591 1626 1675 1708 1741 1779 1866 1929 1999 2044 2118 2173 2265 2352 +Netherlands 4235 4161 4391 4297 4502 4238 4270 3914 3483 3430 3927 3966 3447 3097 2983 3945 3748 3778 3831 3645 3900 3815 3843 4028 3992 3883 3937 4163 4245 4244 3867 4149 4336 4231 4261 4241 4374 4470 4509 4499 4534 4571 4451 4365 4399 4359 4358 4380 4444 4568 4647 4706 4644 4531 4801 4661 4841 4748 4609 4436 4642 4506 4677 4757 4938 4939 5116 4932 4954 5107 5262 5220 5270 5370 5160 5449 5453 5510 5485 5208 5500 5524 5591 5931 5960 6012 6024 6094 6093 6223 5895 5833 5936 5797 6053 6003 6164 6225 6227 6224 6063 6260 6419 6309 6295 6509 6539 6325 6356 6602 6793 6923 7007 7229 7015 6627 6500 5738 5298 5877 6652 7729 8064 8063 8455 8562 8969 9211 9427 9427 9140 8640 8375 8257 8039 8135 8473 8842 8460 9039 7840 7327 6617 6398 4233 4281 7142 8093 8802 9284 9516 9593 9639 10340 10930 11566 11939 12151 11859 12256 13223 13448 13854 14148 15204 15834 16109 16824 17827 18892 19800 20555 21024 22010 22873 22849 23837 24436 25044 25473 25857 25704 25403 25919 26781 27544 28417 28937 29915 31240 32534 33066 33377 33562 34348 35244 36152 37414 38816 40306 41771 42130 41848 41761 42389 43243 44823 46605 47388 45590 45843 46388 45484 45021 45281 45784 +New Zealand 658 659 659 659 659 659 659 659 659 659 659 660 660 660 660 660 660 660 660 660 660 661 661 661 661 661 661 661 661 661 661 662 662 662 662 662 662 662 662 662 662 736 818 908 1009 1121 1246 1384 1538 1708 1898 2028 2166 2314 2472 2641 2821 3014 3220 3439 3674 3801 3932 4067 4208 4353 4503 4658 4818 4984 5156 5249 5862 6375 6397 6139 6032 6631 7113 5945 6241 6272 6075 5825 6172 5980 6005 6010 5928 6174 6265 6226 6343 6323 5975 6080 6659 6597 6656 6751 7181 7058 7418 7902 7641 8109 8625 8931 8088 7981 8896 9194 8719 8625 8688 8664 8575 8389 8227 8851 9453 8598 8122 8636 8638 8893 8248 7878 8654 8863 8359 7546 7300 7724 8052 8380 9872 10320 10936 10937 10673 10387 11465 11753 11657 11765 12166 13336 11782 12794 14391 13032 13281 13388 14907 14883 15358 15441 15688 16454 16179 16664 16646 17340 17837 18632 19467 18309 18082 19745 19200 19871 20349 21342 22131 21467 21749 20623 20707 21144 21259 22191 22436 22808 23698 23750 24180 24222 24060 24206 24021 22636 22651 23830 24716 25476 25984 26152 26077 27371 27963 28752 29637 30404 31098 31798 32281 32928 32122 31723 31824 32283 32806 33360 33538 34186 +Nicaragua 973 973 973 974 974 974 974 974 974 974 975 975 975 975 975 975 975 976 976 976 976 986 997 1008 1018 1029 1040 1051 1063 1074 1085 1097 1109 1120 1132 1144 1157 1169 1182 1194 1207 1220 1233 1246 1259 1273 1286 1300 1314 1328 1342 1356 1371 1385 1400 1415 1430 1446 1461 1477 1492 1508 1524 1541 1557 1574 1591 1607 1625 1642 1659 1677 1695 1713 1731 1750 1769 1788 1807 1826 1845 1865 1885 1905 1925 1946 1967 1988 2009 2030 2052 2074 2096 2118 2141 2164 2187 2210 2234 2258 2282 2306 2331 2356 2381 2406 2432 2458 2484 2511 2537 2564 2592 2619 2647 2676 2704 2733 2762 2792 2821 2928 2637 2820 2941 3246 2777 2788 3528 3882 3136 2889 2598 3220 2879 2844 2201 2323 2370 2832 3019 3261 3065 3282 3175 3118 3278 3184 3389 3228 3527 3651 4140 4110 4356 4503 4360 4580 4450 4373 4292 4466 4793 5143 5559 5892 5890 6097 5981 6173 6031 6120 6128 6249 6914 6680 6796 7137 6433 4575 4577 4658 4493 4593 4390 4112 3934 3808 3295 3159 3025 2948 2888 2807 2833 2934 3057 3117 3175 3342 3424 3474 3452 3493 3632 3740 3846 3998 4060 3896 3966 4154 4304 4432 4574 4712 +Niger 446 446 446 446 446 446 446 447 447 447 447 447 447 447 447 447 447 447 447 447 447 450 452 454 456 458 461 463 465 467 470 472 474 476 479 481 483 486 488 490 493 495 497 500 502 505 507 510 512 515 517 520 522 525 527 530 532 535 537 540 543 545 548 551 553 556 559 561 564 567 569 572 575 578 581 583 586 589 592 595 598 601 603 606 609 612 615 618 621 624 627 630 633 636 639 643 646 649 652 655 658 661 665 668 671 674 678 681 684 687 691 694 697 701 706 710 715 720 725 730 735 742 748 755 762 770 777 784 791 799 806 813 821 828 836 844 851 859 867 875 883 891 899 907 916 924 932 941 949 958 967 989 1011 1032 1054 1077 1099 1121 1144 1167 1220 1248 1355 1461 1437 1517 1469 1448 1432 1362 1376 1426 1325 1077 1148 1093 1077 1135 1260 1320 1353 1337 1291 1237 1004 997 1018 958 988 965 924 918 830 814 818 811 809 802 854 819 778 804 798 811 782 788 804 799 843 806 841 828 891 897 923 943 +Nigeria 851 853 854 856 857 859 860 862 864 865 867 868 870 871 873 874 876 878 879 881 882 886 890 894 898 903 907 911 915 919 923 928 932 936 940 945 949 953 958 962 966 971 975 980 984 989 993 998 1002 1007 1011 1016 1020 1025 1030 1034 1039 1044 1049 1053 1058 1063 1068 1073 1078 1083 1088 1093 1097 1102 1108 1113 1118 1123 1128 1133 1138 1143 1149 1154 1159 1164 1170 1175 1180 1186 1191 1197 1202 1207 1213 1218 1224 1230 1235 1241 1246 1252 1258 1264 1269 1275 1281 1287 1293 1299 1304 1310 1316 1322 1328 1334 1341 1347 1371 1396 1422 1448 1475 1502 1529 1559 1590 1621 1653 1685 1718 1752 1787 1822 1857 1894 1931 1969 2007 2046 2086 2127 2169 2211 2254 2298 2343 2389 2436 2483 2532 2581 2631 2683 2735 2843 2971 2981 3141 3106 2975 2975 3090 3151 3810 3551 3585 3788 3803 3524 3252 2666 2610 2988 3483 3889 3928 4042 4381 4044 4288 4415 4040 4192 4250 3598 3474 3221 3081 3258 2901 2526 2650 2753 3030 2936 2875 2863 2817 2740 2805 2813 2818 2761 2836 2888 2922 3144 4098 4130 4353 4528 4684 4874 5114 5217 5291 5423 5607 5727 +Norway 1278 1280 1282 1284 1286 1288 1290 1293 1295 1297 1299 1301 1303 1305 1307 1309 1311 1313 1315 1318 1320 1328 1336 1344 1353 1361 1369 1378 1386 1395 1403 1293 1313 1460 1528 1498 1457 1461 1467 1470 1604 1636 1647 1611 1643 1716 1748 1682 1592 1634 1675 1780 1764 1847 1900 1997 1959 1853 1922 1963 2033 1978 2151 2158 2240 2336 2361 2411 2402 2492 2483 2517 2671 2721 2805 2861 2906 2898 2765 2758 2827 2854 2859 2855 2897 2907 2908 2933 3066 3179 3251 3263 3311 3386 3382 3387 3443 3582 3566 3633 3643 3700 3732 3695 3695 3711 3856 4015 4121 4182 4332 4473 4655 4864 4919 5087 5239 4713 4481 5203 5483 4897 5376 5492 5466 5772 5834 6037 6290 6871 7369 6763 7066 7215 7441 7785 8282 8622 8780 9164 8349 8519 8151 7944 7475 8308 9069 10196 10804 11002 11452 11986 12316 12707 13247 13438 14054 14379 14285 14797 15542 16425 16793 17347 18118 18980 19588 20686 21022 21845 22186 23239 24308 25278 26252 27553 29117 30319 31348 32737 34346 34659 34704 35932 38057 40031 41450 42225 42101 42449 43296 44419 45742 46765 48850 50616 52892 55386 56502 57246 58699 59620 60152 60351 62370 63573 64573 65781 65216 63354 62946 62737 63620 63322 64020 64304 +Oman 915 916 916 916 916 916 916 916 917 917 917 917 917 917 917 918 918 918 918 918 918 922 926 930 934 937 941 945 949 953 957 961 965 969 973 977 981 985 989 994 998 1002 1006 1010 1014 1019 1023 1027 1031 1036 1040 1044 1049 1053 1057 1062 1066 1071 1075 1080 1084 1089 1093 1098 1102 1107 1112 1116 1121 1125 1130 1139 1148 1158 1167 1177 1186 1196 1205 1215 1225 1235 1245 1255 1265 1275 1285 1296 1306 1317 1327 1338 1349 1360 1371 1382 1393 1404 1416 1427 1439 1450 1462 1474 1486 1498 1510 1522 1534 1547 1559 1572 1584 1597 1621 1645 1669 1693 1718 1743 1769 1801 1833 1867 1900 1935 1969 2005 2041 2078 2115 2153 2192 2231 2271 2311 2353 2395 2437 2481 2525 2570 2616 2662 2709 2757 2806 2856 2907 2958 3010 3148 3293 3445 3599 3759 3930 4101 4288 4470 4654 4611 5428 5539 5419 5322 5472 8890 15768 19335 19472 19104 20283 16951 18360 22184 23966 22951 21418 21258 21463 23905 25439 28410 31842 34967 34510 36053 35924 36220 35076 35728 37147 37882 38131 39194 39990 42370 43621 43544 45472 46523 44628 41970 41220 41270 42933 44585 47799 49393 49188 45081 44060 41770 48201 48226 +Pakistan 1021 1021 1021 1021 1021 1021 1020 1020 1020 1020 1020 1020 1020 1020 1020 1019 1019 1019 1019 1019 1019 1019 1019 1019 1019 1020 1020 1020 1020 1020 1020 1020 1021 1021 1021 1021 1021 1021 1022 1022 1022 1022 1022 1022 1022 1023 1023 1023 1023 1023 1023 1023 1024 1024 1024 1024 1024 1024 1025 1025 1025 1025 1025 1025 1026 1026 1026 1026 1026 1026 1027 1029 1032 1034 1037 1039 1042 1044 1047 1049 1052 1054 1057 1060 1062 1094 1057 1104 1112 1080 1128 1023 1103 1129 1145 1115 1031 1217 1218 1121 1159 1176 1266 1277 1275 1244 1272 1188 1198 1355 1349 1338 1334 1303 1373 1339 1377 1351 1177 1339 1232 1319 1362 1305 1356 1359 1389 1376 1377 1420 1417 1390 1387 1369 1364 1333 1366 1326 1312 1323 1349 1358 1337 1375 1345 1309 1226 1219 1218 1233 1176 1112 1091 1167 1167 1166 1171 1193 1180 1164 1191 1231 1286 1332 1396 1421 1497 1513 1577 1636 1758 1721 1690 1765 1781 1811 1864 1897 2002 2018 2155 2242 2333 2421 2458 2603 2689 2761 2853 2908 2961 3026 3174 3148 3183 3255 3324 3270 3266 3303 3366 3362 3405 3506 3698 3910 4076 4194 4187 4227 4220 4261 4337 4454 4619 4743 +Panama 847 847 847 847 848 848 848 848 848 848 848 848 849 849 849 849 849 849 849 850 850 859 869 879 889 899 909 919 930 940 951 962 973 984 995 1006 1017 1029 1041 1052 1064 1076 1089 1101 1113 1126 1139 1152 1165 1178 1191 1205 1219 1232 1246 1260 1275 1289 1304 1319 1333 1349 1364 1379 1395 1411 1427 1443 1459 1476 1492 1509 1526 1544 1561 1579 1597 1615 1633 1652 1670 1689 1709 1728 1747 1767 1787 1808 1828 1849 1870 1891 1912 1934 1956 1978 2000 2023 2046 2069 2093 2116 2140 2165 2189 2214 2239 2264 2290 2316 2342 2369 2396 2423 2450 2478 2506 2534 2563 2592 2622 2652 2683 2714 2745 2777 2809 2842 2875 2908 2941 2975 3010 3044 3080 3115 3151 3187 3224 3261 3299 3337 3375 3414 3453 3493 3564 3640 3350 3362 3172 3066 3149 3264 3303 3407 3496 3766 3719 3853 3970 4274 4502 4788 4852 5128 5352 5634 5873 6153 6345 6676 6843 7076 7046 6992 6941 6833 7372 7529 8486 8659 8957 8839 8624 8847 8954 8995 7445 7272 7463 7997 8476 8757 8823 8795 8857 9237 9713 9889 9954 9814 9836 10053 10605 11156 11886 13087 14033 14339 14921 16254 17627 18793 19637 20485 +Papua New Guinea 546 546 546 546 547 547 547 547 547 547 547 547 547 547 547 547 548 548 548 548 548 550 552 553 555 557 559 561 563 565 567 569 571 573 575 576 578 580 582 584 586 588 590 592 594 596 598 600 602 604 607 609 611 613 615 617 619 621 623 625 627 630 632 634 636 638 640 643 645 647 649 651 654 656 658 660 662 665 667 669 671 674 676 678 681 683 685 688 690 692 695 697 699 702 704 707 709 711 714 716 719 721 723 726 728 731 733 736 738 741 743 746 748 751 756 760 765 770 775 779 784 790 795 800 806 811 817 823 828 834 839 845 851 857 862 868 874 880 886 892 898 904 910 916 922 929 935 941 947 954 960 975 989 1004 1020 1035 1051 1067 1083 1099 1116 1165 1217 1243 1324 1431 1484 1512 1545 1636 1774 1844 1904 1982 1989 1928 1824 1801 1915 1908 1822 1774 1736 1747 1697 1720 1756 1760 1767 1699 1607 1717 1907 2198 2270 2139 2245 2101 1969 1953 1856 1806 1758 1752 1756 1822 1819 1903 1982 2055 2163 2341 2476 2558 2510 2529 +Paraguay 835 835 835 835 836 836 836 836 836 836 836 836 837 837 837 837 837 837 837 837 838 848 859 870 881 892 903 914 926 937 949 961 973 985 998 1010 1023 1036 1049 1062 1076 1089 1103 1117 1131 1145 1159 1174 1189 1204 1219 1234 1250 1266 1282 1298 1314 1331 1347 1364 1381 1399 1416 1434 1452 1471 1489 1508 1527 1546 1565 1585 1605 1625 1646 1666 1687 1709 1730 1752 1774 1796 1819 1842 1865 1888 1912 1936 1961 1985 2010 2036 2061 2087 2113 2140 2167 2194 2222 2250 2278 2307 2336 2365 2395 2425 2456 2487 2518 2550 2582 2614 2647 2680 2714 2748 2783 2818 2853 2889 2926 2960 2994 3029 3064 3099 3135 3171 3208 3245 3283 3321 3359 3398 3437 3477 3517 3557 3598 3639 3364 3338 3449 3438 3428 3230 3465 2940 2904 3312 3013 2988 2858 2861 2832 2882 2925 2981 3067 2979 2928 2987 3113 3114 3163 3256 3203 3315 3339 3375 3487 3539 3618 3785 3977 4113 4284 4632 5022 5449 6087 6437 6038 5686 5692 5743 5566 5637 5825 5983 5985 6037 5988 6132 6306 6582 6536 6665 6527 6303 6031 5860 5742 5873 5994 6007 6180 6398 6684 6306 7008 7186 6975 7833 8038 8219 +Peru 1204 1204 1204 1204 1205 1205 1205 1205 1205 1205 1206 1206 1206 1206 1206 1206 1207 1207 1207 1207 1207 1211 1214 1217 1220 1223 1227 1230 1233 1236 1240 1243 1246 1249 1253 1256 1259 1263 1266 1269 1273 1276 1279 1283 1286 1290 1293 1296 1300 1303 1307 1310 1314 1317 1320 1324 1327 1331 1334 1338 1341 1345 1349 1352 1356 1359 1363 1366 1370 1374 1377 1381 1385 1388 1392 1395 1399 1403 1407 1410 1414 1418 1421 1425 1429 1433 1436 1440 1444 1448 1452 1456 1459 1463 1467 1471 1475 1593 1675 1746 1816 1925 2005 2115 2159 2288 2440 2561 2578 2589 2601 2609 2651 2690 2625 2799 3033 3087 3048 3092 3065 3110 3292 3429 3656 3658 3927 3897 4044 4355 3760 3369 3158 3425 3791 4043 4132 4084 4046 3969 3948 3854 3672 3638 3853 3898 3951 3964 3997 4197 4419 4614 4701 4843 4821 5016 5076 5155 5007 4871 5366 5652 5875 5947 6155 6360 6681 6733 6459 6425 6719 6828 6853 7016 7186 7548 7452 7255 7067 7298 7443 7582 7437 6303 6449 6432 6923 7356 6609 5681 5280 5290 5160 5329 5875 6198 6260 6551 6418 6411 6485 6433 6693 6883 7137 7499 7975 8563 9249 9246 9915 10429 10913 11395 11514 11903 +Philippines 962 962 962 963 963 963 963 963 963 963 964 964 964 964 964 964 964 965 965 965 965 966 968 969 971 972 974 975 976 978 979 981 982 984 985 986 988 989 991 992 994 995 997 998 1000 1001 1003 1004 1006 1007 1008 1010 1011 1013 1014 1016 1017 1019 1020 1022 1023 1025 1026 1028 1029 1031 1032 1034 1035 1037 1039 1041 1044 1046 1049 1052 1054 1057 1060 1062 1065 1067 1070 1073 1076 1078 1081 1084 1086 1089 1092 1095 1097 1100 1103 1106 1108 1111 1114 1117 1119 1122 1125 1344 1136 1186 1209 1250 1297 1297 1464 1529 1527 1656 1595 1468 1682 1926 2158 2036 2165 2077 2286 2108 2260 2238 2308 2315 2362 2400 2351 2317 2367 2337 2305 2101 2337 2450 2474 2595 2595 2256 1961 1705 1482 1289 1120 1519 1725 1782 1864 2006 2069 2190 2287 2376 2470 2529 2542 2637 2597 2663 2708 2814 2825 2886 2926 2992 3051 3104 3132 3212 3296 3494 3524 3624 3840 3947 4041 4154 4251 4295 4347 4333 3928 3559 3598 3670 3834 3982 4010 3891 3813 3804 3882 3973 4112 4230 4115 4151 4243 4275 4340 4465 4672 4804 4967 5205 5332 5304 5614 5721 6005 6326 6598 6876 +Poland 1213 1217 1222 1227 1231 1236 1241 1245 1250 1255 1260 1265 1269 1274 1279 1284 1289 1294 1299 1304 1309 1314 1319 1324 1329 1334 1339 1344 1349 1355 1360 1365 1370 1375 1381 1386 1391 1397 1402 1407 1413 1418 1423 1429 1434 1440 1445 1451 1456 1462 1468 1473 1479 1484 1490 1496 1502 1507 1513 1519 1525 1530 1536 1542 1548 1554 1560 1566 1572 1578 1584 1609 1634 1659 1685 1711 1738 1765 1792 1820 1848 1877 1906 1936 1966 1996 2027 2059 2091 2123 2156 2196 2236 2276 2318 2360 2403 2447 2492 2537 2583 2608 2634 2660 2685 2712 2738 2765 2792 2819 2846 2881 2916 2952 2996 3041 3087 3133 3180 3227 3276 3331 3387 3444 3502 3560 3618 3678 3738 3799 3591 3296 3007 2894 2910 2926 2987 3533 4037 4354 3696 3377 2978 2808 1809 1875 3203 3715 4134 4458 4670 4801 4832 5027 5224 5386 5530 5730 5923 6009 6248 6669 6511 6836 7078 7409 7818 8044 8473 8331 8705 9256 9854 10504 11020 11430 11605 11713 12033 11703 11307 10610 10420 10835 11138 11159 11429 11207 11418 11212 10088 9347 9553 9884 10386 11093 11776 12602 13225 13824 14565 14744 14964 15508 16314 16900 17959 19254 19996 20507 21328 22333 22740 23144 23952 24787 +Portugal 1685 1685 1685 1685 1686 1686 1686 1686 1687 1687 1687 1687 1688 1688 1688 1688 1689 1689 1689 1689 1690 1690 1690 1690 1691 1691 1691 1692 1692 1692 1692 1693 1693 1693 1694 1694 1694 1694 1695 1695 1695 1696 1696 1696 1696 1697 1697 1697 1698 1698 1698 1823 1789 1755 1722 1690 1679 1669 1658 1647 1637 1626 1630 1635 1639 1643 1695 1735 1743 1778 1798 1721 1761 1823 1783 1771 1720 1789 1780 1771 1750 1792 1833 1863 1910 1944 2034 2060 2067 2013 2086 2034 2011 2037 1997 2068 2083 2188 2249 2313 2412 2352 2345 2359 2371 2286 2282 2317 2261 2241 2278 2303 2330 2318 2330 2275 2285 2245 2128 2171 2274 2386 2645 2725 2592 2674 2624 3047 2719 2977 2904 3016 3037 3203 3298 3085 2816 3249 3231 3234 2987 3231 3160 3341 3501 3337 3567 3831 3787 3806 3862 4013 4002 4256 4433 4585 4751 4928 4954 5180 5481 5786 6179 6503 6902 7413 7733 8324 9056 9269 10175 10920 11826 13148 13125 12142 12700 13361 13691 14430 15016 15153 15467 15426 15121 15533 16165 17189 18473 19424 20282 21216 21464 21000 21146 21975 22658 23555 24560 25371 26147 26468 26526 26180 26590 26744 27111 27732 27747 26895 27393 26932 25953 25677 26055 26437 +Qatar 1097 1101 1105 1110 1114 1118 1122 1126 1131 1135 1139 1143 1148 1152 1156 1161 1165 1169 1174 1178 1182 1187 1191 1196 1200 1205 1209 1214 1218 1223 1228 1232 1237 1241 1246 1251 1255 1260 1265 1270 1274 1279 1284 1289 1293 1298 1303 1308 1313 1318 1323 1328 1333 1338 1343 1348 1353 1358 1363 1368 1373 1378 1384 1389 1394 1399 1404 1410 1415 1420 1426 1446 1467 1489 1511 1533 1555 1578 1601 1624 1648 1672 1696 1721 1746 1771 1797 1823 1850 1877 1904 1932 1960 1989 2018 2047 2077 2107 2138 2169 2201 2233 2266 2299 2332 2366 2401 2436 2471 2507 2544 2581 2618 2657 2528 2406 2290 2179 2074 2185 2301 2426 2557 2534 2512 2232 2201 2170 2140 1930 1741 1570 1416 1277 1152 1143 1133 1124 1115 1106 1097 1088 1079 1070 1061 1073 1084 1096 1108 1343 1628 1973 2486 3132 3945 4970 6261 7888 9937 12518 15769 19865 25024 31524 39711 50024 63016 79381 99995 125963 158673 160147 162805 165564 162379 160783 164858 145688 150718 148451 134862 122762 102308 90054 85422 76910 75482 71067 71568 73074 73402 70806 77977 76440 76944 77809 79461 100111 107276 107741 112238 112539 117133 115622 126335 119134 127563 126364 126076 122655 127984 133734 130990 131579 133563 132877 +Romania 815 816 816 816 816 816 816 816 816 817 817 817 817 817 817 817 817 818 818 818 818 829 841 852 864 876 888 900 912 925 938 951 964 977 990 1004 1018 1032 1046 1061 1075 1090 1105 1120 1136 1151 1167 1183 1199 1216 1233 1250 1267 1284 1302 1320 1338 1356 1375 1394 1413 1433 1452 1472 1493 1513 1534 1555 1577 1598 1620 1644 1669 1694 1719 1744 1770 1796 1823 1850 1877 1905 1933 1962 1991 2021 2051 2081 2112 2143 2175 2203 2232 2261 2290 2319 2350 2380 2411 2442 2474 2514 2555 2596 2638 2681 2725 2769 2814 2860 2906 3005 3106 3210 3183 3156 3128 3100 3071 3041 3012 3005 2996 2985 2971 2954 2936 2951 2962 2834 3046 3119 2949 3096 3132 3212 3248 3113 3460 3356 3254 3153 3054 2957 2862 2769 2678 2589 2502 3034 3676 3933 4202 4475 4773 5062 5235 5417 5611 5829 6052 6429 6637 7087 7512 7959 8836 9190 9193 9492 9602 10824 11396 11648 12166 12563 13062 13207 13507 13769 13705 13523 13452 13281 13759 13673 13836 13471 13367 12872 11449 10059 9253 9406 9794 10516 10969 10329 9855 9752 9970 10684 11429 12105 13286 13941 15246 16442 18032 16947 16888 17363 17502 18182 18569 19203 +Russia 1430 1432 1433 1435 1437 1439 1440 1442 1444 1445 1447 1449 1451 1452 1454 1456 1457 1459 1461 1463 1464 1474 1483 1493 1503 1513 1522 1532 1542 1552 1562 1572 1583 1593 1603 1613 1624 1634 1645 1656 1666 1677 1688 1699 1710 1721 1732 1744 1755 1766 1778 1789 1801 1812 1824 1836 1848 1860 1872 1884 1896 1909 1921 1933 1946 1959 1971 1984 1997 2010 2023 2036 2049 2062 2076 2089 2103 2116 2130 2144 2158 2172 2186 2200 2214 2229 2143 2506 2411 2242 2233 2046 2240 2539 2887 2672 2944 2895 2972 3154 3087 3165 3439 3203 3542 3136 2997 2881 3146 3267 3487 3222 3481 3658 3494 3596 3198 2808 1719 1482 1489 1364 1584 1826 2315 2895 3253 3391 3569 3613 3779 3816 3760 3904 4265 4880 5216 5652 5640 5873 5632 5530 5430 5331 5235 5140 5047 5611 6343 6932 7514 7424 7775 7981 8234 8787 9465 9496 10037 9755 10496 10908 11027 10620 11836 12363 12823 13256 13902 13972 14915 15170 15113 16236 16594 16530 17192 17487 17818 17632 17557 17619 17951 18417 18527 18576 19221 19355 19660 19906 19349 18332 15661 14320 12535 12013 11597 11779 11173 11925 13173 13902 14629 15768 16967 18118 19660 21374 22506 20739 21664 22570 23299 23561 23293 23038 +Rwanda 431 432 432 433 433 434 434 435 435 436 437 437 438 438 439 439 440 440 441 442 442 443 443 444 444 445 445 446 447 447 448 448 449 449 450 451 451 452 452 453 453 454 455 455 456 456 457 457 458 459 459 460 460 461 462 462 463 463 464 465 465 466 466 467 467 468 469 469 470 470 471 472 472 473 473 474 475 475 476 476 477 478 478 479 479 480 481 481 482 482 483 484 484 485 486 486 487 487 488 489 489 490 490 491 492 492 493 494 494 495 495 496 497 497 498 499 499 500 501 501 502 503 503 504 505 506 506 507 508 509 509 510 511 512 513 513 514 515 516 516 517 518 519 519 520 521 522 522 523 524 525 544 551 560 580 586 595 604 607 627 631 601 669 588 506 528 549 572 596 642 691 679 662 663 675 777 740 752 798 846 920 948 990 1014 945 962 989 953 892 884 856 863 973 965 509 695 749 781 768 754 764 796 880 879 928 973 1038 1087 1173 1210 1262 1324 1400 1426 1485 1549 +Samoa 1400 1400 1401 1401 1401 1401 1401 1402 1402 1402 1402 1402 1403 1403 1403 1403 1403 1404 1404 1404 1404 1409 1414 1419 1424 1428 1433 1438 1443 1448 1453 1458 1463 1468 1473 1478 1483 1488 1493 1498 1503 1508 1513 1518 1523 1529 1534 1539 1544 1549 1555 1560 1565 1571 1576 1581 1587 1592 1597 1603 1608 1614 1619 1625 1630 1636 1641 1647 1653 1658 1664 1669 1675 1681 1687 1692 1698 1704 1710 1715 1721 1727 1733 1739 1745 1751 1757 1763 1768 1775 1781 1787 1793 1799 1805 1811 1817 1823 1829 1836 1842 1848 1854 1861 1867 1873 1880 1886 1893 1899 1905 1912 1918 1925 1949 1973 1997 2022 2047 2072 2098 2123 2148 2173 2199 2224 2251 2277 2304 2331 2358 2386 2414 2442 2471 2500 2529 2559 2589 2619 2650 2681 2712 2744 2776 2808 2841 2874 2908 2942 2976 3011 3046 3081 3117 3153 3190 3227 3264 3302 3341 3379 3419 3458 3498 3539 3580 3621 3663 3706 3748 3792 3836 3880 3433 3273 3548 3493 3686 4149 3879 3517 3471 3477 3512 3636 3818 3815 3736 3847 3649 3539 3500 3608 3483 3686 3925 3929 3997 4066 4326 4601 4773 4958 5155 5335 5406 5711 5731 5418 5405 5675 5654 5502 5525 5558 +Sao Tome and Principe 850 852 853 855 857 858 860 861 863 865 866 868 869 871 873 874 876 877 879 881 882 884 886 887 889 891 892 894 896 897 899 901 902 904 906 907 909 911 912 914 916 917 919 921 923 924 926 928 929 931 933 935 936 938 940 942 943 945 947 949 950 952 954 956 957 959 961 963 964 966 968 970 972 973 975 977 979 981 983 984 986 988 990 992 993 995 997 999 1001 1003 1005 1006 1008 1010 1012 1014 1016 1018 1020 1021 1023 1025 1027 1029 1031 1033 1035 1037 1039 1041 1043 1044 1046 1048 1050 1052 1054 1056 1058 1060 1062 1066 1071 1075 1080 1084 1089 1093 1098 1102 1107 1112 1116 1121 1125 1130 1134 1139 1144 1148 1153 1157 1162 1167 1171 1176 1181 1185 1190 1195 1199 1198 1199 1202 1254 1129 1194 1186 1302 1169 1296 1397 1493 1586 1675 1759 1865 1949 2031 2115 2196 2267 2276 2272 2354 2426 2403 2883 2883 3266 3157 2777 2817 2668 2469 2653 2451 2330 2327 2350 2254 2235 2207 2190 2196 2197 2186 2164 2174 2186 2157 2188 2191 2291 2341 2321 2546 2524 2673 2701 2743 2801 2837 2876 2923 3003 +Saudi Arabia 846 846 847 847 848 848 849 850 850 851 852 852 853 853 854 855 855 856 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 874 875 876 877 878 879 880 881 882 883 884 885 887 888 889 890 891 892 893 894 895 896 897 899 900 901 902 903 904 905 906 907 909 910 911 912 914 916 919 921 923 926 928 930 933 935 937 939 942 944 946 949 951 954 956 958 961 963 965 968 970 973 975 977 980 982 985 987 990 992 994 997 999 1002 1004 1007 1009 1012 1014 1017 1021 1024 1027 1030 1033 1036 1040 1044 1048 1052 1056 1060 1064 1067 1071 1034 997 962 928 930 931 933 934 936 937 969 1002 1036 1071 1107 1145 1184 1371 1587 1838 2128 2465 2854 3305 3827 4432 5132 5942 6881 7968 9226 10684 12371 14325 16587 19207 22240 25752 29819 34527 39979 47016 52961 56842 89417 68111 80328 77548 71169 69720 72465 67447 55569 49634 44693 36344 35239 32136 32091 32281 35681 37688 38237 37182 36526 35870 36531 37060 37671 36746 37531 36387 34875 35859 37556 38892 39958 41464 44189 44276 45598 49230 50916 51294 52096 52469 +Senegal 497 497 497 497 497 497 498 498 498 498 498 498 498 498 498 498 498 498 498 499 499 501 503 506 508 511 513 516 518 521 523 526 528 531 533 536 539 541 544 546 549 552 554 557 560 563 565 568 571 574 576 579 582 585 588 590 593 596 599 602 605 608 611 614 617 620 623 626 629 632 635 638 641 644 647 650 653 656 660 663 666 669 673 676 679 682 686 689 692 696 699 702 706 709 713 716 720 723 727 730 734 737 741 744 748 751 755 759 762 766 770 774 777 781 798 814 832 849 867 885 904 924 945 966 988 1010 1032 1055 1079 1103 1127 1153 1178 1205 1231 1259 1287 1315 1345 1375 1405 1436 1468 1501 1534 1568 1603 1639 1675 1712 1750 1784 1816 1848 1880 1912 1943 1975 2005 2035 2032 2076 2096 2127 2118 2137 2135 2054 2127 1934 2041 1979 2046 1876 1899 1996 2129 2011 1874 1946 1826 1758 1965 1955 1810 1823 1855 1875 1914 1828 1856 1846 1813 1782 1731 1774 1764 1774 1834 1904 1916 1953 1915 1988 2049 2106 2099 2143 2162 2153 2182 2163 2174 2185 2206 2251 +Serbia 1358 1358 1358 1358 1359 1359 1359 1359 1359 1360 1360 1360 1360 1360 1361 1361 1361 1361 1361 1362 1362 1373 1384 1396 1407 1419 1430 1442 1454 1466 1478 1490 1502 1514 1527 1539 1552 1565 1578 1591 1604 1617 1630 1643 1657 1670 1684 1698 1712 1726 1740 1747 1754 1761 1767 1774 1781 1788 1795 1802 1809 1816 1823 1830 1838 1845 1852 1859 1866 1874 1881 1914 1947 1981 2015 2050 2086 2122 2159 2197 2235 2274 2313 2353 2394 2436 2478 2521 2565 2610 2655 2674 2692 2711 2730 2749 2768 2787 2806 2826 2845 2891 2938 2985 3033 3082 3132 3182 3234 3286 3339 3339 3340 3340 3329 3318 3307 3296 3284 3273 3262 3286 3325 3439 3624 3738 3931 3802 4066 4209 4056 3868 3450 3498 3568 3456 3841 3840 4078 4232 4182 4133 4084 4036 3989 3942 3895 3849 4517 4881 4496 4598 4173 4718 4901 5129 4955 5712 5879 6518 6843 7057 7096 7733 8367 8481 8823 8867 8948 9837 10197 11234 11477 11721 13070 12910 13138 13914 14503 15313 15900 16028 15983 15972 16228 16214 16732 16406 16043 15712 14457 13278 9531 6622 6786 7167 7348 7899 8121 7161 7741 8141 8725 9134 9983 10568 11130 11833 12522 12180 12301 12572 12505 12889 12717 12908 +Seychelles 792 795 798 801 804 807 811 814 817 820 824 827 830 833 837 840 843 847 850 853 857 860 864 867 871 874 877 881 884 888 891 895 899 902 906 909 913 917 920 924 927 931 935 939 942 946 950 954 957 961 965 969 973 976 980 984 988 992 996 1000 1004 1008 1012 1016 1020 1024 1028 1032 1036 1040 1044 1049 1053 1057 1061 1065 1070 1074 1078 1082 1087 1091 1095 1100 1104 1108 1113 1117 1122 1126 1131 1135 1140 1144 1149 1153 1158 1162 1167 1172 1176 1181 1186 1190 1195 1200 1205 1209 1214 1219 1224 1229 1233 1238 1285 1332 1382 1434 1487 1543 1600 1660 1723 1788 1855 1925 1997 2072 2150 2231 2314 2401 2492 2585 2682 2783 2888 2996 3108 3225 3346 3472 3602 3737 3877 4023 4174 4330 4492 4661 4836 5106 5186 5275 5503 5482 5428 5540 5576 5715 6003 5520 5851 6240 6318 6184 6185 6051 6410 6242 6536 7402 7665 8204 8154 8277 8930 9401 9898 11366 10894 10311 10099 10039 10411 11392 11409 11470 12038 13200 14116 14351 15185 15893 15507 15097 15609 17272 18361 18341 18453 18018 17693 16832 16412 17803 19086 20968 20065 19765 20364 22556 23685 24805 25038 25684 +Sierra Leone 734 734 734 734 734 734 735 735 735 735 735 735 735 735 735 736 736 736 736 736 736 740 743 747 750 754 758 761 765 769 772 776 780 784 788 791 795 799 803 807 811 815 819 822 826 830 834 839 843 847 851 855 859 863 867 872 876 880 884 889 893 897 901 906 910 915 919 924 928 932 937 942 946 951 955 960 965 969 974 979 983 988 993 998 1002 1007 1012 1017 1022 1027 1032 1037 1042 1047 1052 1057 1062 1067 1073 1078 1083 1088 1093 1099 1104 1109 1115 1120 1126 1131 1136 1142 1148 1153 1155 1157 1159 1160 1162 1164 1166 1163 1160 1157 1153 1150 1147 1144 1140 1137 1134 1131 1127 1124 1120 1117 1114 1110 1107 1103 1100 1096 1093 1089 1086 1082 1079 1075 1072 1068 1064 1105 1119 1140 1183 1202 1224 1246 1257 1303 1319 1317 1349 1345 1333 1399 1458 1419 1526 1630 1650 1601 1549 1563 1591 1600 1515 1500 1467 1513 1544 1598 1582 1518 1497 1415 1327 1356 1352 1341 1334 1361 1109 1135 1124 1041 1061 996 1006 969 1006 900 1087 1133 1154 1158 1185 1249 1289 1304 1347 1400 1582 1865 1959 2085 +Singapore 1021 1021 1022 1022 1022 1022 1022 1022 1023 1023 1023 1023 1023 1023 1023 1024 1024 1024 1024 1024 1024 1027 1029 1031 1034 1036 1038 1040 1043 1045 1047 1050 1052 1054 1057 1059 1061 1064 1066 1069 1071 1073 1076 1078 1080 1083 1085 1088 1090 1093 1095 1097 1100 1102 1105 1107 1110 1112 1115 1117 1120 1122 1125 1127 1130 1132 1135 1137 1140 1142 1145 1177 1210 1244 1279 1314 1351 1389 1428 1468 1509 1552 1595 1640 1686 1733 1782 1832 1883 1936 1990 2046 2103 2162 2223 2285 2349 2415 2482 2552 2624 2890 2732 2351 2272 2516 2828 2579 2963 2996 3255 2926 2512 2182 2617 2678 2222 3090 2424 2760 2385 2710 3602 3710 3650 4135 3432 2551 3048 4313 3977 2943 2574 3658 4335 4905 4894 5338 4544 5307 5284 5260 5235 5211 5186 5160 5134 5108 5081 5055 5027 4753 3312 3963 4553 4198 4629 4116 4134 4656 4990 5520 5372 5722 5613 6141 6659 7331 8209 9207 10336 11389 12711 13889 14499 14743 15590 16589 17799 19252 20882 21889 22467 24095 25649 25245 25812 27957 30453 32597 34316 35583 36978 40213 43231 44884 46342 48528 45863 48271 51663 49809 51435 54515 58977 61921 65331 68375 65991 63644 72056 74949 75630 77721 78958 80794 +Slovak Republic 1427 1427 1427 1427 1428 1428 1428 1428 1428 1429 1429 1429 1429 1430 1430 1430 1430 1430 1431 1431 1431 1443 1454 1466 1478 1490 1503 1515 1527 1540 1552 1565 1578 1591 1604 1617 1630 1643 1657 1670 1684 1698 1712 1726 1740 1754 1768 1783 1797 1812 1827 1834 1841 1849 1856 1863 1870 1878 1885 1893 1900 1908 1915 1923 1930 1938 1946 1953 1961 1969 1976 2002 2029 2055 2082 2109 2137 2165 2193 2222 2251 2280 2310 2340 2371 2402 2433 2465 2497 2530 2563 2599 2636 2673 2711 2749 2788 2828 2867 2908 2949 2991 3034 3078 3122 3167 3212 3258 3305 3353 3401 3460 3520 3581 3540 3500 3461 3422 3383 3345 3307 3566 3431 3678 4024 4457 4404 4705 5090 5201 5002 4801 4580 4361 4174 4118 4440 4922 4953 4984 5015 5046 5077 5108 5140 5172 5203 5236 5268 5558 5969 6007 6132 6040 6222 6681 7000 7356 7849 8136 8693 8955 9022 8792 9135 9405 9756 10134 10570 10790 10978 11302 11638 11945 12284 12546 12647 13122 13191 13217 13514 13392 13613 13781 14068 14144 14376 14416 14707 14802 14366 12223 11364 11536 12204 12879 13720 14525 15085 15039 15242 15778 16528 17433 18351 19549 21162 23416 24670 23334 24438 25066 25424 25759 26355 27204 +Slovenia 1409 1409 1409 1409 1409 1410 1410 1410 1410 1410 1411 1411 1411 1411 1412 1412 1412 1412 1412 1413 1413 1424 1436 1448 1460 1472 1484 1496 1508 1521 1533 1546 1558 1571 1584 1597 1610 1623 1637 1650 1664 1677 1691 1705 1719 1733 1747 1761 1776 1790 1805 1812 1819 1826 1834 1841 1848 1855 1862 1870 1877 1884 1892 1899 1906 1914 1921 1929 1936 1944 1951 1985 2020 2055 2091 2127 2164 2202 2240 2279 2318 2359 2400 2441 2484 2527 2571 2616 2661 2707 2755 2774 2793 2812 2832 2851 2871 2891 2911 2931 2952 2999 3048 3097 3147 3197 3249 3301 3355 3409 3464 3464 3465 3465 3454 3442 3430 3419 3407 3396 3384 3419 3471 3602 3807 3940 4157 4033 4328 4494 4345 4156 3719 3784 3872 3763 4195 4208 4483 4668 4628 4589 4551 4512 4474 4436 4398 4361 5135 5568 5147 5282 4809 5456 5687 5973 5790 6698 6918 7697 8110 8393 8469 9262 10057 10231 10681 10773 10911 12039 12524 13849 14200 14555 16290 16150 16496 17536 18347 19444 20265 20506 20527 20591 21000 21062 21819 21476 21084 20729 19147 17370 16351 16748 17576 18240 18894 19887 20585 21655 22488 23115 23972 24639 25694 26677 28096 29878 30816 28157 28377 28492 27682 27368 28059 28550 +Solomon Islands 363 363 363 363 363 363 363 363 363 363 364 364 364 364 364 364 364 364 364 364 364 365 367 368 369 371 372 373 374 376 377 378 380 381 382 384 385 387 388 389 391 392 393 395 396 398 399 400 402 403 405 406 407 409 410 412 413 415 416 418 419 421 422 424 425 427 428 430 431 433 434 436 437 439 440 442 443 445 447 448 450 451 453 454 456 458 459 461 463 464 466 467 469 471 472 474 476 477 479 481 482 484 486 488 489 491 493 494 496 498 500 501 503 505 514 522 531 540 549 559 568 578 588 598 608 618 629 639 650 661 672 684 696 707 719 732 744 757 769 782 796 809 823 837 851 865 880 895 910 926 941 957 973 990 1006 1023 1041 1058 1076 1094 1113 1132 1151 1170 1190 1210 1230 1251 1270 1195 1215 1200 829 892 1086 923 1014 1122 1181 1424 1293 1416 1407 1547 1514 1479 1718 1710 1723 1812 1793 1847 2024 2045 2171 2284 2257 2163 2142 2074 1731 1550 1468 1523 1557 1602 1672 1753 1835 1709 1787 1975 2024 2041 2030 2047 +Somalia 694 694 695 696 696 697 698 698 699 700 700 701 702 702 703 704 704 705 706 706 707 708 708 709 710 710 711 712 712 713 714 714 715 716 716 717 718 719 719 720 721 721 722 723 723 724 725 725 726 727 728 728 729 730 730 731 732 732 733 734 735 735 736 737 737 738 739 740 740 741 742 742 743 744 745 745 746 747 747 748 749 750 750 751 752 752 753 754 755 755 756 757 757 758 759 760 760 761 762 763 763 764 765 765 766 767 768 768 769 770 771 771 772 773 778 783 788 793 799 804 809 815 820 826 832 838 844 850 856 862 868 874 880 886 892 898 905 911 917 924 930 937 943 950 956 963 969 976 983 990 997 1036 1050 1070 1111 1126 1145 1166 1175 1219 1210 1243 1272 1294 1131 1034 1155 1196 1190 1019 1083 1097 1256 1092 1065 1148 1027 1046 995 869 837 866 888 794 832 919 897 979 962 950 930 921 813 817 644 637 648 613 607 605 603 603 607 611 614 616 615 615 615 615 614 614 616 619 621 624 +South Africa 1480 1480 1480 1480 1481 1481 1481 1481 1481 1482 1482 1482 1482 1483 1483 1483 1483 1483 1484 1484 1484 1752 1634 1649 1663 1677 1692 1700 1708 1716 1634 1556 1546 1536 1526 1517 1507 1497 1488 1478 1469 1434 1401 1368 1317 1268 1221 1176 1218 1262 1308 1549 1624 1744 1696 1821 1467 1737 1520 1569 1626 1531 1128 1205 1682 1239 1288 1544 1579 1579 1696 1721 2566 2237 2157 2433 2752 2626 2593 2908 3400 3251 3116 2424 2223 1900 2269 2620 2990 2995 3052 3216 3175 3182 3129 3646 3853 3646 4429 3936 2802 3051 3685 4996 5054 5458 5963 5921 4703 4985 5044 5009 4975 4940 4906 4871 4836 4801 4766 4799 4833 4843 4854 4866 4878 5130 5198 5230 5554 5355 4991 4657 4424 4843 5303 5805 6279 6616 6278 6515 6733 6837 6839 6787 6817 6789 6821 6690 6994 6880 7217 7316 7335 7435 7623 7752 7928 7978 7897 8001 8080 8175 8365 8701 9004 9255 9371 9720 9849 10156 10394 10654 10615 10813 11164 11120 11138 10874 10952 11132 11577 11845 11459 10927 11151 10699 10474 10459 10666 10670 10364 10049 9631 9546 9643 9730 9925 9952 9770 9766 9927 9988 10213 10382 10715 11133 11597 12052 12263 11903 12087 12291 12375 12454 12446 12509 +Spain 1518 1518 1518 1518 1519 1519 1519 1519 1520 1520 1520 1520 1521 1521 1521 1521 1521 1522 1522 1522 1522 1526 1530 1533 1537 1541 1545 1548 1552 1556 1560 1563 1567 1571 1575 1578 1582 1586 1590 1594 1598 1601 1605 1609 1613 1617 1621 1625 1629 1633 1637 1653 1719 1724 1747 1825 1767 1719 1752 1823 1878 1897 1903 1941 1937 1871 1962 1951 1748 1798 1837 1976 2242 2432 2221 2279 2314 2542 2465 2317 2509 2559 2579 2623 2616 2533 2466 2419 2505 2488 2479 2524 2702 2596 2614 2580 2364 2473 2653 2684 2730 2906 2803 2797 2769 2719 2832 2902 2995 3027 2901 3096 3060 3171 3115 3152 3285 3232 3196 3202 3420 3497 3633 3665 3754 3970 3939 4261 4259 4540 4367 4237 4311 4209 4349 4417 3418 3122 3106 3337 3643 3570 3756 3881 4047 3760 3914 3963 3957 3916 3993 4369 4701 4660 4987 5158 5546 5692 5904 5735 5792 6498 7206 7896 8611 9106 9700 10252 10767 11650 12233 12834 13790 14908 15885 16296 16818 17305 17707 17825 18119 18116 18358 18754 18970 19300 19881 20953 22036 23141 24126 24684 24831 24498 25015 25645 26270 27167 28238 29353 30647 31488 31866 32293 32745 33396 34206 34845 34676 33142 32994 32674 31971 31681 32270 32979 +Sri Lanka 898 898 898 898 899 899 899 899 899 899 899 900 900 900 900 900 900 900 900 901 901 902 902 903 904 905 906 907 908 909 910 911 911 912 913 914 915 916 917 918 919 920 920 921 922 923 924 925 926 927 928 947 967 987 1008 1029 1051 1073 1095 1118 1142 1166 1190 1215 1241 1267 1293 1320 1348 1376 1405 1365 1295 1302 1279 1289 1303 1310 1186 1272 1373 1466 1546 1557 1496 1393 1340 1564 1524 1492 1730 1716 1742 1743 1728 1797 1802 1864 1935 2045 2139 1976 1949 2032 2016 1956 1975 2046 2027 1914 2005 1920 1907 2029 1982 1855 1908 1975 1790 1879 1753 1691 1725 1683 1771 1855 1969 1951 1934 2045 1928 1824 1722 1728 1884 1763 1741 1840 1801 1736 1824 1854 1913 1851 1658 1596 1498 1525 1642 1693 1764 1815 1838 1814 1807 1859 1821 1797 1799 1773 1785 1769 1782 1771 1809 1820 1755 1870 1961 1993 2044 1988 1994 2039 2074 2091 2118 2220 2318 2424 2514 2630 2718 2820 2924 3008 3115 3101 3138 3178 3340 3442 3561 3759 3915 4075 4184 4396 4550 4677 4946 4949 5111 5344 5559 5843 6223 6586 6907 7080 7572 8112 8856 9426 10043 10624 +Sudan 518 518 518 518 519 519 519 519 519 519 519 519 519 519 519 519 520 520 520 520 520 522 525 527 530 533 535 538 540 543 546 548 551 553 556 559 562 564 567 570 573 575 578 581 584 586 589 592 595 598 601 604 607 610 613 615 618 621 624 627 631 634 637 640 643 646 649 652 655 659 662 665 668 671 675 678 681 684 688 691 694 698 701 705 708 711 715 718 722 725 729 732 736 739 743 747 750 754 757 761 765 768 772 776 780 783 787 791 795 799 803 806 810 814 831 847 864 882 899 917 936 956 978 999 1021 1044 1067 1091 1115 1139 1164 1190 1216 1243 1271 1299 1327 1356 1386 1417 1448 1480 1512 1546 1579 1614 1650 1686 1723 1760 1799 1838 1881 1920 1963 2007 2164 2081 2112 2303 2287 2230 2325 2202 2126 2220 2140 2022 2093 2167 2022 2106 2006 1785 1910 2091 2403 2687 2559 2213 2159 2137 2332 2233 2050 1850 1869 1871 1858 1961 1753 1830 1892 1918 1879 1934 1992 2142 2175 2183 2258 2338 2419 2533 2557 2672 2858 3097 3246 3259 3282 3524 3856 3903 3940 3975 +Suriname 1636 1637 1637 1637 1637 1638 1638 1638 1638 1639 1639 1639 1639 1639 1640 1640 1640 1640 1641 1641 1641 1652 1663 1675 1686 1697 1709 1720 1732 1744 1756 1767 1779 1791 1803 1816 1828 1840 1853 1865 1878 1891 1903 1916 1929 1942 1955 1969 1982 1995 2009 2022 2036 2050 2064 2077 2092 2106 2120 2134 2149 2163 2178 2192 2207 2222 2237 2252 2268 2283 2298 2314 2329 2345 2361 2377 2393 2409 2426 2442 2458 2475 2492 2509 2526 2543 2560 2577 2594 2612 2630 2647 2665 2683 2701 2720 2738 2757 2775 2794 2813 2832 2851 2870 2890 2909 2929 2949 2968 2989 3009 3029 3050 3070 3116 3163 3211 3259 3308 3358 3408 3464 3521 3579 3637 3697 3757 3818 3881 3944 4009 4074 4140 4208 4276 4346 4417 4489 4562 4636 4711 4788 4866 4945 5025 5107 5190 5274 5359 5446 5534 5664 5797 5933 6071 6214 6359 6508 6660 6816 6975 7138 7305 7476 7650 7829 8012 8199 8390 8586 8786 9315 9776 10239 10609 9648 10622 11830 12569 11872 10836 11515 10888 10291 9935 11162 10842 9949 10724 11131 10625 10759 10588 9690 9873 9848 9839 10263 10283 10054 9908 10214 10502 10979 11836 12225 12553 13059 13470 13747 14325 14942 15254 15556 16649 17125 +Swaziland 490 490 490 490 490 490 490 490 490 490 490 490 490 490 491 491 491 491 491 491 491 493 496 498 501 503 505 508 510 513 515 518 520 523 525 528 530 533 536 538 541 543 546 549 551 554 557 559 562 565 567 570 573 576 579 581 584 587 590 593 596 598 601 604 607 610 613 616 619 622 625 628 631 634 637 640 643 646 650 653 656 659 662 665 669 672 675 678 682 685 688 692 695 698 702 705 709 712 715 719 722 726 729 733 736 740 744 747 751 754 758 762 765 769 781 792 804 816 828 841 853 867 881 895 910 925 939 955 970 986 1001 1017 1034 1050 1067 1084 1102 1120 1138 1156 1174 1193 1212 1232 1251 1271 1292 1312 1333 1355 1376 1424 1437 1460 1508 1522 1544 1566 1573 1625 1804 1986 2348 2424 2713 3059 3112 3324 3092 3142 3971 3934 4302 4417 4786 4827 4851 4859 4842 4766 4723 4894 5031 4890 4821 4945 4943 5171 4823 4924 4844 4793 4835 4887 4909 5043 5125 5167 5189 5243 5257 5263 5320 5410 5533 5618 5733 5847 5887 5860 5862 5846 5910 5998 6058 6095 +Sweden 1414 1402 1467 1453 1358 1446 1462 1401 1327 1266 1368 1470 1376 1403 1414 1464 1492 1449 1462 1449 1469 1514 1521 1505 1546 1587 1591 1517 1544 1566 1527 1557 1516 1564 1585 1579 1630 1618 1592 1610 1634 1613 1537 1571 1639 1677 1620 1663 1681 1743 1789 1754 1717 1740 1758 1867 1848 1899 1922 1992 2029 1949 1890 1971 2007 2042 2009 2039 1856 1989 2243 2321 2363 2391 2481 2393 2545 2488 2400 2532 2472 2561 2467 2654 2597 2644 2671 2592 2634 2674 2735 2885 2847 2917 2931 3074 3154 3278 3391 3475 3489 3580 3534 3720 3784 3730 4029 4298 4166 4189 4266 4377 4547 4836 4943 5120 5410 5086 4705 4781 5090 4838 5195 5372 5749 5891 6190 6403 6598 7003 7317 7142 6875 7000 7465 7821 8092 8305 8573 9199 8517 8278 8340 8598 8840 9088 9985 10787 10925 11278 11977 11890 12133 12221 12896 13177 13642 13956 14031 14598 15097 15998 16607 17228 18434 19142 19222 19709 20401 21168 22054 22277 22308 23232 25048 25353 25378 24567 24784 25827 26010 25869 26431 26808 27890 28202 29138 29889 30596 31161 30901 30340 29813 29028 30000 31044 31465 32360 33709 35208 36816 37292 37941 38702 40216 41184 42873 44005 43421 40820 42898 43709 43263 43448 44029 44892 +Switzerland 2701 2701 2702 2702 2703 2703 2704 2704 2704 2705 2705 2706 2706 2706 2707 2707 2708 2708 2708 2709 2709 2738 2767 2796 2826 2856 2886 2916 2947 2978 3010 3042 3074 3107 3140 3173 3206 3240 3275 3309 3344 3380 3415 3452 3488 3525 3562 3600 3638 3677 3716 3781 4009 3861 3411 3962 3934 4247 5331 5040 4362 4647 4975 4946 4658 5028 4955 4333 5089 5536 5263 5573 5278 5392 6004 6628 6436 5772 5844 5792 6143 6222 6019 6011 6667 7164 7418 7358 7505 7486 7990 7502 8055 8276 7989 8765 8887 9238 9295 9643 9640 9419 9516 9214 9583 9848 10586 10555 10268 10676 10908 10999 10961 10666 10559 10675 10616 9419 9382 10003 10604 10301 11259 11835 12187 12980 13502 14086 14699 15027 14769 14003 13408 13961 13882 13731 13689 14253 14711 14600 14639 14403 13896 13618 13778 17496 18416 20323 20420 19569 20209 21545 21379 21800 22745 23981 25197 25738 24798 26014 27258 28621 29137 29877 30886 31531 31983 32566 33324 34719 36582 37621 38478 39412 39874 37301 37189 38201 38264 39109 40692 41080 40226 40229 41269 42462 42899 42914 43895 45400 46600 45599 45080 44615 44823 44738 44809 45734 46942 47486 49083 49479 49177 48837 49882 51069 52786 54483 55020 53179 54183 54551 54573 54983 55776 56118 +Syria 1081 1081 1081 1082 1082 1082 1082 1082 1082 1082 1083 1083 1083 1083 1083 1083 1084 1084 1084 1084 1084 1086 1087 1088 1090 1091 1092 1094 1095 1097 1098 1099 1101 1102 1103 1105 1106 1108 1109 1110 1112 1113 1114 1116 1117 1119 1120 1121 1123 1124 1126 1127 1128 1130 1131 1133 1134 1136 1137 1138 1140 1141 1143 1144 1146 1147 1148 1150 1151 1153 1154 1165 1176 1186 1197 1209 1220 1231 1242 1254 1266 1277 1289 1301 1313 1325 1338 1350 1363 1375 1388 1401 1414 1427 1440 1453 1467 1480 1494 1508 1522 1536 1550 1565 1579 1594 1609 1623 1638 1654 1669 1683 1697 1711 1663 1617 1571 1527 1557 1586 1616 1647 1678 1682 1686 1690 1694 1699 1703 1707 1675 1643 1612 1581 1551 1522 1493 1512 1532 1552 1573 1593 1614 1636 1657 1679 1702 1724 1747 1771 1794 1686 2074 2295 2569 2261 2609 2697 2260 2276 2247 2210 2932 2578 2894 2810 2503 2580 2598 3009 2582 2744 3317 2933 3521 4071 4372 4178 4398 4411 4777 5055 4987 4886 4531 4653 4284 4234 4654 3749 3809 3991 4399 4498 4693 4894 5246 5385 5620 5291 5188 5232 5474 5341 5546 5738 5888 6094 6246 6497 6603 6358 6432 5464 5105 4637 +Tajikistan 556 557 557 557 557 557 558 558 558 558 558 559 559 559 559 559 560 560 560 560 561 564 567 570 573 577 580 583 586 590 593 596 600 603 607 610 614 617 620 624 628 631 635 638 642 645 649 653 657 660 664 668 672 675 679 683 687 691 695 699 703 707 711 715 719 723 727 731 735 739 743 748 752 756 760 765 769 773 778 782 786 791 795 800 804 809 777 908 873 811 807 739 809 916 1040 962 1059 1041 1068 1132 1107 1134 1231 1146 1266 1120 1070 1027 1121 1163 1240 1145 1236 1298 1238 1274 1132 993 608 523 525 480 556 640 809 1009 1131 1176 1235 1247 1302 1311 1289 1335 1455 1661 1771 1914 1906 1979 1894 1855 1817 1780 1743 1708 1673 1855 2092 2281 2466 2431 2540 2601 2677 2850 3063 3065 3232 3134 3363 3490 3522 3387 3769 3930 4070 4200 4398 4413 4703 4776 4750 5095 5053 4883 4928 4864 4809 4617 4461 4344 4294 4274 4172 4059 4075 3981 3924 3855 3635 3302 2300 1891 1465 1266 1040 1045 1086 1111 1186 1285 1398 1522 1645 1719 1800 1898 2001 2029 2110 2212 2320 2432 2533 2582 +Tanzania 562 562 562 562 562 562 563 563 563 563 563 563 563 563 563 563 563 563 564 564 564 565 567 568 570 571 573 574 576 577 579 581 582 584 585 587 588 590 592 593 595 596 598 600 601 603 604 606 608 609 611 613 614 616 618 619 621 623 624 626 628 629 631 633 634 636 638 639 641 643 645 646 648 650 652 653 655 657 659 660 662 664 666 667 669 671 673 675 676 678 680 682 684 686 687 689 691 693 695 697 699 700 702 704 706 708 710 712 714 716 718 720 721 723 725 727 729 731 733 735 737 744 750 756 763 770 776 783 789 796 803 809 816 823 829 836 843 850 857 864 871 878 885 892 899 906 913 920 927 934 941 1040 1042 985 1044 1048 1038 1041 1027 1054 1072 1035 1102 1143 1176 1189 1307 1326 1360 1349 1391 1412 1465 1470 1464 1503 1571 1574 1579 1559 1534 1479 1461 1419 1418 1379 1389 1420 1442 1454 1471 1453 1413 1384 1362 1369 1392 1405 1421 1454 1488 1538 1607 1673 1756 1848 1880 1980 2030 2076 2143 2243 2288 2382 2472 2571 +Thailand 931 932 932 932 932 932 932 932 933 933 933 933 933 933 933 934 934 934 934 934 934 936 937 938 940 941 942 944 945 946 948 949 950 952 953 955 956 957 959 960 962 963 964 966 967 968 970 971 973 974 975 977 978 980 981 982 984 985 987 988 990 991 992 994 995 997 998 1000 1001 1002 1004 1017 1030 1043 1057 1071 1084 1098 1113 1127 1142 1156 1171 1187 1202 1217 1233 1249 1265 1282 1298 1302 1307 1311 1315 1319 1323 1328 1332 1336 1340 1345 1349 1353 1357 1362 1366 1370 1375 1379 1384 1384 1384 1384 1375 1366 1357 1348 1339 1330 1321 1310 1298 1287 1276 1265 1255 1244 1234 1224 1224 1224 1224 1224 1225 1225 1226 1226 1227 1221 1215 1209 1204 1199 1193 1188 1183 1178 1173 1169 1164 1206 1232 1322 1266 1329 1304 1274 1276 1383 1500 1527 1593 1667 1725 1804 1945 2044 2145 2246 2323 2365 2398 2570 2621 2688 2870 3088 3325 3427 3508 3645 3770 3912 4068 4191 4356 4701 5250 5808 6369 6841 7333 7882 8529 9239 9689 9454 8363 8633 8939 9028 9399 9962 10497 10901 11400 11940 12216 11915 12822 12798 13586 13932 13986 14512 +Timor-Leste 521 522 523 524 525 526 527 528 529 530 531 532 533 535 536 537 538 539 540 541 542 543 544 545 546 547 548 550 551 552 553 554 555 556 557 558 559 560 562 563 564 565 566 567 568 569 571 572 573 574 575 576 577 578 580 581 582 583 584 585 587 588 589 590 591 592 594 595 596 597 598 599 601 602 603 604 605 607 608 609 610 611 613 614 615 616 617 619 620 621 622 624 625 626 627 628 630 631 632 633 635 636 637 638 640 641 642 644 645 646 647 649 650 651 652 654 655 656 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 673 674 675 676 677 678 679 680 681 682 683 684 684 685 686 687 688 689 690 691 692 693 693 694 695 696 697 698 699 700 701 701 702 703 704 705 706 707 707 708 725 742 759 776 794 813 832 851 871 891 912 933 955 977 999 1022 1046 1121 1195 1273 1365 1477 1644 1741 1738 1132 1322 1507 1363 1283 1244 1301 1206 1323 1486 1652 1777 1940 2040 2093 2173 2086 +Togo 682 683 683 683 683 683 683 683 683 683 683 684 684 684 684 684 684 684 684 684 684 688 691 694 698 701 705 708 711 715 718 722 725 729 732 736 739 743 747 750 754 758 761 765 769 772 776 780 784 787 791 795 799 803 807 810 814 818 822 826 830 834 838 842 846 851 855 859 863 867 871 876 880 884 888 893 897 901 906 910 914 919 923 928 932 937 941 946 950 955 960 964 969 974 978 983 988 993 997 1002 1007 1012 1017 1022 1027 1032 1037 1042 1047 1052 1057 1062 1067 1072 1073 1073 1073 1074 1074 1074 1074 1073 1072 1071 1069 1068 1067 1065 1064 1063 1062 1060 1059 1058 1056 1055 1054 1052 1051 1050 1048 1047 1045 1044 1043 1041 1040 1039 1037 1036 1034 1050 1066 1080 1095 1110 1125 1139 1152 1165 1238 1289 1303 1331 1483 1640 1742 1788 1827 1969 1878 1962 1980 1854 1885 1828 1774 1825 1960 2026 1882 1710 1587 1447 1436 1449 1440 1406 1415 1414 1350 1306 1223 1014 1138 1198 1272 1418 1351 1349 1305 1251 1207 1235 1228 1211 1228 1224 1219 1230 1246 1273 1314 1346 1387 1433 +Tonga 663 663 663 663 663 663 663 663 663 663 664 664 664 664 664 664 664 664 664 664 665 667 669 671 674 676 678 680 683 685 687 690 692 694 697 699 702 704 706 709 711 714 716 718 721 723 726 728 731 733 736 738 741 743 746 748 751 753 756 758 761 764 766 769 771 774 777 779 782 785 787 790 793 795 798 801 803 806 809 812 814 817 820 823 826 828 831 834 837 840 843 845 848 851 854 857 860 863 866 869 872 875 877 880 883 886 889 892 896 899 902 905 908 911 922 934 945 957 969 981 993 1004 1015 1027 1038 1050 1061 1073 1085 1097 1109 1122 1134 1147 1159 1172 1185 1198 1212 1225 1238 1252 1266 1280 1294 1308 1323 1337 1352 1367 1382 1397 1413 1428 1444 1460 1476 1492 1508 1525 1541 1558 1575 1592 1610 1627 1645 1663 1681 1699 1718 1736 1755 1774 1849 1909 1920 1992 2002 2016 2324 2655 3072 3288 3379 3621 3698 3793 3695 3678 3572 3795 3800 3937 4125 4269 4256 4235 4331 4478 4605 4745 4878 4953 4959 5006 4920 4664 4748 4772 4945 5023 5032 4879 4962 5069 +Trinidad and Tobago 1230 1230 1231 1231 1231 1231 1231 1231 1232 1232 1232 1232 1232 1233 1233 1233 1233 1233 1233 1234 1234 1241 1247 1254 1261 1268 1275 1282 1289 1296 1303 1310 1317 1324 1331 1338 1346 1353 1360 1368 1375 1383 1390 1398 1405 1413 1421 1428 1436 1444 1452 1460 1468 1475 1484 1492 1500 1508 1516 1524 1533 1541 1549 1558 1566 1575 1583 1592 1600 1609 1618 1627 1636 1644 1653 1662 1671 1680 1690 1699 1708 1717 1727 1736 1745 1755 1764 1774 1784 1793 1803 1813 1823 1833 1843 1853 1863 1873 1883 1893 1904 1914 1924 1935 1945 1956 1966 1977 1988 1999 2010 2020 2031 2043 2088 2134 2181 2229 2278 2328 2380 2438 2498 2559 2622 2686 2752 2819 2888 2959 3031 3105 3181 3259 3338 3420 3503 3588 3676 3765 3857 3951 4047 4145 4246 4349 4455 4563 4674 4787 4903 5209 5283 5313 5271 5825 6843 7246 7621 7820 8531 8714 8929 9229 9362 9699 10002 10152 10669 10988 11495 11558 12081 12187 12729 12847 13904 14568 16047 16549 17624 18248 16989 15457 16175 15331 14682 13902 13310 13206 13464 13735 13426 13158 13562 14046 14561 14928 16064 16739 17721 18383 19773 22519 24175 25439 28790 30008 30875 29383 29321 28743 29086 29469 29820 30113 +Tunisia 716 716 716 716 716 716 716 716 717 717 717 717 717 717 717 717 717 718 718 718 718 721 725 728 732 735 739 742 746 750 753 757 760 764 768 771 775 779 783 786 790 794 798 802 805 809 813 817 821 825 829 833 837 841 845 849 853 857 861 865 870 874 878 882 886 891 895 899 904 908 912 917 921 926 930 934 939 943 948 953 957 962 966 971 976 980 985 990 995 999 1004 1009 1014 1019 1024 1029 1033 1038 1043 1048 1053 1059 1064 1069 1074 1079 1084 1089 1095 1100 1105 1115 1125 1135 1148 1160 1172 1185 1197 1210 1223 1240 1257 1274 1291 1308 1326 1343 1360 1377 1395 1412 1429 1446 1464 1481 1498 1516 1533 1550 1567 1585 1602 1619 1636 1653 1670 1688 1705 1722 1739 1732 1916 1959 1974 1845 1945 1848 2064 1950 2157 2312 2226 2516 2575 2683 2690 2615 2831 2876 2990 3246 3746 3639 3841 4011 4215 4255 4434 4618 4837 4980 4863 4999 5048 5205 5002 5214 5109 5196 5502 5604 5920 5991 6031 6055 6393 6649 6879 7201 7464 7699 7752 8094 8468 8707 9109 9585 9938 10187 10411 10235 10609 10768 10825 11126 +Turkey 1221 1221 1222 1222 1222 1222 1222 1222 1223 1223 1223 1223 1223 1224 1224 1224 1224 1224 1224 1225 1225 1231 1238 1244 1251 1258 1264 1271 1278 1285 1292 1298 1305 1312 1319 1326 1333 1340 1348 1355 1362 1369 1376 1384 1391 1399 1406 1413 1421 1429 1436 1444 1451 1459 1467 1475 1483 1490 1498 1506 1514 1522 1531 1539 1547 1555 1563 1572 1580 1588 1597 1608 1619 1605 1590 1576 1562 1548 1534 1520 1535 1601 1669 1741 1754 1768 1782 1795 1809 1823 1838 1852 1866 1881 1895 1910 1925 1939 1954 1970 1985 2000 2016 2031 2047 2063 2079 2095 2111 2128 2144 2162 2181 2200 2088 1981 1880 1784 1694 1607 1525 1449 1377 1308 1557 1725 1993 1803 1970 2252 2323 2426 2247 2507 2529 2544 2981 3031 3246 3420 3163 2851 2947 2651 2514 2154 2722 2812 3123 2901 3103 3701 3963 4361 3892 4156 4122 4943 5252 4869 4735 4691 4849 5188 5296 5309 5906 6020 6295 6470 6740 6765 7186 7442 7991 8381 9142 8863 8400 8160 7828 8518 8323 8535 8798 9163 9556 10351 10421 10103 10670 10568 10920 11569 10857 11530 12190 12911 13008 12381 13025 12106 12669 13151 14187 15176 16013 16551 16454 15467 16674 17908 18057 18579 18884 19360 +Turkmenistan 943 944 945 946 947 948 950 951 952 953 954 955 956 957 959 960 961 962 963 964 965 972 978 984 991 997 1004 1010 1017 1023 1030 1037 1043 1050 1057 1064 1071 1078 1085 1092 1099 1106 1113 1120 1127 1135 1142 1150 1157 1164 1172 1180 1187 1195 1203 1210 1218 1226 1234 1242 1250 1258 1266 1275 1283 1291 1300 1308 1317 1325 1334 1342 1351 1360 1369 1377 1386 1395 1404 1414 1423 1432 1441 1451 1460 1469 1413 1652 1590 1478 1472 1349 1477 1674 1904 1762 1941 1908 1960 2080 2035 2086 2268 2111 2335 2067 1976 1899 2074 2154 2299 2124 2295 2412 2303 2371 2108 1851 1133 977 981 899 1045 1205 1529 1913 2150 2243 2361 2391 2502 2528 2492 2588 2829 3239 3463 3754 3748 3904 3745 3679 3614 3550 3487 3426 3365 3743 4233 4628 5018 4961 5197 5337 5509 5881 6338 6361 6726 6540 7040 7319 7402 7132 7952 8309 8622 8916 9355 9406 10045 10221 10186 10948 10900 10576 10715 10617 10538 10158 9853 9632 9559 9553 9362 9143 9216 9040 8944 8822 8353 7748 6402 6320 5094 4623 4841 4221 4460 5132 5351 5521 5477 5598 5817 6505 7137 7834 8877 9303 10032 11361 12460 13555 14762 15865 +Uganda 464 464 464 464 464 464 464 464 464 464 464 465 465 465 465 465 465 465 465 465 465 467 470 472 474 477 479 481 483 486 488 491 493 495 498 500 503 505 507 510 512 515 517 520 522 525 527 530 532 535 538 540 543 545 548 551 553 556 559 562 564 567 570 572 575 578 581 584 586 589 592 595 598 601 604 607 610 612 615 618 621 624 627 630 634 637 640 643 646 649 652 655 658 662 665 668 671 675 678 681 684 688 691 694 698 701 704 708 711 715 718 722 725 729 730 731 733 734 736 737 738 741 744 747 750 752 755 758 761 764 767 769 772 775 778 781 784 786 789 792 795 798 801 804 807 810 812 815 818 821 824 772 800 814 783 813 837 850 834 853 871 839 850 922 965 960 991 1015 1012 1092 1079 1084 1071 1046 1027 982 967 958 884 770 729 740 781 816 724 716 695 713 736 762 767 782 781 818 842 910 961 979 996 1043 1042 1060 1115 1147 1184 1217 1304 1367 1437 1490 1515 1607 1622 1621 1638 1680 +Ukraine 763 764 765 766 767 767 768 769 770 771 772 773 774 775 776 777 778 779 779 780 781 786 791 797 802 807 812 817 823 828 833 839 844 850 855 861 866 872 878 883 889 895 901 906 912 918 924 930 936 942 948 955 961 967 973 980 986 992 999 1005 1012 1018 1025 1032 1038 1045 1052 1059 1065 1072 1079 1086 1093 1100 1107 1115 1122 1129 1136 1144 1151 1159 1166 1174 1181 1189 1143 1337 1286 1196 1192 1092 1195 1355 1540 1426 1570 1544 1586 1683 1647 1688 1835 1709 1890 1673 1599 1537 1679 1743 1860 1719 1857 1952 1864 1919 1706 1498 917 791 794 727 845 973 1234 1542 1733 1806 1900 1923 2010 2030 1999 2075 2267 2593 2770 3001 2994 3117 2988 2933 2879 2826 2774 2723 2673 2971 3358 3669 3976 3927 4112 4220 4352 4643 5000 5015 5299 5149 5539 5755 5816 5600 6239 6515 6756 6982 7320 7355 7850 7982 7950 8538 8742 8724 9090 9262 9454 9372 9349 9400 9594 9860 9937 9981 10346 10437 10621 10773 10490 9588 8633 7401 5732 5073 4606 4509 4463 4496 4809 5305 5637 6217 7022 7265 7848 8519 8762 7498 7844 8282 8319 8338 8267 8449 +United Arab Emirates 998 1001 1005 1009 1013 1016 1020 1024 1028 1032 1036 1039 1043 1047 1051 1055 1059 1063 1067 1071 1075 1079 1083 1087 1091 1095 1099 1103 1108 1112 1116 1120 1124 1129 1133 1137 1141 1146 1150 1154 1158 1163 1167 1172 1176 1180 1185 1189 1194 1198 1203 1207 1212 1216 1221 1225 1230 1234 1239 1244 1248 1253 1258 1262 1267 1272 1277 1281 1286 1291 1296 1315 1334 1353 1373 1393 1414 1434 1455 1476 1498 1520 1542 1564 1587 1610 1634 1658 1682 1706 1731 1756 1782 1808 1834 1861 1888 1916 1944 1972 2001 2030 2060 2090 2120 2151 2182 2214 2247 2279 2313 2346 2380 2415 2298 2187 2082 1981 1885 1986 2092 2205 2323 2308 2293 2278 2230 2182 2136 1982 1839 1706 1583 1469 1363 1343 1323 1303 1284 1265 1246 1227 1209 1191 1173 1182 1191 1199 1208 1217 1225 1233 1240 1247 1255 1262 1270 1278 1433 1606 1801 2019 2264 2954 5021 8534 14505 24652 29634 35623 42822 41464 39798 60948 149185 167748 165063 167326 143058 159226 182668 181228 158177 144955 139882 129469 100191 101308 82687 92115 114832 109658 107416 103224 104855 106425 106923 109553 104107 101940 108048 105860 105346 109675 110662 102324 95637 82993 73029 60955 56644 56192 57028 59092 60578 60749 +United Kingdom 3431 3439 3450 3339 3291 3439 3377 3549 3340 3401 3575 3492 3298 3423 3296 3589 3345 3348 3295 3195 3403 3406 3415 3460 3597 3628 3390 3605 3566 3549 3661 3656 3726 3713 3755 3984 4063 3981 4090 4007 4149 4022 3934 4080 4386 4533 4480 4377 4508 4572 4480 4631 4784 4898 5080 4914 5188 5196 5051 5210 5268 5204 4937 5351 5446 5527 5650 5623 5844 5843 6046 6310 6274 6274 6457 6464 6441 6410 6364 6176 6553 6637 6696 6848 6736 6633 6621 6835 6995 7164 7169 7276 7072 6963 7216 7387 7629 7642 7909 8113 8013 8107 8160 8018 8042 8208 8341 8428 8045 8163 8305 8491 8564 8853 8930 9330 9377 9276 9439 8683 8316 7420 7732 7892 8176 8407 8085 8647 8659 8858 8722 8253 8187 8388 8834 9095 9459 9719 9726 10022 10935 11860 11997 12078 11467 10881 10644 10411 10599 10866 11135 11416 11367 11751 12173 12531 12572 12702 12672 13122 13697 13887 13897 14393 15067 15292 15494 15777 16357 16616 16933 17207 17793 19043 18801 18699 19207 19684 20337 20871 20417 20149 20607 21357 21904 22648 23516 24551 25750 26279 26424 26017 26062 26688 27691 28317 28998 29662 30614 31474 32543 33282 33954 35250 35910 36665 37504 38164 37739 35840 36240 36549 36535 36908 37614 38225 +United States 2128 2168 2203 2167 2166 2211 2252 2274 2115 2218 2283 2328 2289 2314 2358 2349 2254 2252 2259 2255 2242 2277 2340 2315 2378 2432 2448 2459 2459 2379 2552 2709 2807 2906 2768 2874 2916 2826 2800 2937 2792 2735 2712 2754 2905 2951 2968 3046 3126 3046 3059 3184 3347 3576 3586 3507 3582 3503 3522 3617 3714 3638 3751 3995 4127 3914 3884 4013 4066 4175 4058 4154 4218 4323 4196 4316 4269 4311 4396 4834 5292 5344 5549 5552 5521 5439 5479 5603 5461 5680 5646 5772 6207 5792 5519 6070 5837 6280 6299 6752 6819 7442 7372 7589 7355 7744 8474 8452 7612 8374 8287 8416 8666 8824 7981 8081 9061 8703 9375 9401 9181 8789 9135 10150 10249 10316 10828 10771 10746 11272 10139 9277 7991 7769 8308 8872 10058 10413 9911 10605 11320 13239 15702 18551 19847 18828 14777 14267 14544 14340 15319 16198 16508 16974 16558 17409 17428 17430 16961 17909 18059 18170 18966 19497 20338 21361 22495 22803 23647 24147 23908 24350 25374 26567 26258 25934 27041 27990 29281 29951 29619 30070 29230 30185 32110 33065 33899 34787 35929 36830 37062 36543 37321 37844 38892 39476 40501 41812 43166 44673 45986 45978 46367 47260 48597 49762 50599 51011 50384 48558 49373 49781 50549 51282 52118 53354 +Uruguay 1758 1758 1758 1759 1759 1759 1759 1760 1760 1760 1761 1761 1761 1761 1762 1762 1762 1762 1763 1763 1763 1805 1848 1892 1937 1983 2030 2078 2127 2177 2229 2282 2336 2392 2448 2506 2566 2627 2689 2753 2818 2885 2954 3024 3095 3169 3244 3321 3400 3481 3563 3648 3734 3823 3914 4006 4101 4199 4298 4400 4505 4612 4721 4833 4948 5065 5185 5308 5434 5563 5695 5689 6876 6796 6050 5077 5501 5549 5876 5097 5445 5053 5441 6271 6082 6725 6828 5936 7118 6325 5624 6000 6012 6387 6964 6732 6932 6538 5901 5930 5820 5859 6750 6863 6929 6128 6651 7241 7809 7766 8239 7716 9091 8520 6785 6271 6323 6802 7027 7736 6551 6655 7353 7478 7915 7335 7723 8525 8662 8430 9311 7487 6756 5746 6650 6849 6980 6908 7253 7204 7065 7031 6305 6227 6854 6893 7404 7744 7835 7935 8135 8573 8501 8738 9091 8952 8897 8784 8834 7890 7999 8068 7735 7627 7644 7606 7746 7315 7324 7668 7934 7849 7563 7606 7831 8284 8567 8612 9012 9513 10034 10169 9147 8556 8410 8478 9169 9833 9770 9827 9841 10118 10841 11048 11766 11513 12068 13007 13508 13177 12876 12359 11401 11500 12081 12978 13489 14336 15317 15912 17095 17916 18447 19321 19929 20438 +Uzbekistan 502 502 502 502 503 503 503 503 503 503 503 503 503 503 503 503 503 504 504 504 504 505 507 508 510 512 513 515 516 518 519 521 523 524 526 528 529 531 532 534 536 537 539 541 542 544 546 547 549 551 552 554 556 557 559 561 563 564 566 568 570 571 573 575 577 578 580 582 584 586 587 589 591 593 595 596 598 600 602 604 606 608 609 611 613 615 590 688 660 612 608 555 606 685 777 717 787 772 790 837 816 834 904 840 926 818 779 747 813 842 896 826 890 932 888 911 905 782 676 584 550 519 559 602 648 698 751 809 871 880 917 924 908 940 1024 1168 1245 1345 1338 1389 1329 1301 1274 1247 1221 1195 1170 1297 1462 1594 1722 1697 1772 1814 1866 1986 2133 2133 2248 2179 2338 2430 2456 2365 2636 2753 2856 2952 3096 3111 3321 3378 3365 3615 3619 3531 3598 3584 3577 3468 3382 3325 3318 3335 3286 3227 3271 3226 3210 3184 3032 2953 2561 2446 2274 2213 2208 2280 2340 2414 2471 2543 2612 2691 2865 3030 3211 3467 3733 3968 4185 4412 4705 5002 5320 5598 +Vanuatu 585 586 586 586 586 586 586 586 586 586 586 586 586 587 587 587 587 587 587 587 587 589 591 593 595 597 599 601 603 605 607 609 612 614 616 618 620 622 624 626 628 631 633 635 637 639 641 643 646 648 650 652 654 657 659 661 663 666 668 670 672 675 677 679 682 684 686 689 691 693 696 698 700 703 705 708 710 712 715 717 720 722 725 727 729 732 734 737 739 742 744 747 750 752 755 757 760 762 765 768 770 773 775 778 781 783 786 789 791 794 797 799 802 805 815 824 834 844 855 865 875 887 899 910 923 935 947 960 972 985 998 1011 1024 1038 1052 1065 1079 1094 1108 1123 1137 1152 1167 1183 1198 1214 1230 1246 1262 1279 1295 1312 1329 1347 1364 1382 1400 1418 1437 1456 1475 1494 1513 1533 1553 1573 1593 1614 1635 1656 1678 1699 1721 1744 2274 2103 2080 1999 2283 2306 1989 2021 2186 2593 2710 2679 2566 2519 2475 2498 2550 2557 2548 2494 2647 2610 2615 2693 2761 2720 2823 2664 2467 2508 2542 2610 2761 2833 2944 2970 2948 2916 2902 2895 2837 2912 +Venezuela 682 682 682 682 682 682 683 683 683 683 683 683 683 683 683 683 684 684 684 684 684 687 690 693 696 699 702 706 709 712 715 718 721 725 728 731 734 737 741 744 747 751 754 757 761 764 767 771 774 778 781 785 788 792 795 799 802 806 809 813 817 820 824 827 831 835 839 842 846 850 854 878 904 930 958 986 1014 1044 1074 1106 1138 1171 1206 1241 1274 1347 1261 1386 1421 1365 1438 1285 1100 1526 1295 1483 1306 1183 1320 1296 1237 1200 1290 1378 1321 1298 1205 1195 1269 1305 1336 1414 1450 1663 1438 1471 1381 1603 1583 1470 1754 1739 1801 2071 2468 3166 3770 3979 4510 4984 4985 4161 4277 4164 4393 4836 4992 5497 5715 5966 5651 5603 5030 5275 6520 7526 8688 10306 11891 11614 11070 11268 11528 11582 12151 12555 13452 14657 13548 13493 13014 12405 12571 12468 13789 14056 13807 14225 14764 14753 15390 15549 15667 16369 17042 17710 18947 19632 19488 19140 18125 17539 16681 15025 14218 13874 14092 14802 15505 14125 14539 15577 16143 15829 15124 15390 15044 15680 15416 14216 14461 14673 13129 11894 13820 14981 16178 17298 17911 17056 16536 16960 17642 17614 16666 15753 +Vietnam 861 861 861 861 861 862 862 862 862 862 862 862 863 863 863 863 863 863 863 863 864 863 862 862 861 861 860 859 859 858 858 857 856 856 855 855 854 853 853 852 852 851 851 850 849 849 848 848 847 846 846 845 845 844 844 843 842 842 841 841 840 839 839 838 838 837 837 836 835 835 834 841 849 856 863 871 878 886 894 901 909 917 925 933 941 949 957 966 974 982 991 999 1008 1017 1026 1034 1043 1052 1062 1071 1080 1089 1099 1108 1118 1127 1137 1147 1157 1167 1177 1183 1190 1196 1189 1182 1176 1169 1162 1155 1148 1140 1132 1124 1117 1109 1102 1094 1087 1080 1073 1066 1060 1053 1047 1040 1034 1028 1022 1017 1011 1005 1000 995 989 984 979 974 970 965 961 985 1009 1034 1061 1086 1104 1119 1132 1140 1150 1167 1272 1267 1285 1257 1232 1047 1002 1059 1053 1082 1152 1202 1128 1023 1168 1182 1165 1151 1097 1112 1178 1216 1297 1345 1354 1374 1427 1457 1501 1562 1667 1770 1895 2042 2197 2339 2437 2515 2650 2778 2920 3085 3278 3485 3687 3907 4085 4260 4486 4717 4912 5125 5370 5623 +West Bank and Gaza 1220 1221 1221 1221 1221 1221 1222 1222 1222 1222 1222 1222 1223 1223 1223 1223 1223 1224 1224 1224 1224 1224 1224 1225 1225 1225 1225 1225 1226 1226 1226 1226 1226 1226 1227 1227 1227 1227 1227 1228 1228 1228 1228 1228 1228 1229 1229 1229 1229 1229 1230 1230 1230 1230 1230 1230 1231 1231 1231 1231 1231 1232 1232 1232 1232 1232 1232 1233 1233 1233 1233 1236 1240 1243 1246 1250 1253 1256 1260 1263 1266 1270 1273 1276 1280 1283 1286 1290 1293 1297 1300 1304 1307 1310 1314 1317 1321 1324 1328 1331 1335 1338 1342 1345 1349 1353 1356 1360 1363 1367 1371 1367 1363 1359 1288 1221 1158 1097 1129 1161 1195 1218 1242 1176 1290 1248 1288 1361 1127 1233 1237 1229 1179 1162 1495 1799 1612 1795 1506 1426 1443 1551 1730 1758 1776 1828 2008 2097 1606 1230 1272 1316 1362 1351 1340 1329 1318 1307 1297 1286 1276 1266 1256 1247 1237 1228 1219 1210 1202 1320 1404 1546 1751 1592 1895 1834 2073 1989 2181 2144 2414 2197 2285 2104 2122 2018 2306 2149 2053 1987 2264 2027 2386 2521 2722 2788 2860 3392 4163 4788 4206 3836 3685 3922 4163 4506 4193 4015 3564 4187 4163 4359 4842 4498 4493 4319 +Zambia 663 665 667 668 670 671 673 675 676 678 680 681 683 684 686 688 689 691 693 694 696 698 700 701 703 705 706 708 710 711 713 715 717 718 720 722 724 725 727 729 731 732 734 736 738 740 741 743 745 747 748 750 752 754 756 758 759 761 763 765 767 769 771 772 774 776 778 780 782 784 786 787 789 791 793 795 797 799 801 803 805 807 809 811 813 815 816 818 820 822 824 826 828 830 832 834 836 838 841 843 845 847 849 851 853 855 857 859 861 863 865 867 869 872 900 930 960 992 1025 1059 1093 1126 1159 1194 1229 1266 1303 1342 1382 1423 1465 1508 1553 1599 1646 1694 1745 1796 1849 1903 1960 2017 2077 2138 2201 2265 2332 2400 2471 2543 2618 2714 2812 2913 3016 2865 3104 3257 2916 3167 3151 3091 3017 3016 3214 3506 3877 4390 4423 3891 3888 3828 4050 3839 3822 3658 3622 3382 3232 2993 2998 2866 2832 2811 2696 2602 2579 2560 2523 2465 2407 2348 2253 2351 2098 2106 2180 2203 2136 2176 2202 2260 2304 2403 2507 2620 2752 2901 3039 3224 3451 3557 3678 3800 3898 4034 +Zimbabwe 869 870 871 872 873 874 875 876 877 878 879 880 881 883 884 885 886 887 888 889 890 891 892 893 894 895 896 898 899 900 901 902 903 904 905 906 907 908 910 911 912 913 914 915 916 917 918 920 921 922 923 924 925 926 927 928 930 931 932 933 934 935 936 937 939 940 941 942 943 944 945 947 948 949 950 951 952 953 955 956 957 958 959 960 961 963 964 965 966 967 968 970 971 972 973 974 975 977 978 979 980 981 983 984 985 986 987 989 990 991 992 993 994 996 997 998 999 1000 1002 1003 1004 1005 1007 1008 1009 1011 1012 1013 1014 1016 1017 1018 1039 1060 1082 1104 1126 1149 1172 1196 1221 1245 1271 1296 1323 1350 1377 1405 1434 1463 1492 1537 1543 1618 1645 1719 1843 1941 1920 1962 1969 2024 2001 1973 1976 2054 1985 1926 1639 2121 2521 2651 2778 2765 2740 2674 2568 2332 2209 2217 2364 2561 2527 2467 2327 2395 2357 2299 2390 2436 2532 2604 2316 2292 2456 2416 2619 2645 2680 2625 2521 2540 2304 1908 1794 1689 1629 1568 1286 1352 1484 1626 1750 1773 1773 1801 diff --git a/src/data/gapminder/index.json b/src/data/gapminder/index.json new file mode 100644 index 0000000..674acac --- /dev/null +++ b/src/data/gapminder/index.json @@ -0,0 +1,146 @@ +[ + { + "name": "GDP", + "description": "(PPP$, inflation-adjusted)", + "path": "gdp.txt", + "separator": "\t", + "type": "matrix", + "loadAtOnce": "true", + "size": [173, 217], + "rowtype": "Country", + "coltype": "Year", + "formatter": ".1s", + "value": { + "type": "real", + "range": [0, 182670] + } + }, + { + "name": "Child Mortality", + "description": "(0-5 year-olds dying per 1,000 born)", + "path": "childmortality.txt", + "separator": "\t", + "loadAtOnce": "true", + "type": "matrix", + "size": [173,217], + "rowtype": "Country", + "coltype": "Year", + "formatter": ".1s", + "value": { + "type": "real", + "range": [0, 829100] + } + }, + { + "name": "Population", + "description": "", + "path": "totalPop_interpolated.txt", + "separator": "\t", + "loadAtOnce": "true", + "type": "matrix", + "size": [173, 217], + "rowtype": "Country", + "coltype": "Year", + "formatter": "s", + "value": { + "type": "real", + "range": [0, 1376050000] + } + }, + { + "name": "Life Expectancy", + "description": "at Birth", + "path": "lifeexpectancy.txt", + "separator": "\t", + "loadAtOnce": "true", + "type": "matrix", + "size": [173, 217], + "rowtype": "Country", + "coltype": "Year", + "formatter": ".0f", + "value": { + "type": "real", + "range": [0, 84.1] + } + }, + { + "name": "Children per woman", + "description": "total fertility", + "path": "fertility.txt", + "separator": "\t", + "loadAtOnce": "true", + "type": "matrix", + "size": [173, 217], + "rowtype": "Country", + "coltype": "Year", + "formatter": ".0f", + "value": { + "type": "real", + "range": [0, 7.5] + } + }, + { + "name": "Continent", + "description": "", + "type": "stratification", + "idtype": "Country", + "path": "continent.txt", + "separator": "\t", + "size": [ 173 ], + "ngroups": 4, + "groups": [ + { + "name": "Africa", + "size": 50, + "color": "rgb(31, 120, 180)" + }, + { + "name": "America", + "size": 30, + "color": "rgb(227, 26, 28)" + }, + { + "name": "Asia", + "size": 47, + "color": "rgb(177, 89, 40)" + }, + { + "name": "Europe", + "size": 42, + "color": "rgb(106, 61, 154)" + } + ] + }, + { + "name": "Main Religion", + "description": "", + "type": "stratification", + "idtype": "Country", + "path": "main_religions.txt", + "separator": "\t", + "size": [ 173 ], + "ngroups": 4, + "groups": [ + { + "name": "Christian", + "size": 106, + "color": "rgb(55, 126, 184)" + }, + { + "name": "Eastern religions", + "size": 11, + "color": "rgb(228, 26, 28)" + }, + { + "name": "Muslim", + "size": 43, + "color": "rgb(77, 175, 74)" + }, + { + "name": "Not Categorized", + "size": 13, + "color": "rgb(153, 153, 153)" + } + ] + } +] diff --git a/src/data/gapminder/lifeexpectancy.txt b/src/data/gapminder/lifeexpectancy.txt new file mode 100644 index 0000000..82b0990 --- /dev/null +++ b/src/data/gapminder/lifeexpectancy.txt @@ -0,0 +1,174 @@ +country 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 +Afghanistan 28.211 28.20075333 28.19050667 28.18026 28.17001333 28.15976667 28.14952 28.13927333 28.12902667 28.11878 28.10853333 28.09828667 28.08804 28.07779333 28.06754667 28.0573 28.04705333 28.03680667 28.02656 28.01631333 28.00606667 27.99582 27.98557333 27.97532667 27.96508 27.95483333 27.94458667 27.93434 27.92409333 27.91384667 27.9036 27.89335333 27.88310667 27.87286 27.86261333 27.85236667 27.84212 27.83187333 27.82162667 27.81138 27.80113333 27.79088667 27.78064 27.77039333 27.76014667 27.7499 27.73965333 27.72940667 27.71916 27.70891333 27.69866667 27.68842 27.67817333 27.66792667 27.65768 27.64743333 27.63718667 27.62694 27.61669333 27.60644667 27.5962 27.58595333 27.57570667 27.56546 27.55521333 27.54496667 27.53472 27.52447333 27.51422667 27.50398 27.49373333 27.48348667 27.47324 27.46299333 27.45274667 27.4425 27.43225333 27.42200667 27.41176 27.40151333 27.39126667 27.38102 27.37077333 27.36052667 27.35028 27.34003333 27.32978667 27.31954 27.30929333 27.29904667 27.2888 27.27855333 27.26830667 27.25806 27.24781333 27.23756667 27.22732 27.21707333 27.20682667 27.19658 27.18633333 27.17608667 27.16584 27.15559333 27.14534667 27.1351 27.12485333 27.11460667 27.10436 27.09411333 27.08386667 27.07362 27.06337333 27.05312667 27.04288 27.03263333 27.02238667 27.01214 7.04506271 26.99164667 26.9814 27.07389333 27.16638667 27.25888 27.35137333 27.44386667 27.53636 27.62885333 27.72134667 27.81384 27.90633333 27.99882667 28.09132 28.18381333 28.27630667 28.3688 28.46129333 28.55378667 28.64628 28.73877333 28.83126667 28.92376 29.01625333 29.10874667 29.20124 29.29373333 29.38622667 29.47872 29.57121333 29.66370667 29.7562 30.11694 30.73568 31.35442 31.97316 32.5909 33.20964 33.82838 34.44712 35.06586 35.6846 36.30334 36.92308 37.54182 38.15956 38.7753 39.38804 39.99878 40.60552 41.20626 41.8 42.2 42.6 43 43.5 44 44.5 45 44.3 43.5 43.5 44.3 44.2 43 41.3 42.8 43.5 45.2 46.9 50.2 50.3 50.2 50.4 50.5 50.1 50.4 50.6 50.7 50 50.8 51 51.1 51.6 52.1 52.5 52.9 53.2 53.6 54 54.5 54.8 55.2 55.5 56.2 56.91 57.63 +Albania 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 19.42793192 35.4 35.4 35.39504 35.39008 35.38512 35.38016 35.3752 35.37024 35.36528 35.36032 35.35536 36.24520952 37.13505905 38.02490857 38.9147581 39.80460762 40.69445714 41.58430667 42.47415619 43.36400571 42.90576 41.9008 41.39584 39.89088 36.88592 33.88096 46.876 49.87104 51.37265143 52.26250095 53.15235048 54.0422 54.24524 54.71728 55.30732 56.01536 56.8384 57.76844 58.79248 59.88452 61.00256 62.0946 63.10964 63.99368 64.71272 65.25676 65.6398 65.89384 66.08288 66.26192 66.45896 66.7 67.1 67.5 68 68.6 69.1 69.5 70 70.4 70.7 70.9 71 71 71 71.5 72.2 72.7 73 73.2 73.4 73.5 73.4 73.4 73.4 73.6 73.8 73.9 73.9 73.8 74 74.2 74.4 74.5 74.4 74.4 74.4 74.5 74.7 74.9 75 75.2 75.5 75.7 75.8 75.9 76 +Algeria 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 20 15 22 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 21 11 15 22 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.8224 28.86266667 28.90293333 28.9432 29.8596 24.1164 26.6992 28.025 27.93 27.835 29.2584 30.7878 30.508 31.79 29.664 29.1606 28.6572 28.28783692 28.28783692 22.05666781 28.28783692 27.5 27.62468 27.46536 29.99804 31.46672 32.2634 31.71608 27.36076 30.78944 31.08212 32.3828 30.54748 31.89316 33.14184 32.68052 34.4662 35.69088 34.03856 33.54124 35.72892 36.2136 34.71252196 34.19948951 30.04843998 35.08656196 33.117 35.24168 38.36636 41.29104 43.56022 45.8294 46.14808 46.66776 47.19544 47.73212 48.2778 48.83348 49.39616 49.96684 50.54352 51.1232 51.70588 52.28756 52.86624 53.43892 53.9996 54.54128 55.06496 55.57664 56.08532 56.6 56.9 57.3 57.6 58 58.3 58.7 59.2 59.7 60.4 60.8 62.1 63.4 64.9 66.4 67.7 68.6 69.2 69.7 70.2 70.5 70.8 71.1 71.3 71.5 71.7 72.1 72.4 72.9 73 73.2 73.4 73.6 73.7 74.2 74.5 74.8 75 75.3 75.6 75.9 76.1 76.2 76.3 76.4 76.5 +Angola 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 26.98 10.43427281 26.98 26.98 27.19336 27.40672 27.62008 27.83344 28.0468 28.26016 28.47352 28.68688 28.90024 29.1136 29.32696 29.54032 29.75368 29.96704 30.1804 30.39376 30.60712 30.82048 31.03384 31.2472 31.68346 32.11972 32.55598 32.99224 33.4285 33.86476 34.30102 34.73728 35.17354 35.6098 36.02116 36.63152 37.24188 37.85324 38.4646 39.07696 39.69032 40.30368 40.91804 41.5324 42.14676 42.76212 43.37748 43.99184 44.6082 45.22456 45.84392 46.46328 47.08164 47.7 48.1 48.4 48.8 49.2 49.4 49.7 49.9 50.1 50.3 50.4 50.4 50.3 50.2 50 50 49.9 49.9 49.9 50.6 50.3 50.7 50.7 49.6 50.5 50.9 51 51.2 51.6 51.9 52.6 53 53.8 54.5 55.2 56 56.9 57.6 58.3 58.9 59.4 59.7 60.1 60.4 60.7 61 +Antigua and Barbuda 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 33.536 21.7501213 33.536 33.536 33.55404 34.39966621 35.24529241 36.09091862 36.93654483 37.78217103 38.62779724 39.47342345 40.31904966 41.16467586 42.01030207 42.85592828 43.70155448 44.54718069 45.3928069 46.2384331 47.08405931 47.92968552 48.77531172 49.62093793 50.46656414 51.31219034 52.15781655 53.00344276 53.84906897 54.69469517 55.54032138 56.38594759 57.23157379 58.0772 58.34524 58.86128 59.37432 59.88436 60.3904 60.89244 61.38948 61.88152 62.36456 62.8356 63.29464 63.73668 64.16172 64.56876 64.9608 65.34084 65.71288 66.07892 66.44196 66.8 67.3 67.7 68 67.8 67.5 67.3 67.4 68 68.9 69.9 71 71.9 72.7 73 73.1 73 72.9 72.8 72.5 72.4 72.3 72.1 72.1 72.2 72.2 72.6 72.9 73.2 73.6 73.9 74.1 74.2 74.3 74.3 74.3 74.4 74.6 74.8 75.1 75.2 75.2 75.2 75.2 75.2 75.2 +Argentina 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.2 33.18 33.16 33.14 33.12 33.1 33 32.9 32.8 32.7 32.6 32.88 33.16 33.44 33.72 34 33.86 33.72 33.58 33.44 33.3 34 34.7 35.4 36.1 36.8 37.38 37.96 38.54 39.12 39.7 40.46 41.22 41.98 42.74 43.5 44.04 44.58 45.12 45.66 46.2 47 47.8 41.76362058 49.4 50.2 50.67302 51.14604 51.61906 52.09208 52.5651 52.89812 53.23114 53.56416 53.89718 54.2302 54.22322 54.21624 54.20926 54.20228 54.1953 55.14832 56.10134 57.05436 58.00738 58.9604 59.53342 60.10644 60.67946 61.25248 61.8255 61.70212 61.57874 61.45536 61.33198 61.2086 61.51162 62.09664 62.62466 63.09368 63.5047 63.85872 64.15574 64.39976 64.59378 64.7428 64.85582 64.94084 65.01086 65.08088 65.1669 65.28192 65.43094 65.61796 65.84198 66.1 66.4 67 67.5 67.7 67.9 67.9 68.4 69.2 69.9 70.2 70.3 70.7 70.8 71 71.9 72 72.1 72.2 72.4 72.6 72.7 72.8 73.1 73.4 73.5 73.5 73.6 73.7 74 74.3 74.4 74.3 74.5 75 75.4 75.5 75.4 75.5 75.6 75.8 75.9 75.9 76 76.1 76.2 +Armenia 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.995 33.471 32.947 32.423 31.899 31.375 31.419 31.463 31.507 31.551 31.595 31.795 31.995 32.195 32.395 32.595 32.795 32.995 33.195 33.395 33.595 33.795 33.995 34.195 34.395 34.595 34.795 34.995 35.195 35.395 35.595 35.795 35.995 36.195 36.395 36.22833333 36.06166667 35.895 36.145 36.395 36.645 36.895 37.145 37.395 37.645 37.895 38.145 38.395 41.35363338 41.7772335 39.60897988 39.195 38.795 38.795 35.795 27 37 28 37.88714 38.77428 39.52642 41.91356 40.9007 43.98784 43.21036814 44.60549427 43.25011797 42.45525174 40.75854 38.14568 31.53282 44.36658426 45.81107279 47.36731428 46.26304569 47.83480107 50.12066 47.5378 25.62994 22.01708 19.90422 27.29136 36.6785 53.86064 45.74778 53.70492 56.39206 58.5792 58.67934 58.99048 59.29962 59.60876 59.9159 60.22204 60.52818 60.83532 61.14346 61.4566 61.77374 62.09688 62.42202 62.74816 63.0723 63.39544 63.71058 64.00772 64.27786 64.5 65.1 65.6 66.1 66.7 67.1 67.6 68 68.4 68.7 69 69.4 69.6 69.9 70.2 70.5 70.7 70.7 68.2 70.3 70.1 69.8 69.4 69.2 69.2 69.4 69.7 70.1 70.6 71 71.4 71.7 71.9 72.1 72.1 72.2 72.2 72.3 72.5 72.6 72.9 73.2 73.5 73.8 74.1 74.4 +Australia 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.57921569 35.10843137 35.63764706 36.16686275 36.69607843 37.22529412 37.7545098 38.28372549 38.81294118 39.34215686 39.87137255 40.40058824 40.92980392 41.45901961 41.98823529 42.51745098 43.04666667 43.57588235 44.10509804 44.63431373 45.16352941 45.6927451 46.22196078 46.75117647 47.28039216 47.80960784 48.33882353 48.86803922 49.3972549 49.92647059 50.45568627 50.98490196 51.51411765 52.04333333 52.57254902 53.10176471 53.63098039 54.16019608 54.68941176 55.21862745 55.74784314 56.27705882 56.80627451 57.3354902 57.86470588 58.39392157 58.92313725 54.80239165 59.98156863 60.51078431 61.0438 62.8976 61.7414 62.5452 63.239 62.9628 62.9366 62.9904 63.1842 64.998 65.4318 65.7356 65.5694 64.9332 65.207 65.3308 65.8946 65.9384 65.8922 66.336 66.2198 65.9636 66.4874 68.1212 68.555 68.0788 68.6926 68.6164 69.2402 69.134 68.8378 69.2416 69.8254 69.9792 70.303 70.1868 70.4706 71.0244 70.5982 71.042 71.3158 71.0896 71.1534 70.8172 71.151 70.9948 71.2786 70.9124 71.3262 71 71.3 71.7 72 72.1 72.5 73 73.4 73.8 74.2 74.5 74.8 75 75.3 75.5 75.7 76 76.2 76.4 76.6 77 77.4 77.7 78 78.2 78.4 78.6 78.9 79.1 79.3 79.7 80.1 80.4 80.7 81 81.2 81.4 81.5 81.5 81.6 81.7 81.8 81.8 81.8 81.8 81.8 +Austria 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.4 34.45454545 34.50909091 34.56363636 34.61818182 34.67272727 34.72727273 34.78181818 34.83636364 34.89090909 34.94545455 35 35.23 35.46 35.69 35.92 36.15 36.38 36.61 36.84 37.07 37.3 37.77 38.24 38.71 39.18 39.65 40.12 40.59 41.06 41.53 42 41.05 40.1 40.725 41.35 41.975 42.6 43.225 43.85 44.475 45.1 45.6676 46.2352 46.8028 47.3704 47.938 48.5056 32.43309186 49.6408 50.2084 50.7798 51.3512 51.9226 52.494 53.0654 53.6368 54.2082 54.7796 55.351 55.9224 56.4938 56.801225 57.10865 57.416075 57.7235 58.030925 58.33835 58.645775 58.1722 57.876 56.5798 54.1836 50.2874 39.1912 31.495 56.0988 61.4126 63.3464 63.5402 64.994 65.3778 66.9216 67.4154 67.4492 67.733 67.8568 67.6206 68.6344 68.5682 68.932 69.9058 69.6996 69.8334 70.3272 70.121 70.4348 70.3186 70.4724 70.2462 70.3 70.4 70.6 71 71.1 71.5 71.9 72.2 72.4 72.5 72.7 72.9 73 73.3 73.6 74 74.5 75 75.4 75.6 75.7 75.8 76 76.2 76.5 76.8 77.2 77.6 77.8 78 78.2 78.4 78.7 79 79.3 79.6 80 80.2 80.4 80.4 80.5 80.7 80.7 80.8 80.9 81 +Azerbaijan 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 29.165 28.641 28.117 27.593 27.069 26.545 26.589 26.633 26.677 26.721 26.765 26.965 27.165 27.365 27.565 27.765 27.965 28.165 28.365 28.565 28.765 28.965 29.165 29.365 29.565 29.765 29.965 30.165 30.365 30.565 30.765 30.965 31.165 31.365 31.565 31.39833333 31.23166667 31.065 31.315 31.565 31.815 32.065 32.315 32.565 32.815 33.065 33.315 33.565 36.52363338 36.9472335 34.77897988 34.365 33.965 33.965 30.965 22 32 30 32.9153 33.8306 34.7809 37.1962 36.2115 39.3268 38.57748814 40.00077427 38.67355797 37.90685174 36.0683 33.4836 25.8989 39.93082426 41.40347279 42.98787428 41.91176569 43.51168107 45.8257 43.271 28.5213 24.9366 22.8519 29.9672 39.8825 49.7628 41.6781 49.6634 52.3787 54.594 54.7163 55.0436 55.3709 55.6962 56.0205 56.3448 56.6681 56.9914 57.3167 57.644 57.9743 58.3076 58.6419 58.9742 59.3055 59.6368 59.9641 60.2764 60.5617 60.8 61.5 62 62.6 63.2 63.7 64.3 64.6 64.9 65.2 65.3 65.5 65.6 65.8 66 66.2 66.3 66.4 66.4 66.4 66.1 65.9 65.1 65.1 65.1 65.6 66.1 66.5 67 67.5 68 68.5 68.9 69.1 69.3 69.5 69.9 70.3 70.6 71 71.4 71.7 72 72.3 72.6 72.9 +Bahamas 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 35.179 22.81570602 35.179 35.179 35.12214 35.89286621 36.66359241 37.43431862 38.20504483 38.97577103 39.74649724 40.51722345 41.28794966 42.05867586 42.82940207 43.60012828 44.37085448 45.14158069 45.9123069 46.6830331 47.45375931 48.22448552 48.99521172 49.76593793 50.53666414 51.30739034 52.07811655 52.84884276 53.61956897 54.39029517 55.16102138 55.93174759 56.70247379 57.4732 57.63234 58.00448 58.36562 58.71576 59.0569 59.38704 59.70618 60.01632 60.31646 60.6066 60.88874 61.16288 61.42802 61.68716 61.9393 62.18444 62.42258 62.65372 62.87886 63.1 63.7 64.2 64.9 65.5 65.9 66.2 66.3 66.2 66 65.9 66.1 66.4 66.7 67 67.2 67.3 67.5 67.8 68.2 68.6 68.8 68.9 69 69 69 69.2 69.4 69.6 70 70.3 70.6 70.8 71.2 71.9 72.1 72.1 72.1 72.2 72.3 72.4 72.5 72.6 72.5 72.4 72.3 +Bahrain 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 25.11958228 30.3 30.3 30.331 30.362 30.393 30.424 30.455 30.486 30.517 30.548 30.579 30.61 30.641 30.672 30.703 30.734 30.765 31.52026667 32.27553333 33.0308 33.78606667 34.54133333 35.2966 36.05186667 36.80713333 37.5624 38.31766667 39.07293333 39.8282 40.58346667 41.33873333 42.094 42.544 43.451 44.429 45.479 46.6 47.791 49.047 50.36 51.718 53.106 54.503 55.89 57.243 58.546 59.784 60.952 62.056 63.099 64.081 65 65.6 66.3 67 67.7 68.2 68.8 69.4 69.8 70.3 70.6 71 71.2 71.3 71.5 71.5 71.4 71.4 71.3 71.4 71.4 71.6 71.8 72.1 72.4 72.7 72.9 73.1 73.2 73.5 73.6 73.8 74.1 74.4 74.8 75.2 75.7 76.4 77.1 77.7 78.2 78.4 78.9 79 79.1 79.2 +Bangladesh 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25 24 25.2 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.27 25.04 24.81 24.58 24.35 24.12 23.89 23.66 23.43 23.2 23.08 22.96 22.84 22.72 21.6 21 22.36 22.18 22 20 19 21.86363636 21.81818182 21.77272727 21.72727273 21.68181818 21.63636364 21.59090909 21.54545455 21.5 21.67 21.84 22.01 22.18 22.35 22.52 22.69 22.86 23.03 23.2 23.37 13.05215362 23.71 23.88 23.9924 24.1048 24.2172 24.3296 24.442 24.5544 25.24433197 25.93426394 26.62419592 27.31412789 28.00405986 28.69399183 29.3839238 30.07385578 30.76378775 31.45371972 32.14365169 32.83358366 33.52351564 34.21344761 34.90337958 32.54639268 22.22272612 24.60742141 35.63593605 41.5024 35.52073605 36.95592903 40.3296 41.147 41.2524 41.5328 41.8382 42.1686 42.525 42.9104 43.3218 43.7622 44.2326 44.733 45.2564 45.7898 46.3052 46.7626 47.06 47.0844 46.8018 46.2432 45.4846 44.7 50.9 51.1 51.3 51 51.9 52.2 52.5 52.9 53.3 53.8 54.2 54.7 55.1 55.6 55.8 56.5 56.9 57.3 57.9 58.5 57.2 60.1 60.9 61.6 62.4 63.2 63.9 64.6 65.2 65.8 66.3 66.8 67.2 67.6 67.9 68.1 68.1 68.4 68.5 68.6 68.9 69.2 69.5 69.8 70.1 +Barbados 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 32.124 20.83435403 32.124 32.124 32.19672 33.09702621 33.99733241 34.89763862 35.79794483 36.69825103 37.59855724 38.49886345 39.39916966 40.29947586 41.19978207 42.10008828 43.00039448 43.90070069 44.8010069 45.7013131 46.60161931 47.50192552 48.40223172 49.30253793 50.20284414 51.10315034 52.00345655 52.90376276 53.80406897 54.70437517 55.60468138 56.50498759 57.40529379 58.3056 58.65432 59.27704 59.89076 60.49548 61.0922 61.67992 62.25964 62.82936 63.38908 63.9388 64.47752 65.00324 65.51796 66.01868 66.5084 66.98612 67.45384 67.91256 68.36128 68.8 68.9 69.1 69.2 69.5 69.7 70.1 70.5 71 71.5 72.1 72.6 73 73.2 73.3 73.3 73.2 73.1 73 73 73.1 73.2 73.2 73.3 73.3 73.4 73.5 73.6 73.8 74 74.3 74.5 74.5 74.6 74.9 75 75.1 75.2 75.3 75.3 75.4 75.5 75.5 75.6 75.7 75.8 +Belarus 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.2 36.81130769 37.42261538 38.03392308 38.64523077 39.25653846 39.86784615 40.47915385 41.09046154 41.70176923 42.31307692 42.92438462 43.53569231 44.147 42.922 37.372 37.372 35.372 31.372 33.372 30.422 33.7056 34.5892 43.4728 45.9564 45.04 48.2236 47.3072 48.8908 46.9744 46.908 47.8916 39.1252 25.7868 41.8924 51.726 52.4096 51.1432 52.3768 52.1604 51.944 19.6556 14.6392 13.6228 20.6064 29.59 57.2456 47.1792 59.8128 62.5964 64.53 64.7386 65.1672 65.5838 65.9904 66.384 66.7666 67.1352 67.4878 68.4204 71.194 71.8976 70.6012 71.2448 72.7584 72.282 72.6256 72.3592 72.4528 72.0364 71.5 71.5 71.6 71.6 71.6 71.5 71.4 71.2 71.1 70.9 70.8 70.7 70.6 70.5 70.6 71.1 71.6 71.9 71.7 71.3 70.8 70.3 69.6 69 68.5 68.2 68.1 68.1 68 68.1 68.2 68.1 68.1 68.2 68.4 68.8 69.2 69.8 70.1 70.2 70.2 70.1 70.1 70.2 70.3 70.4 +Belgium 40 40.00804878 40.01609756 40.02414634 40.03219512 40.0402439 40.04829268 40.05634146 40.06439024 40.07243902 40.0804878 40.08853659 40.09658537 40.10463415 40.11268293 40.12073171 40.12878049 40.13682927 40.14487805 40.15292683 40.16097561 40.16902439 40.17707317 40.18512195 40.19317073 40.20121951 40.20926829 40.21731707 40.22536585 40.23341463 40.24146341 40.2495122 40.25756098 40.26560976 40.27365854 40.28170732 40.2897561 40.29780488 40.30585366 40.31390244 40.32195122 40.33 38.66 40.36 41.9 41.03 37.83 35.11 38.04 34.5 42.28 41.88 41.77 41.33 39.78 37.49 40.92 40.49 40.18 38.98 45.12 41.27 43.12 41.33 39.81 37.74 32.47 43.08 42.56 42.58 40.92 34.35 40.04 43.48 44.67 42.17 43.68 44.48 44.24 43.84 42.48 44.42 45.54 44.89 44.24 45.48 43.36 46.06 44.92 45.07 44.14 44.06 43.16 44.44 46.65 45.46 48.06 48.82 48.12 46.49 46.59 49.44 49.18 49.26 49.32 50.01 49.74 51.11 49.7 50.7 51.37 49.25 52.26 52.51 42 40 42 43 34.9423694 49.86 53.66 54.7506 55.1512 56.7718 57.5124 57.163 56.9736 57.2042 57.5348 55.0754 57.176 58.5166 58.5972 58.7678 60.4284 60.019 60.0196 60.0102 60.1608 60.0214 55.972 58.9626 59.2132 60.4038 56.9544 58.405 61.9356 63.4762 64.9968 65.4974 66.368 66.8186 68.0192 68.3898 68.6504 68.601 68.8916 69.2622 69.9528 70.3534 69.674 70.5446 70.2752 70.0858 70.7564 70.607 70.6776 70.9682 70.6588 70.7394 71 71.1 71.3 71.6 71.9 72.2 72.4 72.6 72.8 73 73.3 73.6 73.8 74 74.3 74.6 74.9 75.2 75.5 75.8 76 76.2 76.4 76.5 76.7 76.9 77.1 77.3 77.5 77.6 77.8 78 78.2 78.5 78.9 79.2 79.3 79.4 79.4 79.6 79.8 80 80.1 80.2 80.3 80.4 +Belize 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 26.5 27.0625 27.625 28.1875 28.75 29.3125 29.875 30.4375 26.90723923 31.5625 32.125 32.72018 33.31536 33.91054 34.50572 35.1009 35.69608 36.29126 36.88644 37.48162 38.0768 38.67198 39.26716 39.86234 40.45752 41.415575 42.37363 43.331685 44.28974 45.247795 46.20585 47.163905 48.12196 49.080015 50.03807 50.996125 51.95418 52.912235 53.87029 54.828345 55.7864 56.09908 56.68976 57.27544 57.85612 58.4328 59.00548 59.57516 60.14284 60.71352 61.2882 61.87088 62.46456 63.06824 63.67892 64.2936 64.90528 65.50696 66.09364 66.65932 67.2 67.6 67.8 68 68.3 68.4 68.5 68.6 68.7 69.1 69.3 69.5 69.7 70 70.6 71.1 71.6 72 72.2 72.2 72.1 71.8 71.7 71.6 71.5 71.2 70.7 70.2 69.6 69.1 69 69.1 69.4 70 70.4 70.6 70.8 70.8 70.7 70.3 70.1 70 70 70 70 70 +Benin 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 11.98897173 31 31 31.0984 31.1968 31.2952 31.3936 31.492 31.5904 31.6888 31.7872 31.8856 31.984 32.0824 32.1808 32.2792 32.3776 32.476 32.5744 32.6728 32.7712 32.8696 32.968 33.0664 33.1648 33.2632 33.3616 33.74266667 34.12373333 34.5048 34.88586667 35.26693333 35.648 36.0054 36.6158 37.2182 37.8106 38.393 38.9664 39.5328 40.0912 40.6456 41.199 41.7554 42.3168 42.8882 43.4716 44.072 44.6904 45.3268 45.9752 46.6346 47.3 47.8 48.5 49.1 49.8 50.4 51 51.6 52 52.5 53 53.4 53.8 54.2 54.6 55 55.5 55.9 56.3 56.7 57.1 57.5 57.9 58.2 58.4 58.5 58.6 58.7 58.8 59 59.2 59.4 59.8 60.3 60.9 61.4 62.1 62.7 63.2 63.6 64 64.3 64.6 64.9 65.2 65.5 +Bhutan 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 28.799 18.45509833 28.799 28.799 29.04206 29.28512 29.52818 29.77124 30.0143 30.25736 30.50042 30.74348 30.98654 31.2296 31.47266 31.71572 31.95878 32.20184 32.4449 32.68796 32.93102 33.17408 33.41714 33.6602 33.90326 34.14632 34.38938 34.63244 34.8755 35.11856 35.36162 35.60468 35.84774 36.0908 36.50986 37.10892 37.71498 38.32804 38.9481 39.57316 40.20322 40.83628 41.46634 42.0914 42.70746 43.31352 43.91558 44.52164 45.1497 45.81676 46.53882 47.32488 48.17894 49.1 49.4 49.8 50.1 50.4 50.7 51.1 51.4 51.9 52.3 52.9 53.5 54.1 54.7 55.4 56 56.6 57.3 58 58.7 59.3 59.9 60.5 61 61.4 62.1 62.7 63.2 63.7 64.2 63.9 65.1 65.5 65.9 66.3 66.6 66.9 67.3 67.6 67.9 68.3 68.7 69 69.4 69.8 70.2 +Bolivia 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 29.17253042 33 33 33.0927 33.1854 33.2781 33.3708 33.4635 33.5562 33.6489 33.7416 33.8343 33.927 34.0197 34.1124 34.2051 34.2978 34.3905 34.4832 34.5759 34.6686 34.7613 34.854 35.6312 36.4084 37.1856 37.9628 38.74 39.5172 40.2944 41.0716 41.8488 42.626 42.8617 43.2404 43.6231 44.0078 44.3945 44.7842 45.1759 45.5706 45.9673 46.367 46.7687 47.1734 47.5811 47.9918 48.4005 48.8002 49.1919 49.5816 49.9783 50.4 51.1 51.8 52.5 53.2 54 54.8 55.5 56.3 57 57.4 58 58.4 58.8 59.3 59.8 60.3 60.8 61.4 62 62.6 63.1 63.6 64.1 64.5 65 65.4 65.9 66.4 67 67.6 68.2 68.7 69.2 69.7 70 70.3 70.6 70.9 71.1 71.3 71.5 71.7 71.9 72.1 72.3 +Bosnia and Herzegovina 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 19.26328843 35.1 35.1 35.65244667 36.20489333 36.75734 37.30978667 37.86223333 38.41468 38.96712667 39.51957333 40.07202 40.62446667 41.17691333 41.72936 42.28180667 42.83425333 43.3867 43.93914667 44.49159333 45.04404 45.59648667 46.14893333 31.54105937 27.70816952 24.00226381 21.97889778 26.1142619 41.21788 49.22626 50.23464 50.94302 51.6734 52.27278 53.43316 54.53554 55.58192 56.5703 57.50168 58.37706 59.19844 59.96682 60.6852 61.35958 61.99596 62.60034 63.18272 63.7541 64.32048 64.88786 65.45624 66.02662 66.6 66.9 67.2 67.6 67.9 68.2 68.5 68.8 69.2 69.5 69.8 70.2 70.5 70.9 71.2 71.5 71.9 72.2 72.6 73 73.1 72.7 68.1 68.2 70.6 67.1 73 73.7 74.3 74.8 75.2 75.6 75.7 75.8 75.8 75.7 75.6 75.6 75.9 76.2 76.5 77 77.3 77.5 77.7 77.9 +Botswana 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 33.6 10.9083229 33.6 33.6 33.72282 33.84564 33.96846 34.09128 34.2141 34.33692 34.45974 34.58256 34.70538 34.8282 34.95102 35.07384 35.19666 35.31948 35.4423 35.56512 35.68794 35.81076 35.93358 36.0564 36.17922 36.30204 36.42486 36.54768 36.6705 39.43912 42.20774 44.97636 47.74498 50.5136 50.84442 51.38124 51.91606 52.44988 52.9827 53.51152 54.03634 54.55616 55.06798 55.5668 56.05062 56.52144 56.98126 57.43908 57.9109 58.41372 58.95854 59.55436 60.20218 60.9 61.4 62 62.6 63.2 63.7 64.2 64.6 65.1 65.6 65.8 66.2 66.5 66.9 67.2 67.5 67.7 67.9 68 68.1 67.9 67.6 66.9 65.8 64.2 62.3 60.2 57.9 55.6 53.5 51.6 50.2 49.3 49.4 51 54.3 57.5 60.1 61.2 62.6 64.5 65.7 65.5 65.8 66.1 66.4 +Brazil 32 31.99980667 31.99961333 31.99942 31.99922667 31.99903333 31.99884 31.99864667 31.99845333 31.99826 31.99806667 31.99787333 31.99768 31.99748667 31.99729333 31.9971 31.99690667 31.99671333 31.99652 31.99632667 31.99613333 31.99594 31.99574667 31.99555333 31.99536 31.99516667 31.99497333 31.99478 31.99458667 31.99439333 31.9942 31.99400667 31.99381333 31.99362 31.99342667 31.99323333 31.99304 31.99284667 31.99265333 31.99246 31.99226667 31.99207333 31.99188 31.99168667 31.99149333 31.9913 31.99110667 31.99091333 31.99072 31.99052667 31.99033333 31.99014 31.98994667 31.98975333 31.98956 31.98936667 31.98917333 31.98898 31.98878667 31.98859333 31.9884 31.98820667 31.98801333 31.98782 31.98762667 31.98743333 31.98724 31.98704667 31.98685333 31.98666 31.98646667 31.98627333 31.98608 31.98588667 31.98569333 31.9855 31.98530667 31.98511333 31.98492 31.98472667 31.98453333 31.98434 31.98414667 31.98395333 31.98376 31.98356667 31.98337333 31.98318 31.98298667 31.98279333 31.9826 31.98240667 31.98221333 31.98202 31.98182667 31.98163333 31.98144 31.98124667 31.98105333 31.98086 31.98066667 31.98047333 31.98028 31.98008667 31.97989333 31.9797 31.97950667 31.97931333 31.97912 31.97892667 31.97873333 31.97854 31.97834667 31.97815333 31.97796 31.97776667 31.97757333 31.97738 26.97819043 31.97699333 31.9768 32.01982 32.06284 32.10586 32.14888 32.1919 32.23492 32.27794 32.32096 32.36398 32.407 32.911772 33.416544 33.921316 34.426088 34.93086 35.435632 35.940404 36.445176 36.949948 37.45472 38.627276 39.799832 40.972388 42.144944 43.3175 44.9062 46.4949 48.0836 49.6723 51.261 51.5417 52.0654 52.5911 53.1208 53.6545 54.1902 54.7279 55.2666 55.8013 56.33 56.8477 57.3524 57.8411 58.3118 58.7665 59.2062 59.6349 60.0586 60.4783 60.9 61.2 61.6 62.1 62.6 63.1 63.4 64.1 64.6 65 65.3 66.4 67 67 67.1 67.4 67.6 68 68.2 68.6 69.1 69.5 69.7 69.7 70 70.2 70.5 71 71.2 71.5 71.9 72.2 72.5 72.7 73 73.4 73.7 73.8 73.9 74 74.2 74.5 74.7 75 75.3 75.6 +Brunei 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.90338462 30.60676923 31.31015385 32.01353846 32.71692308 33.42030769 27.70640822 34.82707692 35.53046154 36.25322615 36.97599077 37.69875538 38.42152 39.14428462 39.86704923 40.58981385 41.31257846 42.03534308 42.75810769 43.48087231 44.20363692 44.92640154 45.64916615 46.37193077 47.09469538 47.81746 48.54022462 49.26298923 49.98575385 50.70851846 51.43128308 52.15404769 52.87681231 53.59957692 54.32234154 55.04510615 55.76787077 56.49063538 57.2134 57.53478 58.16016 58.78754 59.41892 60.0513 60.68668 61.32206 61.95544 62.58182 63.1972 63.79658 64.37396 64.92634 65.45172 65.9501 66.42748 66.88586 67.33324 67.77062 68.2 69 69.8 70.6 71.1 71.2 71.2 71.1 70.9 71 71.1 71.2 71.5 72 72.5 72.9 73.3 73.5 73.7 73.8 73.9 73.9 73.9 74 74.1 74.3 74.5 74.7 75 75.3 75.5 75.9 76.3 76.8 77.1 77.3 77.4 77.5 77.8 78.1 78.5 78.7 78.7 78.7 78.7 78.7 +Bulgaria 35.8 35.844 35.888 35.932 35.976 36.02 36.064 36.108 36.152 36.196 36.24 36.284 36.328 36.372 36.416 36.46 36.504 36.548 36.592 36.636 36.68 36.724 36.768 36.812 36.856 36.9 36.944 36.988 37.032 37.076 37.12 37.164 37.208 37.252 37.296 37.34 37.384 37.428 37.472 37.516 37.56 37.604 37.648 37.692 37.736 37.78 37.824 37.868 37.912 37.956 38 38.044 38.088 38.132 38.176 38.22 38.264 38.308 38.352 38.396 38.44 38.484 38.528 38.572 38.616 38.66 38.704 38.748 38.792 38.836 38.88 38.924 38.968 39.012 39.056 39.1 39.144 39.188 39.232 39.276 39.32 39.364 39.408 39.452 39.496 39.54 39.584 39.628 39.672 39.716 39.76 39.804 39.848 39.892 39.936 39.98 40.024 40.068 40.112 40.156 40.2 41.35 42.5 42.76666667 43.03333333 43.3 43.37222222 43.44444444 43.51666667 43.58888889 43.66111111 43.73333333 43.80555556 43.87777778 43.95 44.02222222 44.09444444 44.16666667 33.71592767 44.31111111 44.38333333 44.44815556 44.51297778 44.5778 44.80373333 45.02966667 45.2556 45.9982 46.7408 47.4834 48.226 48.7186 49.2112 49.7038 50.1964 50.689 51.1816 51.6742 51.8948 52.1154 52.336 52.5566 51.8372 51.3298 49.8224 51.815 53.4076 53.8802 55.5828 57.7054 61.168 60.4006 59.3632 63.8958 64.1484 64.551 64.9436 66.3362 68.4288 66.2814 68.884 69.9166 69.1992 70.0218 70.8144 70.967 70.8896 70.0722 70.8948 70.0674 70.9 71 71.1 71.1 71.1 71.2 71.2 71 71.1 71.1 71.2 71.4 71.3 71.4 71.2 71.3 71.4 71.5 71.5 71.4 71.4 71.3 71.2 71 70.8 70.9 70.8 70.7 71.1 71.4 71.7 71.9 72.2 72.4 72.4 72.5 72.7 72.9 73.2 73.3 73.6 74 74.3 74.5 74.7 74.9 +Burkina Faso 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 29.2 11.29283788 29.2 29.2 29.3141 29.4282 29.5423 29.6564 29.7705 29.8846 29.9987 30.1128 30.2269 30.341 30.4551 30.5692 30.6833 30.7974 30.9115 31.0256 31.1397 31.2538 31.3679 31.482 31.5961 31.7102 31.8243 31.9384 32.0525 32.323 32.5935 32.864 33.1345 33.405 33.7611 34.3582 34.9493 35.5374 36.1205 36.6986 37.2747 37.8478 38.4209 38.996 39.5751 40.1612 40.7533 41.3514 41.9495 42.5396 43.1167 43.6838 44.2429 44.8 45 45.4 45.8 46.3 47 47.7 48.4 49 49.6 50.2 50.7 51.1 51.4 51.7 52 52.4 52.6 52.7 52.8 52.7 52.6 52.4 52.1 51.9 51.8 51.9 52.1 52.4 52.9 53.3 53.8 54.4 55.1 55.9 56.8 57.7 58.6 59.4 60 60.7 61.2 61.6 62 62.4 62.8 +Burundi 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 12.18234224 31.5 31.5 28.01734 24.53468 31.55202 31.56936 28.0867 26.10404 24.62138 26.13872 26.15606 31.6734 31.69074 31.70808 31.72542 31.74276 31.7601 31.77744 31.79478 31.81212 31.82946 31.8468 31.86414 31.88148 30.49882 17.91616 31.9335 33.33604 34.73858 36.14112 37.54366 38.9462 39.11554 39.43588 39.75522 40.07256 40.3899 40.70524 41.02058 41.33692 41.65526 41.9786 42.30594 42.63828 42.97362 43.30596 43.6213 43.90364 44.14698 44.35132 44.52866 44.7 44.9 45.1 45.2 45.1 45 45.1 45.2 45.5 46 46.4 47.2 48 48.8 49.4 49.8 49.9 49.8 49.6 49.3 49 48.7 48.4 48 27 47 46.6 46.7 46.8 47.1 47.5 48.4 49.4 50.7 52.2 53.8 55.3 56.5 57.4 58.2 58.7 59.1 59.5 59.8 60.1 60.4 +Cambodia 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 22.42884966 35 35 35.11676 35.23352 35.35028 35.46704 35.5838 35.70056 35.81732 35.93408 36.05084 36.1676 36.28436 36.40112 36.51788 36.63464 36.7514 36.86816 36.98492 37.10168 37.21844 36.3352 36.05196 36.06872 36.08548 34.30224 30.919 38.03576 39.34727 40.65878 41.97029 43.2818 43.53156 43.89732 44.23008 44.52984 44.7976 45.03836 45.25612 45.45788 45.66164 45.8814 46.13116 46.41592 46.72768 47.03744 47.3572 47.70296 48.02572 48.22548 48.18124 47.5 47.8 48.1 48.2 48.3 44.8 55.1 55.1 49.3 49.4 54.4 54.7 55 55.5 56 56.3 56.6 58.1 58.6 58.9 59.1 59.3 59.5 59.5 59.5 59.7 59.7 59.8 60 60.4 60.9 61.6 62.3 63 63.8 64.5 65.2 65.8 66.2 66.6 66.9 67.2 67.5 67.8 68.1 68.4 +Cameroon 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 28.75 5.661210662 28.75 28.75 28.87194 28.99388 29.11582 29.23776 29.3597 29.48164 29.60358 29.72552 29.84746 29.9694 30.09134 30.21328 30.33522 30.45716 30.5791 30.70104 30.82298 30.94492 31.06686 31.1888 31.31074 31.43268 31.55462 31.67656 31.7985 33.74424 35.68998 37.63572 39.58146 41.5272 41.80914 42.26008 42.72702 43.21096 43.7119 44.22984 44.76178 45.30672 45.86166 46.4236 46.98654 47.55048 48.11042 48.66836 49.2273 49.79324 50.37018 50.96412 51.57306 52.2 52.7 53.1 53.4 53.8 54.2 54.4 54.7 55 55.3 55.8 56.2 56.7 57.3 57.6 58.2 58.3 58.8 58.9 58.8 58.7 58.5 58.1 57.7 57.2 56.8 56.3 55.9 55.5 55.2 55 54.8 54.7 54.7 54.7 55.2 55.7 56 56.6 57.1 57.5 57.9 58.3 58.7 59.1 59.5 +Canada 39 39.00149677 39.00299355 39.00449032 39.0059871 39.00748387 39.00898065 39.01047742 39.01197419 39.01347097 39.01496774 39.01646452 39.01796129 39.01945806 39.02095484 39.02245161 39.02394839 39.02544516 39.02694194 39.02843871 39.02993548 39.03143226 39.03292903 39.03442581 39.03592258 39.03741935 39.03891613 39.0404129 39.04190968 39.04340645 39.04490323 39.0464 39.17348 39.30056 39.42764 39.55472 39.6818 39.80888 39.93596 40.06304 40.19012 40.3172 40.391448 40.465696 40.539944 40.614192 40.68844 40.762688 40.836936 40.911184 40.985432 41.05968 41.113216 41.166752 41.220288 41.273824 41.32736 41.380896 41.434432 41.487968 41.541504 41.59504 41.691216 41.787392 41.883568 41.979744 42.07592 42.172096 42.268272 42.364448 42.460624 42.5568 42.774096 42.991392 43.208688 43.425984 43.64328 43.860576 44.077872 44.295168 44.512464 44.72976 44.7742 44.81864 44.86308 44.90752 44.95196 44.9964 45.04084 45.08528 45.12972 45.17416 45.520192 45.866224 46.212256 46.558288 46.90432 47.250352 47.596384 47.942416 48.288448 48.63448 49.022096 49.409712 49.797328 50.184944 50.57256 50.960176 51.347792 51.735408 52.123024 52.51064 52.961576 53.412512 53.863448 54.314384 54.76532 55.216256 47.16996724 56.118128 56.569064 57.019 57.018 57.017 58.826 59.305 57.984 58.673 58.562 57.961 58.94 60.349 61.418 62.347 62.756 62.475 62.704 61.333 63.292 63.721 63.99 63.739 64.678 64.587 65.326 66.305 66.504 66.753 67.302 67.621 68.25 68.519 68.718 69.097 69.956 70.015 70.004 69.923 70.582 70.621 71 71.229 71.258 71.267 71.646 71.745 71.874 72.083 72.242 72.401 72.6 72.9 72.9 73.1 73.2 73.6 73.9 74.2 74.4 74.7 75 75.4 75.8 76.1 76.4 76.5 76.6 76.8 77.1 77.2 77.4 77.6 77.7 77.8 77.9 78 78.3 78.7 78.9 79.1 79.3 79.5 79.7 79.9 80.1 80.3 80.5 80.6 80.7 80.9 81.1 81.3 81.4 81.5 81.6 81.7 +Cape Verde 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 33.8 13.07184659 33.8 33.8 33.96974 34.13948 34.30922 34.47896 34.6487 34.81844 34.98818 35.15792 35.32766 35.4974 35.66714 35.83688 36.00662 36.17636 36.3461 37.44924 38.55238 39.65552 40.75866 41.8618 42.96494 44.06808 45.17122 46.27436 47.3775 48.48064 49.58378 50.68692 51.79006 52.8932 53.12694 53.42768 53.73142 54.03716 54.3449 54.65264 54.96138 55.26712 55.56586 55.8546 56.13334 56.40408 56.67782 56.97356 57.3243 57.76704 58.32178 58.99852 59.79626 60.7 61.1 62.1 63.2 64.3 65.2 65.9 66.5 67.1 67.4 67.5 67.4 67.2 67.1 67 67.2 67.4 67.8 68.2 68.6 68.8 68.9 69 69 69 69.1 69.2 69.3 69.5 69.8 70.1 70.4 70.8 71.1 71.4 71.8 72.2 72.5 72.9 73.1 73.4 73.7 74 74.2 74.4 74.6 +Chad 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 18.09718107 30.9 30.9 31.10538 31.31076 31.51614 31.72152 31.9269 32.13228 32.33766 32.54304 32.74842 32.9538 33.15918 33.36456 33.56994 33.77532 33.9807 34.18608 34.39146 34.59684 34.80222 35.0076 35.21298 35.41836 35.62374 35.82912 36.0345 37.17088 38.30726 39.44364 40.58002 41.7164 42.04678 42.50416 42.96354 43.42692 43.8923 44.35968 44.82906 45.30044 45.76982 46.2382 46.70358 47.16696 47.63134 48.10272 48.5931 49.11848 49.68486 50.29324 50.93662 51.6 51.7 51.7 52.2 52.1 52 51.5 51.6 51.7 51.7 51.8 51.7 51.9 52.1 52.5 53.4 53.3 50.9 54.1 54.1 53.6 54.3 54.1 54.2 53.9 53.7 53.3 53 52.7 52.5 52.4 52.6 52.7 52.9 53.2 53.6 53.7 54.5 54.8 55.5 56.2 56.5 56.8 57.1 57.4 57.7 +Chile 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 31.7 31.4 31.1 30.8 30.5 30.78 31.06 31.34 31.62 31.9 31.96 32.02 32.08 32.14 32.2 28.27467288 31.96 31.84 31.75552 31.67104 32.78656 33.90208 35.0176 36.13312 37.24864 37.62416 37.99968 38.3752 38.75072 39.12624 39.24176 39.35728 39.4728 39.58832 39.70384 40.71936 41.73488 42.7504 43.76592 44.78144 45.59696 46.41248 47.228 48.04352 48.85904 51.03989333 53.22074667 55.4016 55.54612 55.80564 56.08116 56.36968 56.6742 56.99372 57.32924 57.68176 58.05528 58.4518 58.87432 59.32584 59.80736 60.31888 60.8564 61.41592 61.99044 62.57896 63.18148 63.8 64 63.8 64.8 66.1 67.2 67.4 68 68.6 69 69.7 70.5 70.9 70.9 71.2 71.8 72.6 73.1 72.9 72.7 73 74 74.8 75.1 75.1 75.2 75.6 76.1 76.5 76.9 77.2 77.4 77.6 77.8 78.1 78.4 78.6 78.8 78.9 78.8 78.8 78.9 79 79.1 79.2 79.3 +China 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 31 30 29 28 27 26 26.7125 27.425 28.1375 28.85 29.5625 30.275 30.9875 31.7 31.74285714 31.78571429 31.82857143 31.87142857 31.91428571 31.95714286 32 32 32 32 32 29.5 27.5 25.2 28.5 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 22.40952077 32 32 31.946984 31.893968 31.840952 31.787936 31.73492 32.041904 25.278888 32.655872 29.372856 33.26984 33.616824 33.963808 34.310792 34.657776 35.00476 35.351744 33.098728 32.90914374 33.10612774 33.30311174 32.886664 30.833648 27.780632 33.727616 35.6746 37.121584 38.168568 38.615552 39.062536 39.9994 40.936264 41.873128 42.809992 44.663056 46.1666 48.536704 48.587368 48.143792 36.336856 29.51112 31.930824 42.274688 49.619432 50.988016 53.26108 54.364464 55.889368 56.860432 58.367416 60 60.6 61.1 61.7 62.1 62.6 62.4 63.3 63.7 64 64.5 64.8 65.2 65.6 66 66.4 66.8 67.2 67.5 67.7 68 68.3 68.6 68.9 69.3 69.6 69.9 70.3 70.7 71.1 71.5 71.9 72.4 72.9 73.4 73.9 74.4 74.9 75.1 75.6 75.9 76.1 76.3 76.5 76.7 76.9 +Colombia 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 28.2797491 32 32 32.10394 32.20788 32.31182 32.41576 32.5197 32.62364 32.72758 32.83152 32.93546 33.0394 33.71849 34.39758 35.07667 35.75576 36.43485 37.11394 37.79303 38.47212 39.45159333 40.43106667 41.41054 42.39001333 43.36948667 44.34896 45.54133333 46.73370667 47.92608 49.11845333 50.31082667 51.5032 52.21114 53.48308 54.67602 55.78996 56.8249 57.78284 58.66478 59.47472 60.21866 60.9046 61.53954 62.13548 62.70142 63.24536 63.7713 64.27524 64.75618 65.21512 65.66106 66.1 66.3 66.1 65.9 66.1 66.5 67.2 67.9 68.5 68.9 69.4 69.7 70 70.3 70.4 70.3 70.6 70.6 70.7 70.8 70.9 70.9 71 71.1 71.3 71.6 71.8 72.1 72.2 72.3 72.5 72.7 72.9 73.4 73.7 74.1 74.5 74.9 75.1 75.3 75.3 75.4 75.5 75.6 75.7 75.8 +Comoros 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 12.41438685 32.1 32.1 32.16166 32.22332 32.28498 32.34664 32.4083 32.46996 32.53162 32.59328 32.65494 32.7166 32.77826 32.83992 32.90158 32.96324 33.0249 33.08656 33.14822 33.20988 33.27154 33.3332 33.39486 33.45652 33.51818 33.57984 33.6415 35.30316 36.96482 38.62648 40.28814 41.9498 42.16046 42.52612 42.90678 43.30044 43.7081 44.12976 44.56242 45.00608 45.45874 45.9154 46.37506 46.83372 47.29238 47.75004 48.2147 48.69436 49.19302 49.71368 50.25134 50.8 51 51.2 51.5 51.7 52 52.2 52.4 52.6 52.9 53 53.4 53.9 54.3 54.9 55.4 55.8 56 56.4 56.6 56.9 57.2 57.6 58 58.3 58.6 58.9 59.1 59.4 59.9 60.2 60.6 60.9 61.2 61.6 61.9 62.2 62.4 62.6 62.8 63 63.3 63.5 63.7 63.9 64.1 +Congo, Dem. Rep. 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 31.6 9.053551581 31.6 31.6 31.70566 31.81132 31.91698 32.02264 32.1283 32.23396 32.33962 32.44528 32.55094 32.6566 32.76226 32.86792 32.97358 33.07924 33.1849 33.29056 33.39622 33.50188 33.60754 33.7132 34.49306 35.27292 36.05278 36.83264 37.6125 38.39236 39.17222 39.95208 40.73194 41.5118 41.80646 42.28012 42.73078 43.16044 43.5671 43.95276 44.31842 44.66608 44.99974 45.3244 45.64406 45.96672 46.29838 46.64404 47.0117 47.40936 47.83402 48.27968 48.74034 49.2 49.5 49.8 50.1 50.4 50.7 50.9 51.1 51.3 51.5 51.7 51.9 52.1 52.4 52.7 52.9 53.2 53.3 53.4 53.4 53.3 53.2 53 52.7 47.3 52.4 51.3 51.9 52.1 52.2 52.5 52.8 52.9 53.3 53.8 54.2 54.6 55.1 55.4 55.8 56.3 56.7 57.1 57.5 57.9 58.3 +Congo, Rep. 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 32.7 12.64643147 32.7 32.7 32.6662 32.6324 32.5986 32.5648 32.531 32.4972 32.4634 32.4296 32.3958 32.362 32.3282 32.2944 32.2606 32.2268 32.193 32.1592 32.1254 32.0916 32.0578 32.024 31.9902 31.9564 31.9226 31.8888 31.855 33.6062 35.3574 37.1086 38.8598 40.611 40.9652 41.7024 42.4326 43.1548 43.869 44.5742 45.2694 45.9516 46.6168 47.26 47.8742 48.4534 48.9936 49.4928 49.949 50.3622 50.7384 51.0846 51.4028 51.7 52 52.3 52.7 53.1 53.5 53.8 54.1 54.4 54.7 55.1 55.5 55.9 56.2 56.5 56.6 56.7 56.6 56.3 56 55.6 55.1 54.7 54 53.3 52.8 52.3 48.3 50.6 51.9 52.6 53.1 53.6 54.5 55.4 56.1 57.2 57.9 58.6 59.6 60.3 60.8 61.3 61.5 61.7 61.9 +Costa Rica 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.2147 30.21365 30.2126 30.21155 30.2105 30.20945 30.2084 30.20735 30.2063 30.20525 30.2042 30.20315 30.2021 30.20105 30.2 30.60909091 31.01818182 31.42727273 31.83636364 32.24545455 32.65454545 33.06363636 33.47272727 33.88181818 34.29090909 34.7 34.74 34.78 34.82 34.86 34.9 34.94 34.98 35.02 35.06 35.1 35.1 35.1 35.1 35.1 35.1 35.1 35.1 31.02896418 35.1 35.1 35.88616 36.67232 37.45848 38.24464 39.0308 39.81696 40.60312 41.38928 42.17544 42.9616 43.50776 44.05392 44.60008 45.14624 45.6924 46.23856 46.78472 47.33088 47.87704 48.4232 49.42076 50.41832 51.41588 52.41344 53.411 54.40856 55.40612 56.40368 57.40124 58.3988 58.76096 59.40812 60.05828 60.71144 61.3656 62.02176 62.67892 63.33708 63.99324 64.6454 65.29056 65.92772 66.55388 67.16904 67.7692 68.35336 68.92452 69.48468 70.04084 70.6 71.1 71.7 72.2 72.9 73.6 74.1 74.6 74.9 75.2 75.4 75.8 76.2 76.3 76.4 76.3 76.4 76.4 76.5 76.5 76.6 76.6 76.6 76.6 76.6 76.6 76.8 77 77.2 77.4 77.7 77.9 78.1 78.3 78.5 78.8 79.2 79.5 79.7 79.6 79.6 79.6 79.7 79.8 79.9 80 +Cote d'Ivoire 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 31.156 12.04930333 31.156 31.156 31.32016 31.48432 31.64848 31.81264 31.9768 32.14096 32.30512 32.46928 32.63344 32.7976 32.96176 33.12592 33.29008 33.45424 33.6184 33.78256 33.94672 34.11088 34.27504 34.4392 34.60336 34.76752 34.93168 35.09584 35.26 35.42416 35.58832 35.75248 35.91664 36.0808 36.47296 37.11112 37.78828 38.50244 39.2556 40.04376 40.86292 41.70908 42.56924 43.4314 44.28556 45.11772 45.92588 46.71104 47.4912 48.28736 49.12152 50.00268 50.93184 51.9 52.6 53.2 53.7 54.3 54.8 55.4 56 56.5 56.9 57.4 57.7 57.8 57.9 57.9 57.7 57.5 57.2 56.9 56.5 56.1 55.7 55.3 54.8 54.3 53.9 53.6 53.3 53.1 53 52.8 52.8 52.7 52.9 53.2 53.6 54.4 55.2 55.9 56.5 57.2 57.8 58.2 58.9 59.61 60.33 +Croatia 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 14.01809221 36.1 36.1 36.87741333 37.65482667 38.43224 39.20965333 39.98706667 40.76448 41.54189333 42.31930667 43.09672 43.87413333 44.65154667 45.42896 46.20637333 46.98378667 47.7612 48.53861333 49.31602667 50.09344 50.87085333 51.64826667 41.09245387 37.59793491 35.07902571 33.48346146 36.10392509 49.38188 56.25426 57.72664 58.59902 59.4224 59.65378 60.14016 60.61454 61.07992 61.5333 61.97568 62.40706 62.82744 63.23582 63.6312 64.01458 64.38396 64.74034 65.08472 65.4191 65.74748 66.07186 66.39024 66.70162 67 67.4 67.8 68.2 68.5 68.9 69.3 69.6 70 70.3 70.6 70.9 71.1 71.3 71.5 71.6 71.7 71.8 72 72.4 72.7 72.7 72.9 73.2 73.4 73.5 73.7 73.7 74 74.3 74.7 75.1 75.5 75.9 76.2 76.3 76.3 76.3 76.5 76.7 77.2 77.5 77.7 77.8 77.9 78 +Cuba 32.2 32.325 32.45 32.575 32.7 32.86 33.02 33.18 33.34 33.5 33.64 33.78 33.92 34.06 34.2 34.3 34.4 34.5 34.6 34.7 35.04 35.38 35.72 36.06 36.4 36.24 36.08 35.92 35.76 35.6 35.74 35.88 36.02 36.16 36.3 36.36 36.42 36.48 36.54 36.6 36.48 36.36 36.24 36.12 36 36.04 36.08 36.12 36.16 36.2 36.26 36.32 36.38 36.44 36.5 36.52 36.54 36.56 36.58 36.6 36.24 35.88 35.52 35.16 34.8 33.76 32.72 31.68 30.64 29.6 29.66 29.72 29.78 29.84 29.9 31.08 32.26 33.44 34.62 35.8 36.84 37.88 38.92 39.96 41 41.54 42.08 42.62 43.16 43.7 39.54 35.38 31.22 27.06 22.9 22.1 21.3 20.5 19.7 18.9 33.11248 33.321632 33.530784 33.739936 33.949088 34.15824 34.370464 34.582688 34.794912 35.007136 35.21936 35.433584 35.647808 35.862032 36.076256 36.29048 36.5088 36.72712 23.81975534 37.16376 37.38208 37.711476 38.040872 38.370268 38.699664 39.02906 39.629864 40.230668 40.831472 41.432276 42.03308 42.702108 43.371136 44.040164 44.709192 45.37822 46.012016 46.645812 47.279608 47.913404 48.5472 49.292852 50.038504 50.784156 51.529808 52.27546 53.788048 55.300636 56.813224 58.325812 59.8384 60.18618 60.82796 61.46974 62.11152 62.7523 63.39308 64.03586 64.67964 65.32842 65.9852 66.64998 67.32476 68.00654 68.69332 69.3761 70.04688 70.69866 71.32644 71.92622 72.5 73.2 73.9 74.1 74.3 74.6 74.6 74.4 74.5 74.6 74.6 74.6 74.7 74.6 74.4 74.3 74.5 74.6 74.6 74.7 74.7 74.7 74.8 74.8 74.8 74.9 75.2 75.3 75.4 75.6 75.9 76.2 76.6 76.8 76.9 77.1 77.4 77.6 77.8 77.9 78 78.1 78.2 78.3 78.4 78.5 +Cyprus 38.5 38.50012632 38.50025263 38.50037895 38.50050526 38.50063158 38.50075789 38.50088421 38.50101053 38.50113684 38.50126316 38.50138947 38.50151579 38.50164211 38.50176842 38.50189474 38.50202105 38.50214737 38.50227368 38.5024 38.50252632 38.50265263 38.50277895 38.50290526 38.50303158 38.50315789 38.50328421 38.50341053 38.50353684 38.50366316 38.50378947 38.50391579 38.50404211 38.50416842 38.50429474 38.50442105 38.50454737 38.50467368 38.5048 38.50492632 38.50505263 38.50517895 38.50530526 38.50543158 38.50555789 38.50568421 38.50581053 38.50593684 38.50606316 38.50618947 38.50631579 38.50644211 38.50656842 38.50669474 38.50682105 38.50694737 38.50707368 38.5072 38.50732632 38.50745263 38.50757895 38.50770526 38.50783158 38.50795789 38.50808421 38.50821053 38.50833684 38.50846316 38.50858947 38.50871579 38.50884211 38.50896842 38.50909474 38.50922105 38.50934737 38.50947368 38.5096 38.50972632 38.50985263 38.50997895 38.51010526 38.51023158 38.51035789 38.51048421 38.51061053 38.51073684 38.51086316 38.51098947 38.51111579 38.51124211 38.51136842 38.51149474 38.51162105 38.51174737 38.51187368 38.512 39.1608 39.8096 40.4584 41.1072 41.756 42.4048 43.0536 43.7024 44.3512 45 45.2464 45.4928 45.7392 45.9856 46.232 46.4784 46.7248 46.9712 47.2176 47.464 47.564 47.664 26.15855782 47.864 47.964 48.04048 48.11696 48.19344 48.26992 48.3464 48.32288 48.29936 48.27584 48.25232 48.2288 48.20528 48.18176 48.15824 48.13472 48.1112 48.08768 48.06416 48.87397333 49.68378667 50.4936 51.30341333 52.11322667 52.92304 54.66694857 56.41085714 58.15476571 59.89867429 61.64258286 63.38649143 65.1304 65.33688 65.76536 66.17984 66.57832 66.9628 67.33328 67.68876 68.03024 68.35972 68.6772 68.98468 69.28416 69.57564 69.86012 70.1386 70.40908 70.67056 70.92304 71.16552 71.4 71.9 72.4 72.9 68.5 73.8 74.4 75.1 75.6 76 76.1 76.2 76.3 76.4 76.5 76.7 77 77.3 77.6 78 78.2 78.3 78.3 78.2 78.1 78.2 78.3 78.4 78.6 78.8 79.1 79.5 79.8 80 80.2 80.4 80.7 80.9 81.1 81.4 81.6 81.9 82 82.2 82.4 82.6 +Denmark 37.40555325 38.51328474 44.37295089 44.84418602 42.82611968 43.01611935 43.78072891 42.57763147 39.37314139 39.21936369 41.7148446 39.30925287 36.04310717 40.90440429 38.8016715 42.66888133 44.08448842 46.47787792 46.37659232 45.25964562 43.1434112 38.99691145 43.35702203 46.36702723 44.55752758 43.14284584 40.26272599 41.11333113 36.63680408 31.01820472 34.11139646 29.24525892 32.52624287 36.19776054 36.52549402 38.35 39.92 41.5 43.11 41.86 41.06 42.64 42.49 43.85 44 43.35 40.43 40.47 40.73 39.5 43.5 44.57 43.08 38.6 44.74 46.18 46.78 42.49 40.04 44.42 45.11 47.65 47.62 47.58 40.2 39.85 42.95 44.97 45.66 46.13 46.06 46.15 47.53 47.58 46.11 44.51 45.88 47.41 47.6 46.29 44.86 48.37 46.77 48.56 48.6 49.69 49 48.71 46.71 47.83 47.3 46.83 47.49 47.14 49.42 50.93 52.99 51.86 53.15 50.71 51.95 52.66 54.74 54.81 55.81 54.41 56.6 56.13 54.96 57.44 58.09 57.01 58.09 58.93 58.53 58.46 56.97 57.31 56.25 57 57.55 61.7784 60.6468 61.2152 61.1836 61.952 61.7004 61.2288 61.9172 61.9856 62.294 61.8724 62.7208 63.6392 64.1276 62.896 63.4744 63.9528 64.9612 65.7996 66.238 65.9864 67.1248 67.4232 66.3716 66.05 67.1984 68.4968 70.0752 70.1036 70.282 70.8804 70.7288 71.0972 71.2956 71.864 71.9924 71.7508 72.1792 72.1576 72.146 72.4044 72.2828 72.3712 72.4496 72.328 72.4064 72.8848 73.0932 73.1816 73.3 73.3 73.5 73.8 73.9 74 74.2 74.4 74.5 74.4 74.3 74.4 74.6 74.7 74.7 74.7 74.7 74.8 74.8 74.9 75.1 75.3 75.4 75.5 75.5 75.7 75.9 76.2 76.5 76.7 76.9 77.2 77.4 77.6 77.9 78.1 78.3 78.5 78.7 79 79.3 79.6 79.8 79.9 80 80.1 +Djibouti 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 29.9 11.5635566 29.9 29.9 30.0988 30.2976 30.4964 30.6952 30.894 31.0928 31.2916 31.4904 31.6892 31.888 32.0868 32.2856 32.4844 32.6832 32.882 33.0808 33.2796 33.4784 33.6772 33.876 34.0748 34.2736 34.4724 34.6712 34.87 37.1638 39.4576 41.7514 44.0452 46.339 46.6938 47.2146 47.7544 48.3142 48.892 49.4878 50.0996 50.7244 51.3572 51.99 52.6198 53.2416 53.8574 54.4742 55.112 55.7988 56.5466 57.3564 58.2172 59.1 59.3 59.6 59.9 60.1 60.4 60.6 60.7 60.8 60.8 60.8 60.7 60.7 60.6 60.6 60.6 60.5 60.5 60.6 60.5 60.5 60.2 60 60.1 59.6 59.7 59.8 59.7 59.6 59.6 59.6 59.7 59.7 59.7 59.7 59.9 60.2 60.6 61 61.4 61.8 62.2 62.8 63.4 64.01 64.63 +Ecuador 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 29.08412881 32.9 32.9 32.99418 33.08836 33.18254 33.27672 33.3709 33.46508 33.55926 33.65344 33.74762 33.8418 33.93598 34.03016 34.12434 34.21852 34.3127 34.40688 34.50106 34.59524 34.68942 36.0906 37.49178 38.89296 40.29414 41.69532 43.0965 44.49768 45.89886 47.30004 48.70122 50.1024 50.45458 51.07876 51.73194 52.41312 53.1233 53.85748 54.61266 55.38284 56.15402 56.9132 57.64338 58.33056 58.96574 59.54792 60.0811 60.57428 61.04846 61.52064 62.00182 62.5 62.8 63.2 63.7 64.4 65.1 65.8 66.3 66.7 67.2 67.7 68.2 68.7 69.1 69.5 70 70.3 70.4 70.8 71.1 71.3 71.6 71.8 72 72.2 72.4 72.6 72.7 72.9 73.1 73.2 73.4 73.5 73.6 73.7 73.8 73.8 73.9 74 74.1 74.2 74.4 74.6 74.8 75 75.2 +Egypt 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 25.25458091 33 33 32.99042 32.98084 32.97126 32.96168 32.9521 32.94252 32.93294 30.62336 30.51378 35.3042 32.39462 30.88504 32.17546 31.36588 33.0563 31.14672 34.33714 34.62756 35.81798 34.2084 35.49882 30.28924 29.57966 33.17008 32.0605 34.15092 35.84134 35.93176 36.42218 38.1786 38.89102 40.27244 41.54886 42.71928 43.7867 44.75112 45.61554 46.38696 47.07438 47.6908 48.24922 48.76364 49.24906 49.71148 50.1469 50.53632 50.87474 51.16516 51.42858 51.7 52.3 52.8 53.2 54 54.6 55.3 56 56.8 57.5 58.2 58.8 59.4 60 60.5 61.1 61.7 62.3 63.1 63.9 64.6 65.2 65.8 66.3 66.8 67.2 67.6 68 68.3 68.6 68.9 69.1 69.3 69.4 69.6 69.8 70 70.1 70.1 70.2 70.3 70.5 70.7 70.9 71.1 71.3 +El Salvador 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 25.37126131 28.7 28.7 28.76804 28.83608 28.90412 28.97216 29.0402 29.10824 29.17628 29.24432 29.31236 29.3804 30.17649 30.97258 31.76867 32.56476 33.36085 34.15694 34.95303 35.74912 36.54521 37.3413 38.13739 38.93348 39.72957 40.52566 41.32175 42.11784 42.91393 43.71002 44.50611 45.3022 45.82724 46.80428 47.76532 48.71136 49.6424 50.55744 51.45548 52.33452 53.19056 54.0186 54.81364 55.57068 56.28272 56.94676 57.5608 58.12484 58.63988 59.10992 59.53196 59.9 60.9 61.7 62.3 62.8 63.5 64.2 64.4 64.5 64.2 59.1 61.1 63.9 64.7 66.8 67.8 68.2 68.4 68.7 69.3 69.8 70.1 70.2 70.2 70.5 71.2 71.8 71.9 71.9 72.4 72.9 73.2 73.8 73.8 73.6 73.4 73.4 73.7 74.1 74 73.8 73.7 73.8 73.9 74 74.1 +Equatorial Guinea 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 29.8 11.5248825 29.8 29.8 29.94494 30.08988 30.23482 30.37976 30.5247 30.66964 30.81458 30.95952 31.10446 31.2494 31.39434 31.53928 31.68422 31.82916 31.9741 32.11904 32.26398 32.40892 32.55386 32.6988 32.84374 32.98868 33.13362 33.27856 33.4235 34.38484 35.34618 36.30752 37.26886 38.2302 38.52514 38.97108 39.41602 39.86196 40.3079 40.75384 41.19978 41.64572 42.09166 42.5376 42.98354 43.42948 43.87542 44.32136 44.7673 45.21324 45.65918 46.10612 46.55306 47 47.5 47.9 48.4 49 49.6 50.3 51 51.5 48.8 52.3 52.4 52.4 52.3 52.1 51.9 51.8 51.8 51.7 51.6 51.3 51.1 51 50.8 50.4 50 50 50.6 51.1 51.8 52.4 53.3 53.9 54.4 55 55.5 56.1 56.3 56.7 56.9 57.2 57.4 57.9 58.8 59.71 60.63 +Eritrea 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 30.2 11.67957891 30.2 30.2 30.31142 30.42284 30.53426 30.64568 30.7571 30.86852 30.97994 31.09136 31.20278 31.3142 31.42562 31.53704 31.64846 31.75988 31.8713 31.98272 32.09414 32.20556 32.31698 32.4284 32.53982 32.65124 32.76266 32.87408 32.9855 34.14932 35.31314 36.47696 37.64078 38.8046 39.01102 39.31244 39.61586 39.92028 40.2277 40.53812 40.85054 41.16796 41.49338 41.8278 42.17522 42.53964 42.92106 43.32248 43.7449 44.18932 44.65274 45.12916 45.61358 46.1 46.4 46.7 47 47.4 47.8 48.2 48.5 48.8 49 49.1 49.3 49.5 49.7 49.9 50.2 50.5 50.9 51.4 51.9 52.5 53.1 53.9 54.7 55.4 56 56.4 56.7 56.8 49.3 49.3 57.7 58 58.3 58.7 59 59.5 60 60.4 60.7 61 61.3 61.7 62.1 62.5 62.9 +Estonia 36.14196743 35.70007258 35.25817773 34.81628288 34.37438803 33.93249318 34.11772137 34.30294955 34.48817774 34.67340592 34.85863411 35.4918634 36.1250927 36.75832199 37.39155128 38.02478058 39.09743943 40.17009828 41.24275714 42.31541599 43.38807484 41.82899936 40.26992387 38.71084838 37.15177289 35.59269741 35.54986707 35.50703674 35.46420641 35.42137608 35.37854575 36.04469646 36.71084717 37.37699788 38.04314859 38.7092993 38.3463452 37.98339111 37.62043701 37.25748292 36.89452882 36.54865456 36.20278029 35.85690603 35.51103176 35.1651575 34.93686535 34.7085732 34.48028106 34.25198891 34.02369677 35.10133667 36.17897657 37.25661647 38.33425638 39.41189628 39.3297154 39.24753452 39.16535364 39.08317276 39.00099188 37.39369638 35.78640088 34.17910539 32.57180989 30.96451439 33.0225905 35.0806666 37.1387427 39.19681881 41.25489491 41.47305156 41.69120821 41.90936486 42.12752151 42.34567816 41.89454584 41.44341352 40.9922812 40.54114888 40.09001656 40.32942049 40.56882442 40.80822835 41.04763228 41.28703621 41.48403834 41.68104048 41.87804261 42.07504475 42.27204688 42.42327949 42.57451209 42.7257447 42.8769773 43.0282099 43.01410495 43 43.05075035 43.1015007 43.15225106 43.5407851 43.92931914 44.31785318 44.70638723 45.09492127 45.48345531 45.87198936 46.2605234 46.64905744 47.03759148 47.42612553 47.81465957 48.20319361 47.5 44.5 44.3 37 35 37.72210619 46.36024886 52.60228851 51.7164 53.33107399 54.18934423 54.96233783 52.54149197 50.12156257 53.08882163 51.67885259 54.88879423 54.09808161 55.86912926 56.89899637 57.54187336 56.395 56.88788509 57.81434133 59.10994708 58.4558 56.964 46.1722 54.5804 54.1886 31.1968 46.305 54.2132 47.2214 57.9296 58.4378 58.87111713 60.12457804 61.34272096 63.92261158 65.26885086 65.95940271 67.59150996 68.06998863 68.5324863 68.9598 69.668 69.9962 70.1844 70.2526 71.0008 71.079 71.0572 71.3554 70.9836 70.6818 70.8 70.7 70.7 70.8 70.7 70.4 70.2 69.9 69.6 69.4 69.4 69.4 69.5 69.6 69.9 70.4 71 71.3 71.3 71 70.4 69.8 68.8 67.9 67.4 67.7 68.7 69.4 69.8 69.9 70.1 70.3 70.8 71.4 71.9 72.4 72.8 73.2 74 75 75.8 76.3 76.5 76.6 76.7 76.8 +Ethiopia 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 28 27 26 27 29.7 29.7 29.7 28 27 26 27 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 26 25 24 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 27 26 29.7 29.7 29.7 29.7 29.7 29.7 17 5 4 8 14 29.7 29.7 29.5 28.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 11.4862084 29.7 29.7 29.73702 29.77404 29.81106 29.84808 29.8851 29.92212 29.95914 29.99616 30.03318 30.0702 30.10722 30.14424 30.18126 30.21828 28.0553 23.59232 29.62934 29.66636 29.70338 28.7404 28.77742 30.51444 30.55146 30.58848 30.6255 31.38252 32.13954 32.89656 33.65358 34.4106 34.61662 35.01764 35.47066 35.97668 36.5337 37.13972 34.36974 32.40676 39.18578 39.8998 40.59982 41.26484 41.88086 41.82888 40.6659 41.70292 43.76694 44.13396 44.47698 44.8 44.9 45.1 44.6 44.4 44.3 43.7 43.5 43.4 44.3 44.5 44.9 45.3 41.9 42.3 46.3 46.7 47 47.3 48 47.1 48.4 48.9 49.4 50 50.7 51.3 51.8 52.1 52 52.5 53.6 54.4 55.1 55.9 56.8 57.7 58.6 59.5 60.3 61 61.6 62.1 62.6 63.1 63.6 +Fiji 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 26.1 6.615631874 26.1 26.1 26.17486 26.24972 26.32458 26.39944 26.4743 27.54952 28.62474 29.69996 30.77518 31.8504 32.92562 34.00084 35.07606 36.15128 37.2265 38.30172 39.37694 40.45216 41.52738 42.6026 43.67782 44.75304 45.82826 46.90348 47.9787 49.05392 50.12914 51.20436 52.27958 53.3548 53.71166 54.34252 54.95838 55.55824 56.1431 56.71296 57.26782 57.80868 58.33754 58.8544 59.36126 59.86012 60.35198 60.83884 61.3187 61.79356 62.25942 62.71628 63.16314 63.6 63.5 63.5 63.4 63.6 63.6 63.8 63.8 63.8 63.8 63.7 63.8 63.9 64 64.2 64.1 64.2 64.3 64.2 64.1 64.1 64.1 64 63.8 63.8 63.8 63.8 63.7 63.8 63.9 64.2 64.4 64.7 64.9 65.1 65.3 65.4 65.6 65.7 65.8 65.9 66 66 66.1 66.2 66.3 +Finland 36.5731262 40.29998937 39.19832779 28.52730061 35.91419936 39.7952209 38.77965789 36.60317348 12.48420489 13.42587435 36.9473378 30.69481612 37.61054229 34.18426586 34.99261698 35.71601939 38.69123302 38.0882401 37.16907577 35.03080644 37.29122269 40.15984744 34.89547361 38.90903587 35.82607588 37.25945697 38.13397394 42.20745871 40.64516269 36.29769255 36.29644969 34.05160116 28.94581092 20.37818962 38.90396228 37.78900443 30.77640982 34.38314151 40.1198783 42.66441676 41.46900965 41.01408186 41.75722748 41.53837594 42.16755407 40.86494725 38.60762137 40.84258796 40.18523488 39.42391203 37.35415172 40.32671762 32.86088369 33.57394862 37.96696688 31.94070428 29.95608216 30.1186785 33.80876737 38.50375585 38.15099864 38.01983838 34.13160326 32.3753835 39.63574814 35.78477145 28.74150258 25.32887364 8.112702678 37.12165555 45.66140699 46.24669692 44.07137167 39.51635609 39.10314722 40.64904746 41.81358224 38.97289752 39.17 44.95 39.67 37.65 40.46 42.79 42.87 41.3 40.92 45.6 45.16 44.93 44.61 42.57 39.73 43.34 45.22 47.64 46.56 48.16 48.07 44.4 41.8 42.87 46.23 46.64 47.21 46.04 47.07 46.98 46.15 48.67 48.53 48.73 49.13 49.05 49.73 49.54 48.03 46.49 32.71 43.07 47.55 52.4068 51.9136 52.5104 50.2072 53.404 53.8108 51.8376 53.6844 51.2512 54.438 54.8448 55.7516 55.4084 55.9952 57.312 56.1088 57.0456 57.1424 54.6092 46.586 46.4328 53.8296 56.1964 47.9232 57.11 60.1868 60.4436 61.9004 61.7872 64.144 65.5708 66.4476 66.5044 67.4612 67.258 67.8748 67.3716 68.5084 68.6852 68.882 68.9088 68.6156 69.0224 69.2292 68.986 69.5028 69.6796 69.6364 69.5132 70.2 70.5 70.9 71.3 71.4 71.6 72 72.4 72.9 73.3 73.7 74 74.3 74.5 74.6 74.7 74.7 74.7 74.8 74.8 75 75.4 75.8 76.2 76.5 76.7 76.9 77.1 77.3 77.5 77.8 78.2 78.5 78.6 78.6 78.8 79 79.2 79.4 79.7 80 80.3 80.5 80.6 80.7 80.8 +France 33.96717024 36.37464878 34.37999308 30.64262111 29.38176247 34.87631991 35 34.2 34.5 35 37.4 36.1 31.7 31.2 30.1 36.5 40.04 39.18 38.53 37.25 39.21 39.83 38.3 39.97 39.14 38.53 37.76 39.35 37.53 39.36 39.56 39.65 35.81 38.83 35.01 39.48 41.95 39.38 39.33 40.91 40.37 40.68 40.01 40.75 42.29 43.58 40.67 40.41 40.29 35.91 43.28 41.77 41.32 42.52 36.13 37.54 40.18 39.59 39.67 35.26 43.33 40.45 42.7 41.73 42.01 40.16 41.83 42.33 40.23 41.14 36.41 29.59 42.64 41.75 44.3 43.17 43.55 44.33 43.36 43.99 42.73 43.55 43.16 43.28 42.52 43.97 43.17 43.75 44.15 45.56 43.36 44.11 43.57 43.6 45.53 45.2 47.56 47.93 45.99 45.23 45.08 47.01 48.01 48.43 48.08 48.36 47.74 48.28 49.3 50.01 51.37 48.17 51.62 51.35 37.85 35.63 39.51 42.6 34.34 47.52 51.6 52.6968 54.9336 54.6704 55.2972 54.424 54.0708 55.8476 55.4944 54.3312 56.938 57.0048 57.3416 57.7884 58.4552 58.422 58.9188 59.2856 59.0924 59.7492 49.586 57.8128 57.5896 53.4864 47.3532 55.13 62.5568 64.1636 66.0204 65.1172 66.594 66.3308 67.6276 67.5644 68.4412 68.708 68.7448 69.1816 70.4184 70.4552 70.672 71.2588 70.7956 70.6524 71.6192 71.456 71.8728 71.8696 71.8664 71.6032 72.5 72.6 72.8 73.1 73.3 73.2 73.4 73.8 74.1 74.3 74.5 74.8 75 75.2 75.5 75.7 76 76.4 76.6 76.9 77.1 77.3 77.5 77.7 77.9 78.1 78.4 78.7 78.8 78.9 79.1 79.2 79.4 79.7 80.1 80.4 80.7 80.9 81 81 81.2 81.4 81.6 81.7 81.8 81.9 +Gabon 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 11.83427532 30.6 30.6 30.7506 30.9012 31.0518 31.2024 31.353 31.5036 31.6542 31.8048 31.9554 32.106 32.2566 32.4072 32.5578 32.7084 32.859 33.0096 33.1602 33.3108 33.4614 33.612 33.7626 33.9132 34.0638 34.2144 34.365 35.5882 36.8114 38.0346 39.2578 40.481 40.9166 41.6092 42.2478 42.8344 43.368 43.8546 44.3012 44.7238 45.1464 45.596 46.1046 46.7012 47.4028 48.2134 49.124 50.1116 51.1382 52.1718 53.1964 54.2 54.5 54.9 55.1 55.6 56 56.7 57.3 57.7 58.2 58.7 59.1 59.5 59.9 60.3 60.6 60.8 60.8 60.7 60.6 60.5 60.3 60.2 60.1 59.9 59.7 59.4 59.2 58.9 58.5 58 57.5 57.2 56.9 56.7 57 57.6 57.7 57.5 57.3 57.5 57.8 58.4 59.1 59.81 60.53 +Gambia 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 11.42010487 28.8 28.8 29.06352 29.32704 29.59056 29.85408 30.1176 30.38112 30.64464 30.90816 31.17168 31.4352 31.69872 31.96224 32.22576 32.48928 32.7528 33.01632 33.27984 33.54336 33.80688 34.0704 34.33392 34.59744 34.86096 35.12448 35.388 35.82972 36.27144 36.71316 37.15488 37.5966 38.00912 38.56164 39.09916 39.61968 40.1252 40.61772 41.10024 41.57976 42.06728 42.5758 43.12132 43.71884 44.38136 45.11788 45.9344 46.83292 47.80244 48.82696 49.89748 51 51.2 51.5 51.8 52.1 52.5 52.9 53.3 53.8 54.3 54.7 53.4 55.6 56 56.3 56.6 56.8 57 57.2 57.3 57.5 57.7 57.9 58.1 58.4 58.6 58.8 59.1 59.4 59.6 60 60.3 60.5 60.7 61 61.3 61.6 61.9 62.2 62.6 63 63.5 63.9 64.3 64.7 65.1 +Georgia 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.871 31.347 30.823 30.299 29.775 29.251 29.295 29.339 29.383 29.427 29.471 29.671 29.871 30.071 30.271 30.471 30.671 30.871 31.071 31.271 31.471 31.671 31.871 32.071 32.271 32.471 32.671 32.871 33.071 33.271 33.471 33.671 33.871 34.071 34.271 34.10433333 33.93766667 33.771 34.021 34.271 34.521 34.771 35.021 35.271 35.521 35.771 36.021 36.271 39.22963338 39.6532335 37.48497988 37.071 36.671 36.671 33.671 25 35 37 32.95888 35.41776 35.87664 34.83552 39.1354 42.29428 41.58854814 43.05541427 41.77177797 41.04865174 40.04768 37.50656 23.46544 43.24694426 44.76317279 46.39115428 45.35862569 47.00212107 49.35972 46.8486 32.43648 28.89536 26.85424 34.01312 43.972 53.60188 45.56076 53.58964 56.34852 58.6074 58.76828 59.12916 59.48904 59.84892 60.2078 60.56568 60.92456 61.28344 61.64332 62.0062 62.37308 62.74296 63.11384 63.48372 63.8456 64.19448 64.52536 64.83524 65.12412 65.4 65.8 66.3 66.7 67.1 67.5 67.9 68.3 68.6 69 69.3 69.6 69.8 70 70.1 70.2 70.3 70.2 70.2 70.2 70.2 70.2 70 69.7 70.7 71 71.3 71.7 71.9 72.1 72.3 72.4 72.4 72.4 72.4 72.4 72.4 72.4 72.1 72.4 72.4 72.6 72.7 72.9 73.1 73.3 +Germany 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.37 38.477 38.584 38.691 38.798 38.905 39.012 39.119 39.226 39.333 39.44 39.734 40.028 40.322 40.616 40.91 41.204 41.498 41.792 42.086 42.38 42.687 42.994 43.301 43.608 43.915 44.222 44.529 44.836 45.143 45.45 46.04166667 46.63333333 47.225 47.81666667 48.40833333 49 49.59166667 50.18333333 46.17648422 40.52556325 38.9888193 40.08037644 32.93682031 48.32065914 53.5 55.01820257 55.62354801 56.22889344 56.83423887 57.4395843 57.85150116 58.26341802 58.67533488 59.08725174 59.4991686 59.91108546 60.32300232 60.73491918 61.14683604 61.5587529 61.84933643 62.13991996 62.43050348 61.07442034 60.73821096 59.08225406 55.08617092 49.79008778 37.09400464 29.0979215 60.61319836 62.21527522 63.81735208 65.41942894 67.0215058 67.18742266 67.51033952 67.82125638 68.12117324 68.4080901 68.70345102 68.62532856 69.36929231 69.48021979 69.40190727 69.99702797 70.16889372 70.26131586 70.82344196 70.81075623 70.92828395 71.15404398 70.80345367 70.65682236 70.9 71 71.2 71.5 71.8 71.9 72.3 72.6 72.7 72.9 73.1 73.4 73.6 74 74.4 74.6 74.8 75.1 75.3 75.4 75.4 75.6 75.9 76.2 76.4 76.6 76.9 77.3 77.7 77.9 78.1 78.3 78.5 78.8 79.1 79.4 79.7 79.8 80 80 80.2 80.3 80.5 80.7 80.9 81.1 +Ghana 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 28 9.437626422 28 28 28.11922 28.23844 28.35766 28.47688 28.5961 29.2402 29.8843 30.5284 31.1725 31.8166 32.4607 33.1048 33.7489 34.393 35.0371 35.6812 36.3253 36.9694 37.6135 38.2576 38.9017 39.5458 40.1899 40.834 41.4781 42.1222 42.7663 43.4104 44.0545 44.6986 45.08382 45.73204 46.37226 47.00548 47.6307 48.24792 48.85614 49.45436 50.04058 50.6128 51.16802 51.70424 52.22046 52.71568 53.1889 53.64012 54.07234 54.49056 54.89778 55.3 55.5 55.8 56.1 56.4 56.7 57 57.2 57.4 57.6 57.8 58 58.1 58.1 58.3 58.7 59 59.4 59.7 60.1 60.3 60.6 60.8 60.7 60.5 60.7 60.6 60.4 60.3 60.3 60.2 60.3 60.5 60.8 61.1 61.5 61.8 62.3 62.7 63.1 63.5 64 64.6 64.9 65.2 65.5 +Greece 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.7 36.8 36.9 37 37.1 37.22 37.34 37.46 37.58 37.7 37.86 38.02 38.18 38.34 38.5 38.68 38.86 39.04 39.22 39.4 39.6 39.8 40 40.2 40.4 40.56 40.72 40.88 41.04 41.2 41.46553231 41.73106462 41.99659692 42.26212923 42.52766154 42.79319385 43.05872615 43.32425846 43.58979077 43.85532308 24.06831161 44.38638769 44.65192 44.97298 45.29404 45.94106 46.58808 47.2351 47.88212 48.52914 46.55104 50.39158 50.6158 50.84002 51.06424 51.57126 52.07828 52.5853 53.09232 53.59934 54.15825333 54.71716667 55.27608 41.18742 30.53444 40.08146 46.12848 59.1755 57.32252 54.76954 49.51656 56.66358 66.8296 66.93462 67.12164 67.35766 67.64168 67.9727 68.34772 68.76274 69.20676 69.66478 70.1178 70.54782 70.93584 71.27386 71.56188 71.8149 72.05792 72.31694 72.61096 72.94198 73.3 73.6 73.9 74.1 74.3 74.4 74.5 74.7 75 75.3 75.6 75.7 75.8 75.9 75.9 76 76.2 76.4 76.6 76.9 77 77 77.1 77.3 77.5 77.6 77.6 77.7 77.8 77.9 78 78.3 78.4 78.5 78.7 78.9 79.2 79.4 79.5 79.5 79.6 79.7 79.8 79.8 79.8 79.8 +Grenada 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 32.38333333 33.36666667 34.35 35.33333333 36.31666667 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 37.3 24.19130262 37.3 37.3 37.33914 38.06828 38.79742 39.52656 40.2557 40.98484 41.71398 42.44312 43.17226 43.9014 44.63054 45.25634667 45.88215333 46.50796 47.13376667 47.75957333 48.38538 49.01118667 49.63699333 50.2628 50.88860667 51.51441333 52.14022 52.76602667 53.39183333 54.01764 54.61453 55.21142 55.80831 56.4052 56.72934 57.33048 57.91862 58.49176 59.0509 59.59504 60.12618 60.64232 61.14546 61.6336 62.10774 62.56788 63.01402 63.44716 63.8683 64.27744 64.67458 65.05972 65.43486 65.8 66 66.3 66.7 67.1 67.5 67.8 68 68.2 68.4 68.6 68.7 68.8 68.9 69 69.1 69.2 69.3 69.5 69.8 70.2 70.6 70.8 71 71.1 71.1 71 70.9 70.7 70.6 70.5 70.3 70.1 70 69.9 70.1 70.3 70.6 70.9 71.2 71.2 71.3 71.4 71.5 71.6 71.7 +Guatemala 25.8 25.80016 25.80032 25.80048 25.80064 25.8008 25.80096 25.80112 25.80128 25.80144 25.8016 25.80176 25.80192 25.80208 25.80224 25.8024 25.80256 25.80272 25.80288 25.80304 25.8032 25.80336 25.80352 25.80368 25.80384 25.804 25.80416 25.80432 25.80448 25.80464 25.8048 25.80496 25.80512 25.80528 25.80544 25.8056 25.80576 25.80592 25.80608 25.80624 25.8064 25.80656 25.80672 25.80688 25.80704 25.8072 25.80736 25.80752 25.80768 25.80784 25.808 25.80816 25.80832 25.80848 25.80864 25.8088 25.80896 25.80912 25.80928 25.80944 25.8096 25.80976 25.80992 25.81008 25.81024 25.8104 25.81056 25.81072 25.81088 25.81104 25.8112 25.81136 25.81152 25.81168 25.81184 25.812 25.81216 25.81232 25.81248 25.81264 25.8128 25.81296 25.81312 25.81328 25.81344 25.8136 25.81376 25.81392 25.81408 25.81424 25.8144 25.81456 25.81472 25.81488 25.81504 25.8152 25.81536 25.81552 25.81568 25.81584 25.816 25.81616 25.81632 25.81648 25.81664 25.8168 25.81696 25.81712 25.81728 25.81744 25.8176 25.81776 25.81792 25.81808 25.81824 25.8184 25.81856 25.81872 9.690052174 25.81904 25.8192 25.81054 25.80023077 25.78992154 25.77961231 25.76930308 25.75899385 25.74868462 25.73837538 25.72806615 25.71775692 25.70744769 25.69713846 25.68682923 25.67652 26.42644667 27.17637333 27.9263 28.67622667 29.42615333 30.17608 31.269112 32.362144 33.455176 34.548208 35.64124 36.734272 37.827304 38.920336 40.013368 41.1064 41.24958 41.56276 41.90794 42.28512 42.6953 43.13648 43.60866 44.10884 44.63402 45.1802 45.74238 46.31756 46.90174 47.49592 48.1081 48.75028 49.42846 50.13764 50.86782 51.6 53.5 55.3 56.1 56.5 56.2 55.7 58.5 59.9 60.1 60.1 57.4 58.3 61.6 62.6 62.8 63 63.3 64 64.7 64.8 64.4 64.2 64.3 65 66.6 67.6 67.6 67.7 68.2 68.5 68.8 69.3 69.5 69.6 69.5 69.9 70.6 70.8 70.7 70.8 71.4 71.9 72.3 72.7 73.1 +Guinea 29.5 29.51034483 29.52068966 29.53103448 29.54137931 29.55172414 29.56206897 29.57241379 29.58275862 29.59310345 29.60344828 29.6137931 29.62413793 29.63448276 29.64482759 29.65517241 29.66551724 29.67586207 29.6862069 29.69655172 29.70689655 29.71724138 29.72758621 29.73793103 29.74827586 29.75862069 29.76896552 29.77931034 29.78965517 29.8 29.81034483 29.82068966 29.83103448 29.84137931 29.85172414 29.86206897 29.87241379 29.88275862 29.89310345 29.90344828 29.9137931 29.92413793 29.93448276 29.94482759 29.95517241 29.96551724 29.97586207 29.9862069 29.99655172 30.00689655 30.01724138 30.02758621 30.03793103 30.04827586 30.05862069 30.06896552 30.07931034 30.08965517 30.1 30.11034483 30.12068966 30.13103448 30.14137931 30.15172414 30.16206897 30.17241379 30.18275862 30.19310345 30.20344828 30.2137931 30.22413793 30.23448276 30.24482759 30.25517241 30.26551724 30.27586207 30.2862069 30.29655172 30.30689655 30.31724138 30.32758621 30.33793103 30.34827586 30.35862069 30.36896552 30.37931034 30.38965517 30.4 30.41034483 30.42068966 30.43103448 30.44137931 30.45172414 30.46206897 30.47241379 30.48275862 30.49310345 30.50344828 30.5137931 30.52413793 30.53448276 30.54482759 30.55517241 30.56551724 30.57586207 30.5862069 30.59655172 30.60689655 30.61724138 30.62758621 30.63793103 30.64827586 30.65862069 30.66896552 30.67931034 30.68965517 30.7 30.71034483 11.87695019 30.73103448 30.74137931 30.94660414 31.15182897 31.35705379 31.56227862 31.76750345 31.97272828 32.1779531 32.38317793 32.58840276 32.79362759 32.99885241 33.20407724 33.40930207 33.6145269 33.81975172 34.02497655 34.23020138 34.43542621 34.64065103 34.84587586 35.05110069 35.25632552 35.46155034 35.66677517 35.872 36.37408 36.87616 37.37824 37.88032 38.3824 38.71428 39.18216 39.64304 40.09992 40.5508 40.99468 41.43156 41.86144 42.27932 42.6852 43.07608 43.45096 43.81184 44.16272 44.5096 44.85548 45.20736 45.57624 45.97012 46.4 46.5 46.5 46.6 46.7 46.8 47.1 47.4 47.8 48.2 48.8 49.2 49.6 49.9 50.3 50.7 51.1 51.4 51.7 52 52.3 52.7 53 53.5 53.9 54.3 54.7 54.9 55 55.4 55.6 56 56.4 56.8 57.1 57.3 57.6 58 58.3 58.7 59.1 59.5 59.9 60.2 60.5 60.8 +Guinea-Bissau 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 12.37571275 32 32 32.00692 32.01384 32.02076 32.02768 32.0346 32.04152 32.04844 32.05536 32.06228 32.0692 32.41495333 32.76070667 33.10646 33.45221333 33.79796667 34.14372 34.48947333 34.83522667 35.18098 35.52673333 35.87248667 36.21824 36.56399333 36.90974667 37.2555 37.60125333 37.94700667 38.29276 38.63851333 38.98426667 39.33002 39.67577333 40.02152667 40.36728 40.71303333 41.05878667 41.40454 41.75029333 42.09604667 42.4418 42.65572 42.86964 43.08156 43.29048 43.4944 43.69132 43.87924 44.06016 44.23308 44.4 44.8 45.1 45.4 48.1 48.4 48.7 48.9 49.2 49.5 49.8 49.9 50 50.2 50.4 50.5 50.7 50.8 51 51.1 51.3 51.4 51.6 51.7 51.9 52 52.1 52.2 51.5 51.7 51.7 51.5 51.3 51.1 50.9 50.9 50.9 51.1 51.3 51.7 52 52.2 52.5 52.8 53.1 53.4 +Guyana 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.12 31.47024 31.82048 32.17072 32.52096 32.8712 33.22144 29.36828694 33.92192 34.27216 34.68746 35.50807556 36.32869111 37.14930667 37.96992222 38.79053778 39.61115333 40.43176889 41.25238444 42.073 42.91489 43.75678 44.59867 45.44056 46.28245 47.12434 47.96623 48.80812 49.65001 50.4919 51.33379 52.17568 53.01757 53.85946 54.70135 55.54324 56.38513 57.22702 58.06891 58.9108 59.04286 59.24292 59.44098 59.63904 59.8361 60.03216 60.22722 60.42128 60.61434 60.8074 60.99946 61.19052 61.38158 61.57164 61.7617 61.95076 62.13982 62.32788 62.51394 62.7 62.7 62.7 62.4 61.9 61.8 62.1 62.6 63.1 63.3 63.6 63.9 64.3 64.6 64.7 65 65.4 65.6 65.6 65.2 64.9 65 65.3 65.4 65.2 64.8 64.6 64.4 64.4 64.5 64.4 64.2 63.7 63 62.6 62.6 63 63.1 63 63.1 63.3 63.5 63.8 64 64.2 64.4 +Haiti 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 29 18.80825136 29 29 28.99592 28.99184 28.98776 28.98368 28.9796 28.97552 28.97144 28.96736 28.96328 28.9592 28.95512 28.95104 28.94696 28.94288 28.9388 28.93472 28.93064 28.92656 28.92248 28.9184 28.91432 28.91024 29.814785 30.71933 31.623875 32.52842 33.432965 34.33751 35.242055 36.1466 36.47452 37.12944 37.77336 38.40728 39.0292 39.64212 40.24404 40.83796 41.42488 42.0068 42.58372 43.15764 43.72656 44.28448 44.8224 45.33032 45.80224 46.23416 46.63108 47 47.4 47.8 48.1 48.5 48.9 49.4 49.7 49.8 50.1 50.6 51.3 51.9 52.5 53 53.4 53.7 54.1 54.4 54.6 54.7 54.7 54.9 55.1 55.2 55.8 56.2 56.6 57.1 57.8 58.6 59.2 59.6 59.9 59.1 60.3 60.7 61.3 61.7 62.4 37 63.3 63.8 64.3 64.8 65.3 +Honduras 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 33.9 29.96814489 33.9 33.9 34.0098 34.1196 34.2294 34.3392 34.449 34.5588 34.6686 34.7784 34.8882 34.998 35.45515 35.9123 36.36945 36.8266 37.28375 37.7409 38.19805 38.6552 39.11235 39.5695 40.02665 40.4838 40.94095 41.3981 41.85525 42.3124 42.76955 43.2267 43.68385 44.141 44.4688 45.0326 45.6294 46.2612 46.926 47.6238 48.3506 49.1044 49.8782 50.664 51.4518 52.2336 53.0014 53.7522 54.483 55.1948 55.8946 56.5914 57.2902 58 58.8 59.7 58.9 56.9 62.5 63.1 63.9 64.7 65.6 66.3 66.8 67 67.3 67.4 67.6 67.8 68 68 68.2 68.3 68.3 68.4 68.2 68.2 68.3 68.3 68.4 63.7 68.6 68.8 69 69.3 69.5 69.9 70.1 70.4 70.6 70.9 71.1 71.3 71.6 71.8 72 72.2 72.4 +Hungary 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36 36.133592 36.267184 36.400776 36.534368 36.66796 36.801552 36.935144 37.068736 37.202328 37.33592 37.578136 37.820352 38.062568 38.304784 38.547 38.789216 39.031432 39.273648 39.515864 39.75808 39.987776 40.217472 40.447168 40.676864 40.90656 41.136256 41.365952 30.11303477 41.825344 42.05504 42.872016 43.688992 44.505968 45.322944 46.13992 46.956896 47.773872 48.590848 49.407824 50.2248 50.90472 51.58464 52.26456 52.94448 53.6244 54.30432 54.98424 55.66416 56.34408 57.024 56.58072 51.0264 41.0276 26.0288 47.03 55.0312 59.0324 60.73228 61.32536 62.106 62.4972 64.0684 63.9096 65.4708 66.922 66.0832 66.4544 67.4656 67.3668 68.138 69.0692 68.0104 69.0316 69.5328 69.224 69.9852 69.5564 69.3876 69.4588 69.3 69.4 69.6 69.6 69.2 69.2 69.6 69.8 69.7 69.4 69.2 69.2 69.3 69.1 69 68.9 69.2 69.7 69.9 69.7 69.5 69.3 69.1 69.1 69.4 70 70.6 71 71.1 71.3 71.8 72.3 72.6 72.7 72.9 73 73.2 73.4 73.8 74.2 74.7 75.2 75.6 75.8 76 76.2 +Iceland 42.84559912 33.87979273 27.62188074 19.5958984 24.76136474 30.84849024 45.82398075 43.56308455 43.54668489 40.41667505 43.13915533 38.55916427 33.72528192 33.30499054 37.16902111 45.15468934 31.12239943 45.64633543 43.47580695 36.8217223 36.56365268 31.01340992 48.39185754 45.89353698 41.59795939 32.7916668 25.63020305 24.92123638 29.59803714 34.90083006 40.5022162 40.4693596 39.06957956 35.93568925 24.0110066 36.62803915 30.8649967 32.8116478 32.4 27.95 31.97 40.22 40.13 25.39 42.9 41.35 18.31 32.94 41.39 37.14 36.61 30.01 42.1 48.6 43.14 38.15 42.34 39.49 34.84 29.67 19.76 27.09 26.96 35.11 34.81 34.21 27.2 37.54 34.64 28.03 38.37 35.02 25.15 36.61 39.62 36.54 40.25 44.64 41.61 39.52 42.32 35.82 17.74 30.27 42.19 45.46 44.97 40.6 46.8 52.47 36.58 47.49 52.73 52.58 44.79 52.52 53.22 48.52 44.2 49.79 46.64 52.98 50.52 48.84 52.66 49.51 53.58 49.74 45.79 52.36 52.67 55.47 56 58.95 51.92 53.66 54.53 59.02 51.07 58.49 54.58 54.2098 56.9496 57.6694 53.9992 58.229 60.7888 58.1186 61.8084 60.5482 60.228 60.8278 62.1576 63.0174 63.3672 59.487 62.7468 63.5166 65.0864 65.9862 65.786 63.1758 64.1156 65.2154 66.7952 67.525 68.5548 69.3846 70.1644 71.4342 71.004 71.0438 72.4836 72.3034 73.3532 73.293 72.9728 73.4626 73.4224 72.6522 74.082 73.4618 73.6716 72.9714 73.5612 73.831 73.2208 73.7206 73.9304 73.7002 73.8 73.8 73.9 74.1 74.3 74.7 75.2 75.6 76 76.4 76.7 76.9 77.1 77.3 77.4 77.6 77.6 77.7 77.8 78 78.1 78.3 78.5 78.7 78.8 78.9 79.1 79.3 79.5 79.7 79.9 80.2 80.5 80.8 81.1 81.3 81.5 81.8 82 82.2 82.5 82.7 82.8 82.8 82.8 82.8 +India 25.4424 25.4424 25 24 23.5 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 23 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 23 22 25.4424 25.4424 25.4424 24.3 23.9 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 25.4424 23 22 25.4424 25.4424 25.25229578 25.25229578 21.03982507 25.25229578 25.25229578 21.30447349 25.4424 25.4424 25.4424 25.4424 25.4424 25.11 20 19 20 25.4424 25.4424 25.4424 25.3248 25.2072 25.0896 24.972 24.8544 24.7368 24.41756072 24.3009239 24.384 23.0252785 22.65475745 24.11024 24.03216 23.95 22.75 19.85 25.75 23.35 18.35 23.05 23.6 23.41776 22 21.9 21.88693362 19.23889413 23.24816 23.21424 23.18032 23.1464 23.33857778 23.53075556 23.72293333 23.91511111 24.10728889 24.29946667 8.108836575 24.57893333 24.71866667 24.85168 25.29056 25.72944 26.16832 26.6072 27.04608 27.48496 27.92384 28.36272 28.8016 29.24048 29.5616 29.88272 30.20384 30.52496 30.84608 31.1672 31.48832 31.80944 32.13056 32.45168 32.69353778 31.94518975 32.43478923 33.41911111 33.66096889 32.19706288 33.89750881 34.38654222 34.6284 34.95868 35.62796 36.30024 36.97552 37.6538 38.33608 39.02236 39.71364 40.41292 41.1222 41.84348 42.57776 43.32404 44.07932 44.8386 45.59388 46.33916 47.07144 47.78972 48.5 48.9 49.3 49.9 50.4 50.9 51.4 52 52.6 53.1 53.6 54.2 54.6 55.1 55.5 55.9 56.3 56.6 57 57.3 57.7 58 58.3 58.6 59 59.3 59.6 60 60.3 60.7 61.1 61.5 61.9 62.4 62.8 63.2 63.6 64 64.4 64.7 65.1 65.5 65.9 66.2 66.5 66.8 +Indonesia 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 30 14.02999281 30 30 30.08624 30.17248 30.25872 30.34496 30.4312 30.51744 30.60368 31.18992 31.77616 32.3624 32.94864 33.53488 34.12112 34.70736 35.2936 35.87984 36.46608 36.92732 37.38856 37.8498 38.31104 30.89728 29.98352 29.06976 28.156 32.74224 33.32848 33.91472 34.50096 38.9842 39.54144 40.56168 41.56792 42.56216 43.5424 44.50864 45.46288 46.40312 47.33136 48.2456 49.14784 50.03808 50.91532 51.77956 47.3808 47.86704 54.29928 55.11352 55.91376 56.7 57.3 57.8 58.3 58.8 59.3 59.7 60.2 60.6 61.1 61.5 61.9 62.3 62.7 63.1 63.4 63.7 64 64.3 64.7 65 65.4 65.7 66.2 66.6 67 67.3 67.7 67.9 68.1 68.3 68.4 68.4 68.6 67.2 69 69.1 69.4 69.5 69.6 69.8 70 70.3 70.5 70.7 70.9 +Iran 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 25.6 21.22314543 25.6 25.6 25.67288 25.74576 25.81864 25.89152 25.9644 26.03728 26.11016 26.18304 26.25592 26.3288 26.40168 26.47456 26.54744 26.62032 26.6932 26.76608 26.83896 26.91184 26.98472 27.0576 28.51228 29.96696 31.42164 32.87632 34.331 35.78568 37.24036 38.69504 40.14972 41.6044 41.96928 42.62616 43.28304 43.93992 44.5978 45.25568 45.91156 46.56644 47.21732 47.8622 48.50008 49.13096 49.75584 50.37972 51.0096 51.65248 52.31436 53.00324 53.72112 54.5 55.7 56.5 58 59 60 60.9 61.6 60.9 62.9 60.6 59.3 60.2 61 63 63.6 64 64.4 64.7 67.5 66.2 68 68.4 68.6 69 69.3 69.7 69.9 70.4 70.8 71.2 71.6 72.2 72 73.8 74.5 75.4 76.2 76.9 77.5 77.9 78.1 78.2 78.3 78.4 78.5 +Iraq 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 31.2 25.86570849 31.2 31.2 31.29802 31.39604 31.49406 31.59208 31.6901 31.78812 31.88614 31.98416 32.08218 32.1802 32.27822 32.37624 32.47426 32.57228 32.6703 32.76832 32.86634 32.96436 33.06238 33.1604 33.62492 34.08944 34.55396 35.01848 35.483 35.94752 36.41204 36.87656 37.34108 37.8056 38.69662 40.35364 41.96166 43.52068 45.0297 46.49172 47.90774 49.28376 50.62578 51.9428 53.24082 54.52584 55.79486 57.04288 58.2499 59.39392 60.45694 61.42796 62.30298 63.1 64.1 64.4 64.7 63.8 64.3 66.3 66.8 67.2 67.7 67.4 67.7 67.9 68 68.2 68.5 68.5 68.5 57.4 69.3 69.2 67.7 68.9 68.9 68.8 68.5 68.5 68.5 68.7 68.9 69.1 69.3 69.4 66.7 65.5 66.6 63.3 64.3 66.6 68.1 68.3 70.6 70.9 71.3 71.7 72.1 +Ireland 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 19.8 24 14.9 14.1 31.2 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.3 38.56428571 38.82857143 39.09285714 39.35714286 39.62142857 39.88571429 40.15 40.41428571 40.67857143 40.94285714 41.20714286 41.47142857 41.73571429 42 42.26428571 42.52857143 42.79285714 43.05714286 43.32142857 43.58571429 43.85 44.11428571 44.37857143 44.64285714 44.90714286 45.17142857 45.43571429 45.7 45.96428571 46.22857143 46.49285714 46.75714286 47.02142857 47.28571429 47.55 47.81428571 48.07857143 48.34285714 48.60714286 48.87142857 49.13571429 49.4 49.84 50.28 50.72 51.16 51.6 52.04 52.48 52.92 53.36 53.8 54.05333333 54.30666667 54.56 54.81333333 55.06666667 55.32 49.68159322 55.82666667 56.08 56.33953333 56.59906667 56.8586 57.11813333 57.37766667 57.6372 57.7734 57.9096 58.0458 58.182 58.3182 58.4544 58.5906 58.7268 58.863 58.9992 59.2254 59.4516 59.6778 59.904 60.1302 60.4164 60.7026 60.9888 61.275 61.5612 62.6199 63.6786 64.7373 65.796 64.9722 67.3984 68.1646 68.2808 68.277 69.2332 69.2894 69.5956 69.7318 70.478 69.9442 70.2504 70.5066 70.7628 70.969 70.4852 71.5314 71.2276 71.1538 71.2 71.3 71.2 71.2 71.4 71.7 72.1 72.1 72 72.1 72.4 72.7 72.9 73.1 73.4 73.7 74 74.3 74.4 74.6 74.8 75.1 75.3 75.5 75.7 75.8 76 76.1 76.2 76.4 76.7 77.1 77.6 78.1 78.5 78.9 79.2 79.4 79.4 79.6 79.9 80.2 80.4 80.4 80.4 80.4 +Israel 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 26.52893178 32 32 31.9983 31.9966 31.9949 31.9932 31.9915 31.9898 31.9881 31.9864 31.9847 31.983 31.9813 31.9796 31.9779 31.9762 31.9745 34.1176 36.2607 38.4038 40.5469 42.69 44.8331 46.9762 49.1193 51.2624 53.4055 55.5486 57.6917 59.8348 61.9779 64.121 64.4453 65.0736 65.6599 66.2022 66.7035 67.1618 67.5811 67.9624 68.3117 68.635 68.9373 69.2256 69.5059 69.7802 70.0465 70.2958 70.5241 70.7304 70.9197 71.1 71.4 71.5 71.1 71.6 71.8 72.3 72.7 73 73.4 73.8 74.1 74.3 74.4 74.6 74.9 75.2 75.5 75.8 76.2 76.4 76.5 76.6 76.9 77.2 77.5 77.8 78.1 78.3 78.6 78.8 78.9 79.1 79.4 79.7 80 80.2 80.6 80.9 81.2 81.5 81.8 82.1 82.2 82.3 82.4 +Italy 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 29.69 31.6 31.75 31.31 33.6 34.88 34.32 33.95 32.74 34.2 34.29 35.18 36.6 36.83 35.1 35.97 36.92 39.05 38.5 38.46 38.84 39.79 39.91 39.61 40.7 43.29 42.33 43.67 41.66 43.52 42.99 43.15 44.43 43.94 45.09 45.45 43.19 44.67 46.75 44.77 48.98 48.46 49.89 42.34 39.27 37.69 25.62 42.1 45.51 49.2488 50.0076 51.4464 51.5052 51.304 50.9528 52.5716 52.6604 52.2792 55.188 54.7668 54.7556 56.2744 56.8432 56.202 56.7308 55.4696 56.1084 57.6172 56.926 54.5948 52.4236 49.1624 52.3112 54.75 58.9388 61.1476 63.4164 64.0752 65.734 65.2728 65.9016 66.5404 67.8592 68.208 67.5968 67.7656 68.8244 69.2732 69.162 69.8008 69.1896 69.2984 70.3472 70.216 70.9648 71.0036 70.8224 70.8412 71.6 71.9 72 72.2 72.6 72.9 73.2 73.6 73.8 74 74.2 74.5 74.9 75 75.4 75.7 76 76.3 76.6 76.8 77 77 77.3 77.6 77.8 78 78.3 78.7 79 79.3 79.6 79.8 80 80.3 80.8 81.2 81.2 81.3 81.4 81.6 81.9 82 82.1 82.1 82.1 82.1 +Jamaica 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 34.2 40.1 38.1 37.2 37.8 36.9 35.5 38.6 37.6 34.3 37.3 39.2 38.6 39 37.4 37.6 37 39.1 37.6 37.8 38.1 40.4 34.6 33.6 37.6 32.4 29.5 36.8 37.3 36.7 37.9 34.4 37.5 38.2 37 35.6 31.7 26.4 36.6 35.4 30.69682 36.99364 37.99046 38.58728 38.8841 40.68092 39.37774 41.57456 42.97138 45.2682 42.66502 44.16184 41.55866 44.35548 43.9523 44.34912 47.14594 45.84276 48.43958 47.5364 49.33322 49.73004 50.22686 49.02368 49.0205 51.31732 50.31414 51.61096 53.80778 56.5346 57.02242 57.98024 58.89806 59.77488 60.6097 61.40352 62.15534 62.86416 63.52798 64.1458 64.71562 65.23644 65.71126 66.14208 66.5349 66.89372 67.22454 67.53336 67.82518 68.1 68.4 68.9 69.3 69.7 70 70.2 70.5 71 71.6 72.1 72.3 72.4 72.4 72.4 72.6 72.9 73.2 73.6 74 74.4 74.6 74.6 74.4 74.2 73.9 73.5 73.1 72.8 72.6 72.7 72.9 73.4 73.9 74.3 74.7 75.2 75.4 75.5 75.6 75.5 75.6 75.5 75.5 75.5 75.5 +Japan 36.4 36.40039754 36.40079508 36.40119262 36.40159015 36.40198769 36.40238523 36.40278277 36.40318031 36.40357785 36.40397538 36.40437292 36.40477046 36.405168 36.40556554 36.40596308 36.40636062 36.40675815 36.40715569 36.40755323 36.40795077 36.40834831 36.40874585 36.40914338 36.40954092 36.40993846 36.410336 36.41073354 36.41113108 36.41152862 36.41192615 36.41232369 36.41272123 36.41311877 36.41351631 36.41391385 36.41431138 36.41470892 36.41510646 36.415504 36.41590154 36.41629908 36.41669662 36.41709415 36.41749169 36.41788923 36.41828677 36.41868431 36.41908185 36.41947938 36.41987692 36.42027446 36.420672 36.42106954 36.42146708 36.42186462 36.42226215 36.42265969 36.42305723 36.42345477 36.42385231 36.42424985 36.42464738 36.42504492 36.42544246 36.42584 36.4592 36.49256 36.52592 36.55928 36.59264 36.634 36.67536 36.71672 36.75808 36.79944 36.846848 36.894256 36.941664 36.989072 37.03648 37.094864 37.153248 37.211632 37.270016 37.3284 37.397856 37.467312 37.536768 37.606224 37.67568 37.760112 37.844544 37.928976 38.013408 38.09784 38.198272 38.298704 38.399136 38.499568 38.6 38.724384 38.848768 38.973152 39.097536 39.22192 39.372256 39.522592 39.672928 39.823264 39.9736 40.158768 40.343936 40.529104 40.714272 40.89944 41.128416 41.357392 32.69594853 41.815344 42.04432 42.33292 42.62152 43.232728 43.843936 44.455144 45.066352 45.67756 46.00305 46.32854 46.65403 46.97952 47.30501 47.6305 47.95599 48.28148 48.66284 49.0442 49.0468 49.0494 49.052 48.8046 48.5572 46.0598 40.0624 30.6018 46.5676 51.8202 56.9628 57.8354 59.378 61.0706 63.1132 63.4558 64.6984 65.861 65.7236 65.5962 67.2188 67.6114 67.904 68.5566 68.8392 69.9218 70.3944 70.447 71.2596 71.5522 71.8748 72.1074 72.2 72.8 73.2 73.5 73.9 74.4 74.9 75.3 75.7 76.1 76.3 76.7 77 77.1 77.4 77.8 78.1 78.4 78.6 78.9 79.1 79.2 79.4 79.6 79.8 79.9 80.3 80.6 80.6 80.7 81.1 81.4 81.7 81.8 82 82.2 82.3 82.5 82.6 82.8 83 82.8 83.2 83.3 83.4 83.5 +Jordan 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 31.7 26.28022305 31.7 31.7 31.76258 31.82516 31.88774 31.95032 32.0129 32.07548 32.13806 32.20064 32.26322 32.3258 32.38838 32.45096 32.51354 32.57612 32.6387 33.57214667 34.50559333 35.43904 36.37248667 37.30593333 38.23938 39.17282667 40.10627333 41.03972 41.97316667 42.90661333 43.84006 44.77350667 45.70695333 46.6404 47.13798 48.06656 48.98514 49.89472 50.7933 51.68288 52.56346 53.43504 54.29862 55.1542 56.00378 56.84836 57.68594 58.51852 59.3421 60.15768 60.96326 61.75584 62.53442 63.3 63.9 64.5 65 65.3 65.5 65.6 65.8 65.9 66.1 66.5 67.1 67.6 68.2 68.8 69.3 69.9 70.6 71.2 71.6 72 72.2 72.4 72.6 72.7 72.8 72.9 72.9 73 73 73.1 73.2 73.4 73.6 73.9 74.2 75.1 76.1 76.8 77.3 77.6 77.9 78 78.1 78.2 78.3 +Kazakhstan 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 26.2 25.676 25.152 24.628 24.104 23.58 23.624 23.668 23.712 23.756 23.8 24 24.2 24.4 24.6 24.8 25 25.2 25.4 25.6 25.8 26 26.2 26.4 26.6 26.8 27 27.2 27.4 27.6 27.8 28 28.2 28.4 28.6 28.43333333 28.26666667 28.1 28.35 28.6 28.85 29.1 29.35 29.6 29.85 30.1 30.35 30.6 33.55863338 33.9822335 31.81397988 31.4 31 31 28 18 23.47 18.97 22.26916 23.16832 32.06748 34.56664 33.6658 36.86496 36.19950814 37.70665427 36.46329797 35.78045174 15.99076 7.98992 3.98908 38.13986426 39.69637279 41.36463428 40.37238569 42.05616107 44.45404 41.9832 26.98236 23.98152 22.98068 30.97984 38.979 48.97816 40.97732 49.04648 51.84564 54.1448 54.37396 54.83212 55.28628 55.73744 56.1846 56.62876 57.07092 57.51008 57.94924 58.3884 58.83056 59.27372 59.71788 60.15904 60.5942 61.01636 61.42252 61.80768 62.16884 62.5 62.8 63 63.2 63.4 63.6 63.7 63.9 64.1 64.4 64.6 65 65.3 65.7 66.1 66.4 66.8 67 67.1 67 66.7 66.2 65.5 64.7 63.9 63.3 63.1 63 63.1 63.4 63.6 63.9 64.1 64.3 64.5 64.7 65.1 65.5 66.1 66.6 67.1 67.4 67.6 67.8 68 68.2 +Kenya 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 25.5 6.011524952 25.5 25.5 25.62566 25.75132 25.56194 25.37256 25.18318 24.9938 24.80442 25.17496 25.5455 25.91604 26.28658 26.65712 27.02766 27.3982 27.76874 28.13928 28.50982 28.94158 29.37334 29.8051 30.23686 30.66862 31.10038 31.53214 31.9639 34.64208 37.32026 39.99844 42.67662 45.3548 45.63546 46.09512 46.60378 47.16044 47.7661 48.41776 49.11242 49.84408 50.60174 51.3754 52.14906 52.91272 53.65438 54.37004 55.0637 55.74236 56.41902 57.10468 57.79834 58.5 58.8 59.1 59.4 59.8 60.2 60.6 61 61.4 61.7 62 62.4 62.6 62.9 63 63.1 63.2 63.2 63.2 63.1 63 62.7 62.3 61.7 61.1 60.3 59.6 58.8 58.1 57.6 57.4 57.3 57.4 57.8 58.2 58.8 59.6 60.6 61.5 62.2 63.1 63.9 64.5 65.2 65.91 66.63 +Kiribati 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 8 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.9 24.89756 24.89512 24.89268 24.89024 24.8878 24.88536 24.88292 24.88048 24.87804 24.8756 24.87316 24.87072 24.86828 24.86584 25.970275 27.07471 28.179145 29.28358 30.388015 31.49245 32.596885 29.94632 26.94388 30.94144 26.939 37.73656 39.13412 40.32793 41.432365 42.5368 42.76036 43.21092 43.66048 44.11104 44.5606 45.01116 45.46072 45.91028 46.36084 46.8104 47.25996 47.70952 48.15908 48.60864 49.0572 49.50576 49.95432 50.40388 50.85144 51.3 51.8 52.2 52.9 53.8 54.5 55 55.4 55.8 56.1 56.2 56.2 56.2 56.3 56.3 56.4 56.6 56.8 57 57.3 57.6 57.8 57.9 58 58.2 58.4 58.7 58.9 59.1 59.3 59.5 59.7 60 60.2 60.3 60.6 60.8 61 61.1 61.3 61.5 61.7 61.8 62 62.2 62.4 +Kuwait 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 26 21.55475707 26 26 26.06086 26.12172 26.18258 26.24344 26.3043 26.36516 26.42602 26.48688 26.54774 26.6086 26.66946 26.73032 26.79118 26.85204 26.9129 26.97376 27.03462 27.09548 27.15634 29.51483636 31.87333273 34.23182909 36.59032545 38.94882182 41.30731818 43.66581455 46.02431091 48.38280727 50.74130364 53.0998 53.70766 54.84552 55.94338 57.00224 58.0231 59.00396 59.94682 60.84968 61.71354 62.5384 63.32426 64.07212 64.78298 65.45884 66.1027 66.71456 67.29842 67.85528 68.38814 68.9 69.3 69.6 69.7 69.8 69.9 70 70.2 70.8 71.5 72.1 72.5 72.7 73.2 73.9 74.6 75.4 76.1 76.7 77.4 77.7 78.4 78.4 78 77.3 76.7 76.4 76.4 76.6 77 77.5 78 78.3 78.5 78.4 78.2 78 78 78.2 78.6 79.1 79.7 80.1 80.3 80.5 80.7 +Latvia 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33 33.33206667 33.66413333 33.9962 34.32826667 34.66033333 34.9924 35.32446667 35.65653333 35.9886 36.32066667 36.65273333 36.9848 37.31686667 37.64893333 37.981 38.31306667 38.64513333 38.9772 39.30926667 39.64133333 39.9734 40.30546667 40.63753333 40.9696 41.30166667 41.63373333 41.9658 42.29786667 42.62993333 42.962 43.29406667 43.62613333 43.9582 44.29026667 44.62233333 44.9544 45.26674286 45.57908571 45.89142857 46.20377143 46.51611429 46.82845714 47.1408 47.45314286 47.76548571 48.07782857 48.39017143 48.70251429 49.01485714 49.3272 49.63954286 49.95188571 50.26422857 49.5 40.3 40.1 39.5 35.5 40.1 47.71124487 57.15317272 55.57765919 56.69359467 53.7056 52.92942312 55.88201205 54.19954027 54.90561651 52.90138138 56.03755001 56.75199849 56.62359353 58.5859718 55.55102064 58.105 57.58164914 56.7375134 59.95407826 59.29313119 52.028 31.0294 43.2308 42.1322 23.5336 38.035 55.00293119 48.00433119 58.70573119 59.20713119 59.757 60.4884 61.8968 63.1962 64.3886 65.472 66.4464 67.3128 68.0712 69.5346 70.366 70.5974 69.9688 70.3602 71.6116 71.283 71.2544 70.9258 70.5472 70.2786 70.3 70.3 70.2 70 69.8 69.5 69.5 69.4 69.3 69.1 69 69.1 69.2 69.2 69.5 70.1 70.8 71.2 71.2 70.7 70.1 69.2 67.9 66.5 65.8 66.4 67.9 69 69.6 69.9 70.1 70.2 70.4 70.8 71 70.9 70.9 71.3 72.3 73.2 74 74.7 75.1 75.3 75.5 75.7 +Lebanon 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 29.7 24.62216481 29.7 29.7 29.75066 29.80132 29.85198 29.90264 29.9533 30.00396 30.05462 30.10528 30.15594 30.2066 30.25726 30.30792 30.35858 30.40924 30.4599 30.51056 30.56122 30.61188 30.66254 30.7132 33.75246 36.79172 39.83098 42.87024 45.9095 48.94876 51.98802 55.02728 58.06654 61.1058 61.38446 61.88212 62.36478 62.83044 63.2801 63.71376 64.13142 64.53408 64.92074 65.2934 65.65206 65.99872 66.33538 66.66404 66.9887 67.31236 67.63602 67.95968 68.28234 68.6 68.8 69.1 69.4 69.7 62.2 47.5 62.3 62.4 62.6 62.8 63 55.5 64.7 64.9 65.3 65.6 64.4 64.6 68.2 67.9 73.1 73.3 73.6 73.9 74.3 74.7 75.1 75.5 75.9 76.2 76.5 76.7 76.9 77.1 77.3 76.8 77.2 77.6 77.8 78 76.2 78.2 78.3 78.4 78.5 +Lesotho 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 12.68510557 32.8 32.8 32.94338 33.08676 33.23014 33.37352 33.5169 33.66028 33.80366 33.94704 34.09042 34.2338 34.37718 34.52056 34.66394 34.80732 34.9507 35.09408 35.23746 35.38084 35.52422 35.6676 35.81098 35.95436 36.09774 36.24112 36.3845 38.17168 39.95886 41.74604 43.53322 45.3204 45.74378 46.45216 47.17354 47.90892 48.6553 49.40968 50.16706 50.91944 51.64882 52.3372 52.96758 53.52096 53.99234 54.38572 54.7121 54.99248 55.25686 55.53324 55.84262 56.2 56.5 56.7 57.1 57.5 57.8 58 58.4 58.7 59 59.2 59.4 59.7 59.9 60.2 60.4 60.7 60.8 61 61.1 61.2 61.2 61 60.5 59.6 58.5 57.2 55.6 53.6 51.6 49.8 48.3 47 45.8 44.8 44.1 44 44.4 45.2 46.3 47.4 48.3 48.2 48.3 48.4 48.5 +Liberia 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 12.02764583 31.1 31.1 31.28492 31.46984 31.65476 31.83968 32.0246 32.20952 32.39444 32.57936 32.76428 32.9492 33.13412 33.31904 33.50396 33.68888 33.8738 34.05872 34.24364 34.42856 34.61348 34.7984 34.98332 35.16824 35.35316 35.53808 35.723 36.22592 36.72884 37.23176 37.73468 38.2376 38.53352 38.93744 39.33436 39.72428 40.1092 40.48912 40.86804 41.25096 41.64688 42.0678 42.52272 43.02364 43.57756 44.18548 44.8414 45.53632 46.25524 46.98916 47.73508 48.5 48.9 49.4 49.9 50.4 50.9 51.3 51.7 52.1 52.5 53 53.4 53.7 54.1 54.3 54.5 54.5 54.5 54.5 54.4 51.4 53.4 51.6 52.1 51.1 52.1 51.7 54.1 54.5 55.1 55.9 56.5 56.4 56.5 58.6 59.3 59.9 60.5 61 61.3 61.7 62.2 62.7 63.1 63.5 63.9 +Libya 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 25.33110994 33.1 33.1 33.29096 33.48192 33.67288 33.86384 34.0548 34.24576 34.43672 34.62768 34.81864 35.0096 35.20056 35.39152 35.58248 35.77344 35.9644 36.15536 36.34632 36.53728 36.72824 36.6192 35.01016 34.30112 34.39208 34.78304 37.274 38.96496 39.97367 40.98238 41.99109 42.9998 42.89976 42.64872 42.68168 42.99864 43.5976 44.47156 45.60552 46.97548 48.53944 50.2474 52.04036 53.85332 55.62628 57.31624 58.8962 60.36516 61.75312 63.08708 64.36804 65.6 66.3 67 67.5 68.1 68.6 69.1 69.5 70 70.4 70.7 70.9 71.2 71.4 71.7 71.9 72.1 71.6 72.5 72.7 73 73.3 73.6 73.9 74.2 74.4 74.2 74.7 74.7 74.6 74.6 74.7 74.7 74.8 74.9 75.1 75.2 75.2 75.3 75.5 75.6 67.7 75.3 75.6 75.9 76.2 +Lithuania 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 28.9 29.32666667 29.75333333 30.18 30.60666667 31.03333333 31.46 31.88666667 32.31333333 32.74 33.16666667 33.59333333 34.02 34.44666667 34.87333333 35.3 35.72666667 36.15333333 36.58 37.00666667 37.43333333 37.86 38.28666667 38.71333333 39.14 39.56666667 39.99333333 40.42 40.84666667 41.27333333 41.7 42.052 42.404 42.756 43.108 43.46 43.812 44.164 44.516 44.868 45.22 45.572 45.924 46.276 45.7 39.5 39.4 39 34.5 39 43 49.1004 49.4608 49.8212 50.1816 50.542 51.0728 51.6036 52.1344 52.6652 53.196 53.7268 54.2576 54.7884 55.3192 55.85 56.3808 56.9116 57.4424 55.1596 51.168 12.1764 46.1848 44.5932 27.2016 40.21 52.7184 45.7268 58.2352 60.7436 63.812 64.1314 64.7608 65.3882 66.0136 66.636 67.2534 67.8648 68.4622 68.0076 70.616 70.8144 69.7528 70.9412 72.3096 72.068 72.2364 72.3148 72.0132 71.6316 71.5 71.7 71.6 71.5 71.4 71.3 71.2 71.1 70.9 70.9 70.9 70.7 70.7 70.6 70.7 71.2 72.1 72.4 72.3 72 71.5 70.7 69.8 69 68.5 68.9 70 71 71.7 72 72 71.9 72 72.1 71.9 71.5 71.1 71.2 72 73.1 73.9 74.5 74.8 75 75.2 75.4 +Luxembourg 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 36.9 37.40345455 37.90690909 38.41036364 38.91381818 39.41727273 39.92072727 40.42418182 40.92763636 41.43109091 41.93454545 42.438 42.94145455 43.44490909 43.94836364 44.45181818 44.95527273 45.45872727 45.96218182 46.46563636 46.96909091 47.47254545 47.976 48.0568 46.9104 44.8272 46.208 46.5912 49.0008 46.4568 47.7936 49.664 46.3832 48.8816 50.2448 50.0696 51.4688 50.1152 48.0472 42.3344 44.6784 54.6224 56.216 55.2872 54.7152 56.8032 54.8408 53.468 55.932 55.4352 52.7968 56.9024 57.7032 56.7864 58.4504 60.0488 59.2568 61.3672 61.2408 59.3904 60.5496 62.1552 60.2096 58.5616 54.5592 48.0856 49.6608 61.8832 63.3376 64.7848 65.1416 65.56 65.7424 66.0938 66.4352 66.7686 67.094 67.4094 67.7178 68.0172 68.3086 69.486 69.9964 69.1068 69.3372 69.5276 69.868 69.7884 70.1788 70.7792 70.3496 70.1 70.3 70.5 70.8 71.1 71.4 71.7 72.1 72.4 72.6 72.7 72.8 73 73.2 73.5 73.8 74.1 74.3 74.6 74.9 75.1 75.3 75.6 75.9 76.2 76.6 76.9 77.2 77.5 77.9 78.2 78.5 78.8 79.1 79.4 79.8 80.1 80.4 80.7 80.9 81 81.1 81.1 81.1 81.1 81.1 +Macedonia, FYR 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 36.1 19.81210006 36.1 36.1 36.60982383 37.11964765 37.62947148 38.13929531 38.64911913 39.15894296 39.66876679 40.17859062 40.68841444 41.19823827 41.7080621 42.21788592 42.72770975 43.23753358 43.7473574 44.25718123 44.76700506 45.27682889 45.78665271 46.29647654 45.62158 44.22856 42.95092462 41.78290462 41.73411538 47.53148 50.01346 50.99544 51.77742 52.5014 52.96838 53.90036 54.79134 55.63932 56.4453 57.21028 57.93626 58.62524 59.28222 59.9122 60.52018 61.11316 61.69414 62.26712 62.8311 63.38708 63.92806 64.44804 64.94102 65.4 66 66.5 67.1 67.7 68.3 68.8 69.2 69.7 70.2 70.6 71 71.3 71.5 71.8 72 72.1 72.1 72 72.3 72.8 72.9 72.7 72.9 72.9 73 73.2 73.2 73.2 73.5 73.9 74.2 74.4 74.7 74.9 75.1 75.1 75.2 75.4 75.6 75.8 76.1 76.4 76.6 76.8 77 +Madagascar 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 30.5 12.7142916 30.5 30.5 30.61858 30.73716 30.85574 30.97432 31.0929 31.21148 31.33006 31.44864 31.56722 31.6858 31.80438 31.92296 32.04154 32.16012 32.2787 32.39728 32.51586 32.63444 32.75302 32.8716 32.99018 33.10876 33.22734 33.34592 33.4645 34.55288 35.64126 36.72964 37.81802 38.9064 39.26698 39.87056 40.47414 41.07872 41.6833 42.28888 42.89346 43.49904 44.10262 44.7052 45.30578 45.90436 46.49994 47.09352 47.6871 48.28268 48.88326 49.48784 50.09342 50.7 51.1 51.5 51.8 52 52.2 52.4 52.8 53.1 53.6 53.8 54 54.2 54.3 54.4 54.5 54.7 55 55.5 56 56.4 56.7 56.9 57.1 57.4 57.9 58.4 59 59.5 60 60.5 60.9 61.2 61.5 61.8 62.3 62.7 63.1 63.4 63.6 63.8 63.9 64.1 64.3 64.5 64.7 +Malawi 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 30.3 11.71825301 30.3 30.3 30.3152 30.3304 30.3456 30.3608 30.376 30.3912 30.4064 30.4216 30.4368 30.452 30.4672 30.4824 30.4976 30.5128 30.528 30.5432 30.5584 30.5736 30.5888 30.604 30.6192 30.6344 30.6496 30.6648 30.68 31.84 33 34.16 35.32 36.48 36.5622 36.7184 36.8916 37.0798 37.284 37.5022 37.7334 37.9736 38.2198 38.465 38.7042 38.9344 39.1576 39.3788 39.612 39.8782 40.1894 40.5506 40.9588 41.4 42.1 43 43.9 44.8 45.7 46.5 47.3 48.3 49.2 49.9 50.4 50.7 50.9 50.9 50.8 50.6 50.3 50.1 49.8 49.5 49.1 48.7 48.3 47.8 47.3 46.9 46.5 46.2 46.2 46.3 46.6 47 47.4 47.8 48.4 49.3 50.3 51.4 52.6 53.8 54.8 55.9 57.3 58.74 60.22 +Malaysia 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 30.6 19.60922285 30.6 30.6 30.62508 30.65016 30.67524 30.70032 30.7254 30.75048 30.77556 30.80064 30.82572 30.8508 32.02018 33.18956 34.35894 35.52832 36.6977 37.86708 39.03646 40.20584 41.37522 42.5446 42.32668 36.65176 39.07684 38.90192 38.727 45.65208 48.67716 51.20224 52.72732 54.2384 54.59348 55.27456 55.94964 56.61772 57.2798 57.93488 58.58196 59.22204 59.85112 60.4682 61.07128 61.65836 62.22544 62.77452 63.3036 63.81368 64.30676 64.78484 65.24892 65.7 66.2 66.7 67 67.2 67.5 67.7 67.7 68.4 68.8 69.1 69.5 69.9 70.2 70.3 70.5 70.9 71.3 71.6 71.9 72.1 72.4 72.6 72.8 72.8 72.8 73.1 73.2 73.4 73.4 73.8 74 74.1 74.1 74.2 74.4 74.6 74.6 74.5 74.3 74.3 74.4 74.5 74.7 74.9 75.1 +Maldives 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 32.647 10.5989291 32.647 32.647 32.84394 33.04088 33.23782 33.43476 33.6317 33.82864 34.02558 34.22252 34.41946 34.6164 34.81334 35.01028 35.20722 35.40416 35.6011 35.79804 35.99498 36.19192 36.38886 36.5858 36.78274 36.97968 37.17662 37.37356 37.5705 37.76744 37.96438 38.16132 38.35826 38.5552 38.82414 39.18908 39.59802 40.05096 40.5489 41.09284 41.68578 42.33072 43.03366 43.8026 44.64254 45.55448 46.53642 47.57636 48.6553 49.75324 50.85118 51.93212 52.98406 54 54.7 55.5 56.2 56.9 57.5 58 58.4 58.8 59.1 59.7 60.2 60.7 61.3 62 62.7 63.4 64 64.5 65.1 65.8 66.6 67.4 68.2 68.9 69.6 70.2 70.9 71.5 72.1 72.6 73.3 74 74.9 75.8 76.7 77.3 77.8 78.2 78.6 78.9 79.1 79.2 79.3 79.4 79.5 +Mali 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 26.408 10.21305695 26.408 26.408 26.53624 26.66448 26.79272 26.92096 27.0492 27.17744 27.30568 27.43392 27.56216 27.6904 27.81864 27.94688 28.07512 28.20336 28.3316 28.45984 28.58808 28.71632 28.84456 28.9728 29.10104 29.22928 29.35752 29.48576 29.614 29.74224 29.87048 29.99872 30.12696 30.2552 30.53844 30.95968 31.34892 31.70516 32.0284 32.32164 32.58888 32.83712 33.07836 33.3286 33.60284 33.92008 34.29532 34.73956 35.2588 35.85804 36.52328 37.24152 38.00376 38.8 39.1 39.5 39.9 40.3 40.9 41.5 42.2 42.9 43.6 44.2 44.8 45.4 46 46.5 46.9 47.4 47.7 48.1 48.5 48.8 49.1 49.4 49.7 49.7 49.9 50 50.1 50.3 50.7 51.1 51.6 52.2 52.9 53.5 54.2 54.8 55.3 55.8 56.2 56.5 56.8 57 57.2 57.4 57.6 +Malta 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 29.17269231 29.64538462 30.11807692 30.59076923 31.06346154 31.53615385 32.00884615 32.48153846 32.95423077 33.42692308 33.89961538 34.37230769 34.845 35.31769231 35.79038462 36.26307692 36.73576923 37.20846154 37.68115385 38.15384615 38.62653846 39.09923077 39.57192308 40.04461538 40.51730769 40.99 41.46269231 41.93538462 42.40807692 42.88076923 43.35346154 43.82615385 44.29884615 44.77153846 45.24423077 45.71692308 46.18961538 46.66230769 47.135 47.60769231 48.08038462 48.55307692 49.02576923 49.49846154 49.97115385 47.1372566 50.91653846 51.38923077 51.86162308 52.33401538 52.80640769 53.2788 53.75119231 54.22358462 54.69597692 55.16836923 55.64076154 56.11315385 56.58554615 57.05793846 57.53033077 58.00272308 58.47511538 58.60491154 58.73470769 58.86450385 58.9943 57.494 52.9937 55.9934 60.9931 62.4928 63.19903846 63.67143077 64.14382308 64.61621538 65.08860769 65.561 65.6127 65.7284 65.8731 66.0438 66.2425 66.4672 66.7169 66.9896 67.2813 67.586 67.8987 68.2124 68.5231 68.8258 69.1185 69.4032 69.6809 69.9566 70.2303 70.5 70.7 71 71.2 71.5 71.7 71.9 72.1 72.2 72.4 72.6 73 73.3 73.9 74.5 75.2 75.8 76.4 76.8 77.2 77.6 77.9 78.3 78.6 78.8 79 79.2 79.3 79.4 79.5 79.7 79.9 80.2 80.4 80.6 80.9 81.1 81.2 81.4 81.6 81.8 82 82.1 82.1 82.1 82.1 +Mauritania 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 12.37571275 32 32 32.1134 32.2268 32.3402 32.4536 32.567 32.6804 32.7938 32.9072 33.0206 33.134 33.2474 33.3608 33.4742 33.5876 33.701 33.8144 33.9278 34.0412 34.1546 34.268 34.3814 34.4948 34.6082 34.7216 34.835 36.0374 37.2398 38.4422 39.6446 40.847 41.2354 41.9088 42.6052 43.3256 44.068 44.8314 45.6138 46.4122 47.2176 48.024 48.8204 49.5978 50.3482 51.0666 51.751 52.4004 53.0238 53.6282 54.2186 54.8 55 55.2 55.3 55.4 55 55.4 55.7 56 56.9 57.2 57.5 57.9 58.2 58.6 58.9 59.3 59.7 59.9 60.1 60.4 60.5 60.7 60.9 61 61.2 61.4 61.5 61.5 61.6 61.8 61.9 62.1 62.3 62.4 62.7 63 63.3 63.6 63.9 64.2 64.5 64.8 65.1 65.4 65.7 +Mauritius 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 28.7 31.05329381 33.40658762 35.75988143 31.27210965 35.2169195 32.67226767 27.20026279 31.60219672 26.23846948 31.8496577 24.83680523 32.52557278 23.01455023 22.4149161 28.29900471 15 24.47437458 29.98588091 33.20586891 36.19158505 31.71616966 31.13170131 36.12649879 34.46439061 32.85903137 7.5 29.71721878 17.55303088 36.58457248 34.44371817 31.67813308 30.96404321 31.24397741 22.65830915 27.52863222 27.94467422 28.37551526 29.38918162 4 13.6470944 26.45186417 39.29222392 36.89317722 35.48203935 28.76118211 32.52557278 37.56326712 34.8490764 32.62329601 35.0587994 30.26605038 34.12487651 32.62329601 27.99501993 27.41325443 31.56429683 29.10839541 33.31562928 28.07913109 31.75425191 28.41811047 28.16349497 35.37575274 27.99501993 23.17389975 33.31562928 25.97219739 22.15418981 32.52557278 30.44819256 27.24926735 26.28574126 23.87965007 28.76118211 23.87965007 30.44819256 23.38340621 23.73680114 27.99501993 23.59480675 26.12849901 28.93426794 29.72613528 25.12910245 27.82755271 30.53967429 28.50349281 32.62329601 30.72346315 29.54831247 12 31.18778883 23.85919007 28.37719047 33.96127529 34.7672364 38.72123499 37.32798619 37.53290613 34.16656124 31.6655177 27.45648729 24.52991886 29.65950824 35.00380452 36.71758293 35.81959879 35.90768102 33.37000518 32.25501601 34.14810187 36.81751448 36.68554169 32.86550928 36.31208354 34.99099935 26.57476126 32.48517386 38.06518 41.20018667 44.33519333 47.4702 47.96074 48.98128 50.03582 51.12436 52.2459 53.39544 54.56398 55.73452 56.88006 57.9686 58.96514 59.83668 60.55922 61.12676 61.5373 61.80284 61.96238 62.05892 62.12646 62.2 62.7 62.7 62.9 63.3 63.5 63.8 64.1 64.6 65.1 65.5 66.1 66.7 67.2 67.6 67.8 68.1 68.5 68.8 69.2 69.5 69.7 69.8 69.9 69.9 70 70.1 70.3 70.6 70.8 71 71.2 71.4 71.6 71.8 72 72.1 72.1 72.1 72.2 72.4 72.7 73 73.3 73.6 73.9 +Mexico 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 26.9 25.69666667 24.49333333 23.29 26.62 29.52 28.8 26.24 27.03 24.98 27.58 26.65 28.37 28.68 29.09 26.8 27.88 27.97 28.72 29.21 27.41 27.8425 28.275 28.7075 29.14 29.5725 30.005 30.4375 18.18642435 31.3025 31.735 32.20012 32.66524 33.59786 32.93048 32.2631 34.39572 40.52834 34.76096 35.69358 36.5262 38.05882 38.79144 37.72406 38.65668 40.8893 38.82192 37.35454 39.98716 46.11978 39.8524 43.28502 40.51764 43.55026 43.98288 45.0155 45.64812 47.18074 49.21336 46.74598 49.5346 50.12622 51.25384 52.33046 53.35608 54.3317 55.25532 56.12594 56.94156 57.69618 58.3878 59.01142 59.56904 60.06466 60.51128 60.9219 61.31452 61.70514 62.10876 62.53738 63 63.8 64.2 64.5 64.9 65.4 65.7 66 66.5 66.7 67 67.5 68.2 68.9 69.5 69.7 70.3 70.8 71.1 71.6 72.1 72.5 72.7 73 73.3 73.6 74 74.2 74.3 74.6 75.1 75.3 75.4 75.4 75.6 75.6 75.8 75.9 75.7 75.5 75.7 76.2 76 75.5 75 74.5 +Micronesia, Fed. Sts. 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 26.7 8.668220878 26.7 26.7 26.67932 26.65864 26.63796 26.61728 26.5966 27.65896 28.72132 29.78368 30.84604 31.9084 32.97076 34.03312 35.09548 36.15784 37.2202 38.28256 39.34492 40.40728 41.46964 42.532 43.59436 42.54504 36.52436 27.50368 44.483 47.46232 49.44164 51.02096 52.10028 53.1556 53.33492 53.71424 54.09356 54.47288 54.8532 55.23352 55.61384 55.99416 56.37348 56.7528 57.13212 57.51044 57.88776 58.26608 58.6454 59.02772 59.41404 59.80436 60.19768 60.6 60.8 61 61.4 61.7 62.1 62.4 62.9 63.5 63.2 62.7 62.4 62.1 62 61.9 61.8 61.9 61.9 62 62.1 62.2 62.4 62.5 62.7 63 63.2 63.5 63.7 64 64.3 64.5 64.8 64.3 65.3 65.4 65.6 65.8 65.9 66.1 66.2 66.4 66.5 66.7 66.8 66.9 67 +Moldova 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 33.145 31.21478547 33.145 33.145 33.58201667 34.01903333 34.45605 34.89306667 35.33008333 35.7671 36.20411667 36.64113333 37.07815 37.51516667 37.95218333 38.3892 39.40191111 40.41462222 41.42733333 42.44004444 43.45275556 44.46546667 45.47817778 46.49088889 39.4311 37.8802 33.8293 23.6784 43.2275 49.6766 19.6257 53.5748 55.0239 56.618 56.7971 57.1982 57.5853 57.9574 58.3165 58.6626 58.9967 59.3218 59.6409 59.959 60.2801 60.6052 60.9333 61.2564 61.5655 61.8446 62.0837 62.2748 62.4139 62.5 63 63.3 63.7 64 64.4 64.7 65 65.2 65.4 65.4 65.5 65.4 65.4 65.5 66 67 67.8 68.2 68.2 68 67.9 67.7 67.3 66.4 66 66.7 67.9 68.8 69.1 69.3 69.8 70.2 70.3 70.1 69.7 69.4 69.4 69.6 69.8 70.2 70.9 71.5 71.9 72.3 72.7 +Mongolia 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 20.37821198 31.8 31.8 31.77874 31.75748 31.73622 31.71496 31.6937 31.67244 31.65118 31.62992 31.60866 31.5874 31.56614 31.54488 31.52362 31.50236 31.4811 31.45984 31.43858 31.41732 31.39606 31.3748 31.35354 31.33228 31.31102 31.28976 31.2685 33.39204 35.51558 37.63912 39.76266 41.8862 41.97894 42.23668 42.59342 43.04816 43.6009 44.24764 44.98138 45.79012 46.65186 47.5416 48.43134 49.29208 50.09782 50.83556 51.5043 52.11904 52.70178 53.26452 53.80226 54.3 54.9 55.6 56.2 56.8 57.4 57.8 58.1 58.4 58.7 59 59.4 59.7 60.1 60.5 60.8 61.3 61.7 61.8 61.9 61.8 61.7 61.5 61.3 61.1 60.9 60.8 60.8 61 61.2 61.4 61.6 61.8 61.9 62 62.2 62.5 62.9 63.2 63.5 63.8 64.1 64.4 64.7 65 65.3 +Montenegro 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 35.4 19.42793192 35.4 35.4 36.20922 37.01844 37.82766 38.63688 39.4461 40.25532 41.06454 41.87376 42.68298 43.4922 44.30142 45.11064 45.91986 46.72908 47.5383 48.34752 49.15674 49.96596 50.77518 51.5844 40.78447879 37.82027971 36.67049224 35.11462218 36.91109357 46.43212 56.44874 57.56536 58.86198 59.6766 59.80822 60.08784 60.43246 60.84308 61.3177 61.85332 62.44694 63.09056 63.77018 64.4698 65.17242 65.85904 66.51766 67.14228 67.7379 68.32052 68.90714 69.50476 70.10738 70.7 70.9 71.1 71.3 71.6 71.8 72 72.3 72.5 72.7 73 73.1 73 73 73.1 73.1 73.2 73.3 73.5 73.6 73.8 73.9 73.9 73.7 73.5 73.2 72.7 72.3 72.2 72.2 72 72.6 73.2 73.5 73.9 73.9 74 74.4 74.6 74.9 75.2 75.4 75.5 75.6 75.7 75.8 +Morocco 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 33.1 25.33110994 33.1 33.1 33.19648 33.29296 33.38944 33.48592 33.5824 33.67888 33.77536 33.87184 33.96832 34.0648 34.16128 34.25776 34.35424 34.45072 34.5472 34.64368 34.74016 34.83664 34.93312 35.0296 36.31978 37.60996 38.90014 40.19032 41.4805 42.77068 44.06086 45.35104 46.64122 47.9314 48.17988 48.58536 49.00484 49.43832 49.8858 50.34728 50.82176 51.30924 51.80772 52.3172 52.83468 53.35916 53.88564 54.41212 54.9336 55.44508 55.94756 56.43904 56.92352 57.4 57.9 58.3 58.8 59.2 59.6 60.2 60.8 61.4 62 62.7 63.4 64.2 64.9 65.6 66.1 66.7 67.1 67.6 68 68.3 68.7 69 69.3 69.6 69.7 70.1 70.4 70.7 71 71.3 71.5 71.8 72 72.2 72.5 72.8 73 73.3 73.5 73.7 73.9 74.1 74.3 74.5 74.7 +Mozambique 30.278 30.27798667 30.27797333 30.27796 30.27794667 30.27793333 30.27792 30.27790667 30.27789333 30.27788 30.27786667 30.27785333 30.27784 30.27782667 30.27781333 30.2778 30.27778667 30.27777333 30.27776 30.27774667 30.27773333 30.27772 30.27770667 30.27769333 30.27768 30.27766667 30.27765333 30.27764 30.27762667 30.27761333 30.2776 30.27758667 30.27757333 30.27756 30.27754667 30.27753333 30.27752 30.27750667 30.27749333 30.27748 30.27746667 30.27745333 30.27744 30.27742667 30.27741333 30.2774 30.27738667 30.27737333 30.27736 30.27734667 30.27733333 30.27732 30.27730667 30.27729333 30.27728 30.27726667 30.27725333 30.27724 30.27722667 30.27721333 30.2772 30.27718667 30.27717333 30.27716 30.27714667 30.27713333 30.27712 30.27710667 30.27709333 30.27708 30.27706667 30.27705333 30.27704 30.27702667 30.27701333 30.277 30.27698667 30.27697333 30.27696 30.27694667 30.27693333 30.27692 30.27690667 30.27689333 30.27688 30.27686667 30.27685333 30.27684 30.27682667 30.27681333 30.2768 30.27678667 30.27677333 30.27676 30.27674667 30.27673333 30.27672 30.27670667 30.27669333 30.27668 30.27666667 30.27665333 30.27664 30.27662667 30.27661333 30.2766 30.27658667 30.27657333 30.27656 30.27654667 30.27653333 30.27652 30.27650667 30.27649333 30.27648 30.27646667 30.27645333 30.27644 11.70914139 30.27641333 30.2764 30.47144667 30.66649333 30.86154 31.05658667 31.25163333 31.44668 31.64172667 31.83677333 32.03182 32.22686667 32.42191333 32.61696 32.81200667 33.00705333 33.2021 33.39714667 33.59219333 33.78724 33.98228667 34.17733333 34.37238 34.56742667 34.76247333 34.95752 35.15256667 35.34761333 35.54266 35.73770667 35.93275333 36.1278 36.57486 37.27592 37.97698 38.67804 39.3781 40.07816 40.77522 41.46828 42.15434 42.8284 43.48746 44.12852 44.75058 45.35564 45.9507 46.54276 47.13882 47.74588 48.36394 49 49.3 49.5 49.8 50.2 50.7 50.9 50.9 51.1 51.3 51.3 48.7 49 49.1 47 47 49 49.1 51.6 51.9 51.7 51.8 52.1 52.5 52.8 53.1 53.2 53.2 53.4 53.6 53.6 53.7 53.8 53.8 53.9 53.9 54.1 54.4 55 55.4 55.7 56 56.1 56.2 56.3 56.4 +Myanmar 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 18.12903307 30.8 30.8 30.78024 30.76048 30.74072 30.72096 30.7012 30.68144 30.66168 30.64192 30.62216 30.6024 30.58264 30.56288 30.54312 30.52336 30.5036 30.48384 30.46408 30.44432 30.42456 30.4048 30.38504 27.56528 28.04552 27.62576 27.506 28.41957333 29.33314667 30.24672 31.46796 32.6892 33.43744 34.88068 36.18192 37.34116 38.3604 39.24864 40.01788 40.69212 41.31136 41.9226 42.57284 43.30508 44.14232 45.07956 46.0768 47.07204 47.99728 48.80152 49.46776 50 50.7 51.1 51.6 52.1 52.5 53.1 53.6 54.1 54.7 54.9 55.2 55.6 56 56.4 56.7 57 57.2 57.3 57.8 58.1 58.4 58.6 59 59.3 59.6 60 60.4 60.7 61.1 61.4 61.8 62.1 62.6 63.1 63.5 64.1 64.7 60.8 65.6 66 66.4 66.7 67.1 67.5 67.9 +Namibia 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 29 5 10 20 27 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 32.4 12.53040916 32.4 32.4 32.52664 32.65328 32.77992 32.90656 33.0332 33.15984 33.28648 33.41312 33.53976 33.6664 33.79304 33.91968 34.04632 34.17296 34.2996 34.42624 34.55288 34.67952 34.80616 34.9328 35.84474 36.75668 37.66862 38.58056 39.4925 40.40444 41.31638 42.22832 43.14026 44.0522 44.55884 45.43848 46.30512 47.15776 47.9974 48.82204 49.63268 50.42932 51.20996 51.9746 52.72124 53.45188 54.16452 54.86316 55.5508 56.22844 56.90008 57.56772 58.23436 58.9 59.1 59.3 59.5 59.6 59.8 59.9 59.9 60 60.1 60.1 60.3 60.5 60.8 61.1 61.4 61.6 61.9 62 62.2 62.3 62.4 62.4 62.2 61.7 60.9 59.9 58.8 57.6 56.4 55 53.9 53 52.2 51.8 51.9 53.2 55.4 57.2 58.5 59.5 60 60.4 60.6 60.8 61 +Nepal 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 32.8 21.01903625 32.8 32.8 32.91944 33.03888 33.15832 33.27776 33.3972 33.51664 33.63608 33.75552 33.87496 33.9944 34.11384 34.23328 34.35272 34.47216 34.5916 34.71104 34.83048 34.94992 35.06936 35.1888 35.30824 35.42768 35.54712 35.66656 35.786 36.26404 36.74208 37.22012 37.69816 38.1762 38.49964 39.02608 39.55352 40.07996 40.6074 41.13384 41.66028 42.18572 42.71216 43.2366 43.76104 44.28348 44.80492 45.32636 45.8438 46.35724 46.86668 47.37312 47.88356 48.4 48.8 49.1 49.4 49.8 50.1 50.4 50.9 51.3 51.8 52.2 52.7 53.4 54 54.6 55.2 55.9 56.5 57.1 57.8 58.5 59.1 59.8 60.3 61.1 61.7 62.4 63.1 63.7 64.3 64.9 65.5 65.7 66.4 66.8 67.3 67.8 68.2 68.6 69 69.5 69.9 70.3 70.6 70.9 71.2 +Netherlands 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 39.86 40 38.66 38.63 38.63 34.53 38.39 35.46 34.66 30.86 36.91 36.44 38.28 38.33 37.56 36.37 33.64 39.31 37.75 40.47 37.34 32.94 36.49 39.2 41.3 38.24 40.35 42.03 41.1 41.96 40.39 42.87 43.79 42.35 41.34 43.3 41.98 44.99 44.22 44.35 44.4 44.25 43.95 45.8 46.93 46.64 48.56 49.36 49.03 49.35 48.4 48.72 50.61 51.51 50.9 52.11 52.78 53.54 52.76 54.96 55.14 53.17 57.21 57.37 57.2 57.22 56.16 55.67 47.61 54.98 57.84 59.772 59.844 62.066 62.978 63.19 63.052 62.664 63.756 62.208 64.75 64.372 65.464 66.106 66.648 66.57 66.792 67.014 67.436 67.768 65.44 65.372 65.884 64.476 61.308 55.5 67.632 69.584 71.106 70.338 71.51 71.572 72.194 71.776 72.468 72.59 72.612 73.064 73.226 73.268 73.45 73.642 73.314 73.436 73.818 73.69 73.642 73.914 73.726 73.638 73.7 73.8 73.9 74.2 74.5 74.7 74.9 75.1 75.3 75.5 75.8 76 76.1 76.2 76.3 76.4 76.5 76.7 76.9 77 77 77.2 77.3 77.3 77.5 77.6 77.7 78 78 78.1 78.1 78.3 78.5 78.7 79.1 79.5 79.9 80.1 80.3 80.4 80.5 80.6 80.6 80.6 80.6 80.6 +New Zealand 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.05 34.49628205 34.9425641 35.38884615 35.83512821 36.28141026 36.72769231 37.17397436 37.62025641 38.06653846 38.51282051 38.95910256 39.40538462 39.85166667 40.29794872 40.74423077 41.19051282 41.63679487 42.08307692 42.52935897 42.97564103 43.42192308 43.86820513 44.31448718 44.76076923 45.20705128 45.65333333 46.09961538 46.54589744 46.99217949 47.43846154 47.88474359 48.33102564 48.77730769 49.22358974 49.66987179 50.11615385 50.5624359 51.00871795 51.455 51.90128205 52.3475641 52.79384615 53.24012821 53.68641026 54.13269231 54.57897436 55.02525641 47.00680071 55.91782051 56.36410256 56.81378462 57.26346667 57.71314872 58.16283077 58.61251282 59.06219487 59.51187692 59.96155897 60.41124103 60.86092308 61.31060513 61.76028718 62.20996923 62.65965128 63.10933333 63.55901538 64.00869744 64.45837949 64.90806154 65.35774359 65.80742564 66.25710769 66.70678974 67.15647179 67.60615385 68.0558359 68.50551795 68.9552 69.0786 69.392 69.2654 69.4988 70.3522 70.4656 70.599 70.8624 70.3858 71.0192 70.9326 71.396 71.1194 71.3828 71.4562 71.4996 71.433 71.2964 71.6798 71.3432 71.7166 71.5 71.6 71.8 71.8 72 72.1 72.3 72.4 72.7 73 73.2 73.5 73.7 73.9 74.1 74.2 74.2 74.4 74.6 75 75.4 75.8 76.1 76.5 76.7 76.9 77.1 77.4 77.8 78.1 78.5 78.8 79 79.3 79.5 79.8 80 80.1 80.2 80.3 80.5 80.6 80.6 80.6 80.6 80.6 +Nicaragua 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.19 22.26836489 24.77 24.56 24.42038 25.02341684 25.62645368 26.22949053 26.83252737 27.43556421 28.03860105 28.64163789 29.24467474 29.84771158 30.45074842 31.05378526 31.65682211 32.25985895 32.86289579 33.46593263 34.06896947 34.67200632 35.27504316 35.87808 36.606412 37.334744 38.063076 38.791408 39.51974 40.248072 40.976404 41.704736 42.433068 43.1614 43.53978 44.22716 44.91754 45.61092 46.3073 47.00768 47.71106 48.41844 49.12882 49.8432 50.56158 51.28396 52.00934 52.73772 53.4711 54.21248 54.96186 55.71424 56.46362 57.2 58.3 52.6 60.5 61.6 62.5 63.3 64 62.9 60.3 65.8 66.2 66.7 65.2 64.6 64.9 66 65.8 68.1 70.5 70.9 71.4 71.6 72 72.3 72.5 72.8 73.1 71.6 73.6 73.9 74.1 74.2 74.3 74.4 74.6 74.8 75 75.2 75.5 75.8 76 76.2 76.4 76.6 76.8 +Niger 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 11.91162352 30.8 30.8 30.94 31.08 31.22 31.36 31.5 31.64 31.78 31.92 32.06 32.2 32.34 32.48 32.62 32.76 32.9 33.04 33.18 33.32 33.46 33.6 33.74 33.88 34.02 34.16 34.3 35.256 36.212 37.168 38.124 39.08 39.239 39.42 39.609 39.808 40.014 40.228 40.449 40.674 40.902 41.128 41.349 41.563 41.769 41.969 42.166 42.365 42.572 42.793 43.035 43.3 43.4 43.3 43.1 43.1 43.2 43.3 43.5 43.8 44.2 44.4 44.6 44.7 44.9 44.9 45 45.3 45.6 46.1 46.5 47 47.5 48 48.6 49.2 49.9 50.7 51.3 51.9 52.4 53 53.7 54.5 55.4 56.3 57.3 58.3 59.1 59.7 60.3 60.7 61 61.3 61.6 61.9 62.2 +Nigeria 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 14.3599432 30.4 30.4 30.652 30.904 31.156 31.408 31.66 31.912 32.164 32.416 32.668 32.92 33.172 33.424 33.676 33.928 34.18 34.432 34.684 34.936 35.188 35.44 35.692 35.944 36.196 36.448 36.7 37.5374 38.3748 39.2122 40.0496 40.887 41.299 41.882 42.488 43.117 43.768 44.44 45.131 45.838 46.552 47.268 47.976 48.669 49.342 49.994 50.627 51.249 45.844 41.096 39.348 49.6 50 50.5 51.1 51.7 52.3 52.9 53.6 54.1 54.5 54.8 55.1 55.4 55.5 55.5 55.5 55.4 55.3 55.3 55.3 55.4 55.4 55.5 55.5 55.5 55.6 55.6 55.6 55.6 55.7 55.8 55.9 56.1 56.3 56.5 56.9 57.2 57.7 58 58.5 58.8 59.1 59.5 60.1 60.71 61.33 +Norway 37.91620899 35.81921291 38.37040171 38.71717671 40.5180476 44.27012383 43.7601371 41.77438168 37.25796531 27.21588849 36.47500606 38.05396189 43.45933779 33.45823554 41.73582306 45.57633565 46.33303028 48.86765705 46.75055206 45.78205538 46.96239815 44.69431427 46.13183016 48.7602013 47.63559919 49.23252109 47.62854244 48.37713382 46.21642845 46.2865816 45.75400094 45.66251891 47.61602672 44.86018548 41.94759692 46.10029299 46.46382386 44.23745231 42.92746036 43.05320172 45.61661054 49.50525716 48.37315993 48.44353996 49.71194125 50.06560618 48.05 44.77 45.02 48.05 49.53 49.74 48.46 47.92 51.65 50.44 50.37 50.22 51.59 49.93 50 45.81 44.7 46.71 48.78 50.42 49.92 47.87 47.16 49.25 50.86 49.69 50.02 49.67 47.77 47.64 46.83 49.77 51.79 53.18 51.91 50.47 47.4 49.64 50.8 51.06 51.72 51.69 50.38 49.06 48.6 49.79 49.68 51.41 50.62 52.8 53.84 53.73 53.96 51.62 53.47 54.59 56.49 54.98 56.09 55.1 56.91 56.49 56.31 57.47 57.99 58.04 57.75 58.32 57.82 58.17 57.25 57.75 50.3 56.82 58.89 61.6064 60.7828 61.7992 62.1056 62.502 63.2384 62.8448 63.3712 62.4376 64.074 64.1004 64.5668 65.4432 66.1696 65.786 65.7824 65.9788 67.0252 67.2916 65.818 65.6944 65.6008 66.0372 65.7136 68.1 69.4164 69.9128 71.0292 71.4256 71.492 72.4284 72.5548 73.0312 73.1076 73.314 73.3604 73.3068 73.2932 73.4196 73.436 73.4424 73.3188 72.9552 73.4516 73.568 73.8444 73.9108 73.7872 73.4936 73.9 74.1 74.3 74.5 74.7 74.8 75 75.2 75.3 75.5 75.7 75.8 75.9 76 76.1 76.1 76.1 76.1 76.3 76.5 76.8 77.1 77.3 77.6 77.8 78 78.1 78.2 78.3 78.5 78.7 78.9 79.2 79.5 79.7 80.1 80.4 80.6 80.7 80.8 80.9 81.1 81.3 81.4 81.5 81.6 +Oman 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 26.77764052 32.3 32.3 32.3638 32.4276 32.4914 32.5552 32.619 32.6828 32.7466 32.8104 32.8742 32.938 33.0018 33.0656 33.1294 33.1932 33.257 33.3208 33.3846 33.4484 33.5122 33.576 33.6398 33.7036 33.7674 33.8312 33.895 34.3372 34.7794 35.2216 35.6638 36.106 36.6408 37.6416 38.6304 39.6082 40.575 41.5288 42.4716 43.4024 44.3202 45.224 46.1148 46.9906 47.8534 48.7022 49.536 50.3478 51.1396 51.9204 52.7012 53.5 54.9 55.6 56.7 57.8 59.1 60.8 61.6 62.8 63.7 64.6 65.4 66.3 67 67.7 68.4 69 69.5 69.9 70.3 70.7 71.1 71.4 71.7 72 72.3 72.6 72.9 73.2 73.4 73.7 73.9 74 74.1 74.2 74.3 74.3 74.3 74.6 74.8 75 75.2 75.4 75.5 75.6 75.7 +Pakistan 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 23.3 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.8 25.93 26.06 26.19 26.32 26.45 26.58 26.71 26.84 26.97 27.1 26.71 26.32 25.93 25.54 25.15 23.55602331 24.37 23.98 23.59 23.2 23 22.8 22.6 21.06383386 22.2 22 21.8 20.27610937 20.08836762 19.90062586 17.77455505 21.82 22.13 22.44 22.75 23.06 23.37 23.68 23.99 24.3 24.61 8.212462884 25.23 25.54 25.85436 26.16872 26.48308 26.79744 27.1118 27.42616 27.79047833 28.15479667 28.519115 28.88343333 29.24775167 29.61207 29.97638833 30.34070667 30.705025 31.06934333 31.43366167 31.79798 32.16229833 32.52661667 32.890935 33.25525333 33.61957167 33.98389 34.34820833 34.71252667 10.83630898 31.62951098 35.80548167 36.1698 36.77816 37.97752 39.15088 40.29824 41.4196 42.51396 43.58132 44.61768 45.62104 46.5874 47.51176 48.39012 49.21948 49.99884 50.7262 51.40056 52.02792 52.61428 53.16864 53.7 50.7 54.6 55.1 55.4 55.9 56.4 56.9 57.4 57.9 58.6 59.1 59.6 60.2 60.6 61.1 61.4 61.7 61.9 62.2 62.3 62.4 62.3 62.3 62.2 62.1 62.2 62.2 62.3 62.5 62.6 62.7 62.9 63 63.2 62.6 63.6 63.8 64.1 64.4 64.7 65 65.3 65.7 66.1 66.5 +Panama 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 33.1 33.3 29.43773524 33.7 33.9 34.16564 34.43128 34.69692 34.96256 35.2282 35.49384 35.75948 36.02512 36.29076 36.5564 37.27204 37.98768 38.70332 39.41896 40.1346 40.85024 41.56588 42.28152 42.99716 43.7128 45.11124 46.50968 47.90812 49.30656 50.705 52.10344 53.50188 54.90032 56.29876 57.6972 58.02984 58.63048 59.23412 59.84076 60.4494 61.06004 61.67168 62.28232 62.88696 63.4816 64.06324 64.62788 65.17352 65.70216 66.2168 66.72444 67.23108 67.74372 68.26536 68.8 69.5 70.1 70.8 71.4 72 72.5 73.1 73.5 73.8 74.3 74.6 74.8 74.9 75.1 75.1 75.2 75.2 75.2 75.1 75.2 75.2 75.3 75.5 75.6 75.8 76 76.2 76.4 76.7 76.9 77.1 77.2 77.2 77.2 77.2 77.2 77.1 77.1 77.1 77.2 77.4 77.6 77.8 78 78.2 +Papua New Guinea 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.5 31.71578 31.93156 32.14734 32.36312 32.5789 32.79468 33.01046 33.22624 33.44202 33.6578 33.87358 34.08936 34.30514 34.52092 34.7367 34.95248 35.16826 35.38404 35.59982 35.8156 36.03138 35.74716 34.96294 34.17872 33.3945 37.11028 37.87156 38.63284 39.39412 40.1554 40.62218 41.33896 42.04974 42.75452 43.4543 44.15308 44.85286 45.56064 46.29042 47.0562 47.86898 48.74276 49.68054 50.67532 51.7121 52.77088 53.82666 54.85644 55.85122 56.8 56.7 56.9 56.9 57 57 57 57 56.8 56.7 56.5 56.3 56.2 56.1 56 56 55.9 55.9 55.9 55.8 55.7 55.7 55.8 56 56.2 56.3 56.5 56.6 56.2 56.8 56.9 56.9 57 57.1 57.2 57.3 57.5 57.8 58.2 58.4 58.7 59.1 59.4 59.8 60.2 60.6 +Paraguay 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 31.38257061 35.5 35.5 35.56426 35.62852 35.69278 35.75704 35.8213 35.88556 35.94982 36.01408 36.07834 36.1426 36.20686 36.27112 37.84582444 39.42052889 40.99523333 42.56993778 44.14464222 45.71934667 47.29405111 48.86875556 50.44346 52.01816444 53.59286889 55.16757333 56.74227778 58.31698222 59.89168667 61.46639111 63.04109556 64.6158 64.67106 64.73632 64.83858 64.97784 65.1541 65.36436 65.60562 65.87388 66.15814 66.4494 66.73566 67.00592 67.25118 67.47144 67.6707 67.85996 68.05122 68.25448 68.47174 68.7 68.9 69.1 69.3 69.5 69.9 70.2 70.5 70.8 71.1 71.4 71.8 72.2 72.4 72.8 73.1 73.5 73.7 74 74.1 74.2 74.2 74.1 73.9 73.9 73.9 73.9 74 74.1 74.1 74.1 74.1 74 73.8 73.6 73.5 73.5 73.6 73.6 73.5 73.4 73.5 73.6 73.7 73.8 73.9 +Peru 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 31.55937382 35.7 35.7 35.6749 35.6498 35.6247 35.5996 35.5745 35.5494 35.5243 35.4992 35.4741 35.449 35.4239 35.3988 35.3737 35.3486 35.3235 35.2984 35.2733 35.2482 35.2231 35.198 35.9142 36.6304 37.3466 38.0628 38.779 39.4952 40.2114 40.9276 41.6438 42.36 42.5159 42.8708 43.2567 43.6746 44.1235 44.6004 45.1033 45.6262 46.1581 46.688 47.2039 47.6978 48.1677 48.6216 49.0825 49.5804 50.1373 50.7642 51.4571 52.2 61.7 62.6 63.2 64 64.8 65.4 65.7 65.8 65.9 65.9 66.1 66.2 66.3 66.5 67.2 67.8 68.3 68.8 69.3 69.4 69.7 70 70.3 70.8 71.2 71.8 72.3 73 73.6 74.3 74.7 75.2 75.6 75.9 76.2 76.5 76.6 76.8 76.7 76.8 76.8 76.9 77.1 77.3 77.5 +Philippines 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 12.7 20 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 30.9 25.6 30.9 30.9 30.96936 31.03872 31.10808 31.17744 31.2468 32.01616 32.78552 33.55488 34.32424 35.0936 35.86296 36.63232 37.40168 38.17104 38.9404 39.70976 40.47912 41.24848 42.54600667 43.84353333 42.45656 36.32592 38.69528 34.16464 31.634 42.80336 46.30722 49.81108 53.31494 56.8188 57.06416 57.48152 57.89488 58.30224 58.7036 59.10096 59.49332 59.88068 60.26304 60.6414 61.01676 61.38912 61.75748 62.12384 62.4892 62.85856 63.22992 63.59928 63.96164 64.3 64.5 64.3 64.3 64.2 64.1 63.4 64.2 64.4 64.8 65.2 65.5 65.9 66 65.9 66 66.2 66.6 67.2 67.9 68.3 68.5 68.6 68.6 68.7 68.8 68.9 69 69.1 69.1 69 69 68.9 68.9 68.9 69 69.1 69.3 69.4 69.5 69.7 69.8 69.9 70 70.1 70.2 +Poland 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 35.9 36.20217391 36.50434783 36.80652174 37.10869565 37.41086957 37.71304348 38.01521739 38.3173913 38.61956522 38.92173913 39.22391304 39.52608696 39.82826087 40.13043478 40.4326087 40.73478261 41.03695652 41.33913043 41.64130435 41.94347826 42.24565217 42.54782609 42.85 43.15217391 43.45434783 43.75652174 44.05869565 44.36086957 44.66304348 44.96521739 45.2673913 45.56956522 38.63814745 46.17391304 46.47608696 46.78086087 47.08563478 47.3904087 47.69518261 47.99995652 48.30473043 48.60950435 48.91427826 49.21905217 49.52382609 49.8286 50.31777895 50.80695789 51.29613684 51.78531579 52.27449474 52.76367368 53.25285263 45.0494 44.752 41.1546 33.4572 23.6598 15.4624 34.365 47.0676 54.0702 57.0728 58.0754 59.123 59.7336 60.9112 62.0038 63.0134 63.939 64.7816 65.5442 66.0188 65.6314 67.964 68.0866 67.7492 68.6818 68.9144 69.617 70.0296 69.7322 70.3748 69.8674 70 70.2 70.6 70.9 71.2 70.9 70.8 70.6 70.7 70.7 70.6 71 71.2 71.1 70.8 70.7 70.9 71.1 71.2 71.1 70.8 70.7 71.1 71.7 71.8 72 72.4 72.7 73 73.2 73.8 74.3 74.6 74.9 75 75 75 75.1 75.3 75.6 76.1 76.5 76.7 76.9 77.1 77.3 +Portugal 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 35.6 20.38594388 35.6 35.6 35.6046 35.6092 35.6138 35.6184 35.623 36.68293333 37.74286667 38.8028 39.86273333 40.92266667 41.9826 43.04253333 44.10246667 45.1624 46.22233333 47.28226667 48.3422 49.40213333 50.46206667 51.522 48.0466 49.9712 51.1558 52.5304 53.925 53.8096 56.1542 56.8888 55.5134 58.668 58.8626 59.9672 61.2718 62.4164 61.591 61.4056 61.6802 63.9848 63.1694 64.434 63.0586 64.5832 65.2178 65.4424 66.397 65.9116 66.8162 67.1308 66.7454 67.4 67.9 68.6 69 69.3 69.5 69.8 70.3 70.9 71.5 71.8 72 72.3 72.6 72.8 73.1 73.4 73.7 74 74.2 74.3 74.3 74.5 74.9 75.3 75.5 75.5 75.8 76.1 76.3 76.7 76.9 77.2 77.6 78 78.4 78.7 79 79.2 79.3 79.5 79.7 79.8 79.8 79.8 79.8 +Qatar 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 30.8 25.53409684 30.8 30.8 30.82914 30.85828 30.88742 30.91656 30.9457 30.97484 31.00398 31.03312 31.06226 31.0914 31.12054 31.14968 31.17882 31.20796 31.2371 31.26624 31.29538 31.32452 31.35366 31.3828 33.69254 36.00228 38.31202 40.62176 42.9315 45.24124 47.55098 49.86072 52.17046 54.4802 54.92334 55.77648 56.61862 57.45176 58.2749 59.08904 59.89518 60.69432 61.48746 62.2766 63.06574 63.85288 64.63902 65.42116 66.1963 66.96144 67.71058 68.43772 69.13586 69.8 70 70.2 70.4 70.7 70.9 71.2 71.4 71.6 71.9 72.1 72.3 73 73.6 74.4 75 75.6 76.1 76.5 76.8 77 77 77 77 77 77 77 77.1 77.1 77.1 77.2 77.3 77.5 77.9 78.3 78.8 79.3 79.9 80.4 80.9 81.3 81.6 81.7 81.8 81.9 82 +Romania 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 35.7 26.44721048 35.7 35.7 36.22321333 36.74642667 37.26964 37.79285333 38.31606667 38.83928 39.36249333 39.88570667 40.40892 40.93213333 41.45534667 41.97856 43.03705111 44.09554222 45.15403333 46.21252444 47.27101556 48.32950667 49.38799778 50.44648889 45.34498 44.64236 42.33974 41.13712 45.3345 53.93188 57.85592667 58.91441778 59.97290889 61.0314 60.95078 60.87816 60.97854 61.25192 61.6933 62.29268 63.03006 63.87144 64.75882 65.6222 66.39258 67.00196 67.40934 67.61472 67.6591 67.61648 67.58086 67.62124 67.76162 68 68.8 69.1 69.4 69.6 69.8 70.1 69.7 69.6 69.3 69.5 69.7 70 70.3 70.1 69.7 69.7 69.1 69.4 69.4 69.8 70.3 70.1 69.8 69.4 69.3 69 69.1 69.8 70.5 70.8 70.9 71.2 71.6 72 72.6 73 73.3 73.4 73.5 74 74.9 75.6 76 76.4 76.8 +Russia 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 18 29.5734572 29.5734572 29.5734572 29.5734572 29.5 27.5 27.5 29 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 29.5734572 27.85123312 27.93491228 31.12082604 28.10302559 25.91643291 29.48486977 30.47410305 31.12082604 30.93466014 31.3081123 27.76780463 30.84199523 30.20106663 32.16494654 26.70570579 29.04589725 32.7491577 30.84199523 34.25653135 33.24409784 33.14451499 31.02760347 29.93047652 26.38715247 21.26106026 27.60169662 28.10302559 26.94714198 28.27215061 30.47410305 27.93491228 31.5911571 30.74960789 29.04589725 29.84081964 31.78127382 32.16494654 30.47410305 31.97253467 33.64543019 33.64543019 32.35851635 31.40217766 35.08863338 35.5122335 33.34397988 33 31.5 31.5 29 23 25 20.5 23.7928 24.6856 33.5784 36.0712 35.164 38.3568 37.4496 38.8424 37.3352 36.428 34.9208 32.7136 17.2564 38.0992 39.492 40.9848 39.7776 41.2704 43.4632 41.056 22.8488 17.8416 15.8344 26.8272 33.82 45.9128 40.2056 51.9984 54.7912 57.084 57.5768 57.9696 58.7624 60.7552 63.148 64.6408 63.7336 66.6264 67.3692 68.382 68.6248 68.2776 68.7404 69.5332 69.116 69.1788 68.9616 68.9144 68.3872 68.5 68.6 68.7 68.7 68.6 68.2 68 67.8 67.7 67.4 67.3 67.5 67.9 67.7 67.4 68.2 69.8 70.1 70 69.8 69.6 69.4 68 65.2 63.6 64.2 65.9 67.4 67.6 66.2 65.4 65.1 64.9 64.8 65 64.8 66.1 67.2 67.6 68.3 68.7 69.4 70.4 71.3 72.21 73.13 +Rwanda 31.8 25 25 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 31.8 28 27 26 25 24 23 22 31.8 31.8 26 25 24 31.8 31.8 31.8 31.8 31.8 31.8 31.8 26 24 12.29836455 31.8 31.8 31.82796 31.85592 31.88388 26.11184 25.1398 24.16776 31.99572 26.22368 24.25164 32.0796 32.10756 32.55050182 32.99344364 33.43638545 33.87932727 34.32226909 34.76521091 35.20815273 35.65109455 36.09403636 36.53697818 36.97992 34.64308 20.1357148 38.205 38.61336 39.02172 39.43008 39.83844 40.2468 40.42176 40.74372 41.06868 41.39764 41.7286 42.06256 42.39752 42.73348 43.06944 43.4014 43.72636 44.04132 44.34228 44.62524 44.8852 45.11916 45.32512 45.50708 45.66504 45.8 45.8 45.7 45.7 45.6 45.6 45.7 46 46.4 47 48 48.8 49.4 49.9 50.2 50.3 50.3 50.4 50.2 50 49.4 48.9 48.3 47.6 15.6 42 45.2 36.3 44.8 48.1 50 51.2 52.7 54.2 55.7 57.3 59.3 61 62.2 62.9 63.7 64.3 64.7 65.3 65.91 66.53 +Samoa 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 25.4 1 25.4 25.4 25.60046 25.80092 26.00138 26.20184 26.4023 26.60276 26.80322 27.00368 27.20414 27.4046 27.60506 27.80552 28.00598 28.20644 29.6244 31.04236 32.46032 33.87828 35.29624 36.7142 38.13216 39.55012 40.96808 42.38604 43.804 45.22196 46.63992 48.05788 49.47584 50.8938 51.35826 52.08372 52.80618 53.52464 54.2391 54.94956 55.65702 56.36248 57.06494 57.7664 58.46686 59.16832 59.87078 60.57524 61.2807 61.98716 62.69162 63.39608 64.09854 64.8 64.7 64.5 64.4 64.5 64.8 65.3 65.7 66.1 66.4 66.5 66.7 66.9 67.1 67.2 67.5 67.7 67.9 68.1 68.3 68.4 68.5 68.8 68.9 69 69.2 69.3 69.5 69.6 69.7 69.9 70.1 70.3 70.5 70.7 70.8 71.1 71.3 71.4 69.9 71.6 71.6 71.6 71.8 72 72.2 +Sao Tome and Principe 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 31 11.98897173 31 31 31.04482 31.08964 31.13446 31.17928 31.2241 31.26892 31.31374 31.35856 31.40338 31.4482 31.49302 31.53784 31.58266 31.62748 31.6723 32.68685333 33.70140667 34.71596 35.73051333 36.74506667 37.75962 38.77417333 39.78872667 40.80328 41.81783333 42.83238667 43.84694 44.86149333 45.87604667 46.8906 47.13542 47.59324 48.08006 48.59388 49.1357 49.70352 50.29434 50.90516 51.52898 52.1578 52.78262 53.39444 53.99026 54.56908 55.1359 55.69972 56.27254 56.86136 57.46818 58.1 58.9 59.6 60.3 60.9 61.5 62.1 62.5 62.8 63 62.9 62.6 62.3 62.2 62.2 62.5 62.9 63.4 63.8 64.1 64.4 64.5 64.7 64.8 64.9 64.9 65 65 65.1 65.2 65.3 65.5 65.7 65.8 66 66.2 66.5 66.8 67.1 67.4 67.6 67.9 68.2 68.4 68.6 68.8 +Saudi Arabia 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 26.61183469 32.1 32.1 32.31816 32.53632 32.75448 32.97264 33.1908 33.40896 33.62712 33.84528 34.06344 34.2816 34.49976 34.71792 34.93608 35.15424 35.3724 35.59056 35.80872 36.02688 36.24504 36.4632 36.68136 36.89952 37.11768 37.33584 37.554 39.54676 41.53952 43.53228 45.52504 47.5178 47.97796 48.68012 49.38428 50.08944 50.7966 51.50576 52.21592 52.92908 53.64424 54.3634 55.08956 55.82772 56.58688 57.38004 58.2242 59.14036 60.13652 61.21468 62.37184 63.6 64.1 64.8 65.4 66.2 66.8 67.4 68 68.6 69.1 69.7 70.3 70.8 71.2 71.5 71.8 72.1 72.3 72.6 72.7 72.9 73.2 73.5 73.8 74.1 74.4 74.7 75 75.4 75.7 76.1 76.4 76.6 76.8 77 77.2 77.4 77.4 77.5 77.6 77.7 77.8 77.8 77.9 78 78.1 +Senegal 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 25.2 11.90363713 25.2 25.2 25.35146 25.50292 25.39438 25.28584 25.1773 25.06876 24.96022 25.36168 25.76314 26.1646 26.56606 26.96752 27.36898 27.77044 28.1719 28.57336 28.97482 29.42628 29.87774 30.3292 30.78066 31.23212 31.68358 32.13504 32.5865 33.87956 35.17262 36.46568 37.75874 39.0518 39.45526 40.09972 40.72218 41.32264 41.9011 42.45356 42.97702 43.46448 43.90294 44.2814 44.58986 44.82332 44.98978 45.11324 45.2227 45.35316 45.54262 45.82808 46.23754 46.8 47.2 47.7 48.2 48.8 49.4 50.1 50.8 51.5 52.1 52.8 53.4 54.1 54.6 55.2 55.8 56.3 56.9 57.4 57.7 58.1 58.3 58.5 58.6 58.7 58.8 59 59 59.2 59.6 60 60.6 61.1 61.7 62.3 62.8 63.4 63.9 64.3 64.7 65 65.2 65.5 65.7 65.9 66.1 +Serbia 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 35.5 25 16 21 20 9.9 35.5 35.5 36.25507333 37.01014667 37.76522 38.52029333 39.27536667 40.03044 40.78551333 41.54058667 42.29566 43.05073333 43.80580667 44.56088 45.31595333 46.07102667 46.8261 47.58117333 48.33624667 49.09132 49.84639333 50.60146667 44.06401789 41.80581755 40.29395463 38.80973383 43.32385451 50.98024 55.17948 56.57872 57.37796 58.1522 58.38244 58.84868 59.32392 59.80916 60.3024 60.80564 61.31788 61.83812 62.36536 62.8976 63.43284 63.96708 64.49732 65.01656 65.5208 66.00604 66.47028 66.90952 67.32076 67.7 68.1 68.6 69 69.4 69.8 70.1 70.4 70.7 71 71.2 71.5 71.8 72 72.3 72.6 72.9 73.1 73.4 73.5 73.7 73.2 73.5 73.3 72.9 72.7 72.7 73 74.2 74.6 74.7 75 75.3 75.5 75.6 75.8 76 76.2 76.4 76.7 77 77.3 77.5 77.7 77.9 78.1 +Seychelles 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37 37.262425 37.52485 37.787275 38.0497 38.312125 38.57455 38.836975 39.0994 39.361825 39.62425 39.886675 40.1491 40.411525 40.67395 40.936375 41.1988 41.461225 41.72365 41.986075 42.2485 42.510925 42.77335 43.035775 43.2982 43.560625 43.82305 44.085475 44.3479 44.610325 44.87275 45.135175 45.3976 45.660025 45.92245 46.184875 46.4473 46.709725 46.97215 47.234575 47.497 47.759425 48.02185 48.284275 48.5467 48.809125 49.07155 49.333975 49.5964 49.858825 50.12125 50.382215 50.64318 50.904145 51.16511 51.426075 51.68704 51.948005 52.20897 52.469935 52.7309 52.991865 53.25283 53.513795 53.77476 54.035725 54.29669 54.557655 54.81862 55.079585 55.34055 55.601515 55.86248 56.123445 56.38441 56.645375 56.90634 57.167305 57.42827 57.689235 57.9502 57.88074 57.80528 57.84882 58.01136 58.2929 58.68644 59.18198 59.76352 60.40106 61.0596 61.70214 62.29468 62.81222 63.24776 63.6183 63.95584 64.30138 64.68692 65.12046 65.6 66.3 66.8 67.3 67.7 68.1 68.5 68.8 69.1 69.5 69.9 70.1 70.2 70.2 70.1 69.9 69.7 69.5 69.4 69.4 69.4 69.5 69.7 69.9 70.1 70.2 70.3 70.3 70.6 70.8 70.9 71 71.1 71.3 71.5 71.9 72.2 72.4 72.6 72.7 72.8 72.9 73.1 73.3 73.5 73.7 +Sierra Leone 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 11.85640047 25.1 25.1 25.35198 25.60396 25.85594 26.10792 26.3599 26.61188 26.74386 26.87584 27.00782 27.1398 27.27178 27.56661714 27.86145429 28.15629143 28.45112857 28.74596571 29.04080286 29.33564 29.63047714 29.92531429 30.22015143 30.51498857 30.80982571 31.10466286 31.3995 32.31548 33.23146 34.14744 35.06342 35.9794 36.32738 36.77536 37.22634 37.68132 38.1393 38.59928 39.06226 39.52624 39.99022 40.4502 40.91018 41.37216 41.84714 42.35012 42.9111 43.56408 44.32406 45.19304 46.15902 47.2 47.5 47.7 47.9 48.1 48.2 48.3 48.4 48.5 48.5 48.4 48.5 48.6 48.9 49.2 49.5 49.8 50.1 50.4 50.8 51.1 50.9 51.3 51.2 51.3 51.2 52.2 52.1 51.1 50.6 52.2 52.5 52.9 53.3 53.8 54.4 54.9 55.5 55.9 56.1 56.5 56.8 57.3 57.7 58.1 58.5 +Singapore 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 29.1 30.08 31.06 32.04 33.02 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 34 21.78802539 34 34 34.81720667 35.63441333 36.45162 37.26882667 38.08603333 38.90324 39.72044667 40.53765333 41.35486 42.17206667 42.98927333 43.80648 44.62368667 45.44089333 46.2581 47.07530667 47.89251333 48.70972 49.52692667 50.34413333 49.08904 35.19328 36.89752 36.20176 35.006 44.11024 53.11448 56.11872 57.52296 58.5162 59.00544 59.95368 60.85192 61.70116 62.5004 63.24764 63.94088 64.57612 65.14636 65.6446 66.06584 66.40808 66.67832 66.89156 67.0738 67.25104 67.44728 67.68252 67.96576 68.3 68.5 68.8 69.1 69.7 70.2 70.6 70.8 71 71.1 71.4 71.6 71.9 72.2 72.7 73.1 73.5 73.8 74 74.4 75 75.8 76.3 76.5 76.6 76.7 77 77.4 77.8 78.2 78.6 78.8 79.1 79.5 79.8 80.2 80.4 80.7 80.9 81.2 81.5 81.8 81.8 81.9 82 82.1 +Slovak Republic 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.4 36.7 37 37.3 37.6 37.9 38.2 38.5 38.8 39.1 39.4 39.7 40 40.3 40.6 40.9 41.2 41.5 41.8 42.1 42.4 42.7 43 31.85518349 43.6 43.9 44.2032 44.83973333 45.47626667 46.1128 46.74933333 47.38586667 48.0224 48.65893333 49.29546667 49.932 50.40662857 50.88125714 51.35588571 51.83051429 52.30514286 52.77977143 53.2544 53.84913846 54.1608 54.064 53.8672 52.0704 47.5736 42.5768 40.58 54.0832 58.0864 59.0896 60.3928 60.986 61.4092 64.4624 65.7656 66.8188 67.952 68.4852 67.5684 69.4716 69.1548 70.478 70.9212 70.4644 70.8476 71.2308 70.444 70.5872 71.1304 70.6536 69.9668 69.9 70 70 70 70.2 70.3 70.3 70.5 70.4 70.5 70.5 70.7 70.7 70.7 70.7 70.8 71 71 71 70.9 70.9 70.9 71.3 71.9 72.3 72.6 72.8 72.8 72.8 73 73.3 73.7 73.8 73.9 74.2 74.3 74.4 74.5 74.8 75.1 75.5 75.9 76.1 76.2 76.3 76.4 +Slovenia 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 20.08650588 36.6 36.6 37.47594667 38.35189333 39.22784 40.10378667 40.97973333 41.85568 42.73162667 43.60757333 44.48352 45.35946667 46.23541333 47.11136 47.98730667 48.86325333 49.7392 50.61514667 51.49109333 52.36704 53.24298667 54.11893333 51.0961497 49.26721455 47.56327939 46.07146545 47.78040909 53.63708 59.58466 61.03224 61.98982 62.8784 63.12198 63.64456 64.13614 64.59472 65.0213 65.41388 65.76946 66.08704 66.35862 66.5782 66.74178 66.84436 66.89094 66.89052 66.8581 66.81168 66.76826 66.74484 66.75142 66.8 67.3 67.8 68.2 68.6 69 69.3 69.7 70 70.3 70.6 70.8 71.1 71.2 71.5 71.8 72.1 72.3 72.7 73.3 73.6 73.7 73.8 74 74.2 74.7 75 75.2 75.4 75.6 75.8 76 76.2 76.5 76.8 77.2 77.6 78 78.5 79 79.5 79.8 79.9 80 80.1 80.2 +Solomon Islands 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 25.1 24.5 25.1 25.1 25.14894 25.19788 25.24682 25.29576 25.3447 25.39364 25.44258 25.49152 25.54046 25.5894 25.63834 25.68728 25.73622 25.78516 27.0387875 28.292415 29.5460425 30.79967 32.0532975 33.306925 34.5605525 29.07668 27.12562 32.17456 36.2235 39.27244 41.32138 43.27032 44.51926 45.8432 46.14514 46.70108 47.25702 47.81096 48.3659 48.91984 49.47278 50.02572 50.57866 51.1316 51.68554 52.23848 52.79242 53.34736 53.9033 54.45924 55.01718 55.57612 56.13506 56.7 57.1 57.4 57.7 58 56.8 58.6 58.7 59.2 59.5 59.6 59.7 59.9 60 60.1 60.2 59.7 60.3 60.3 60.3 60.4 60.4 60.6 60.7 60.9 61.1 61.3 61.4 61.6 61.7 61.7 61.7 61.8 61.8 61.9 62 62.2 62.2 62.6 62.7 63 63.3 63.5 63.7 63.9 64.1 +Somalia 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 29.4 15.50239727 29.4 29.4 29.60284 29.80568 30.00852 30.21136 30.4142 30.61704 30.81988 31.02272 31.22556 31.4284 31.63124 31.83408 32.03692 32.23976 32.4426 32.64544 32.84828 33.05112 33.25396 33.4568 33.65964 33.86248 34.06532 34.26816 34.471 35.42944 36.38788 37.34632 38.30476 39.2632 39.66904 40.27788 40.88572 41.49056 42.0934 42.69524 43.29508 43.89392 44.49176 45.0906 45.69144 46.29328 46.89812 47.50396 48.1098 48.71464 49.31748 49.91532 50.51016 51.1 51.3 51.5 51.7 49.6 50 50.3 52.5 52.6 52.8 52.8 52.9 52.8 52.8 52.7 52.8 52.7 52.7 50.4 52.9 52.4 51.1 51.9 52.9 52.8 52.9 53 52.8 53.5 53.8 54.3 54.6 55 55.4 55.7 56.2 56.3 56.4 56.7 56.8 56.9 57.1 57.2 57.7 58.2 58.7 +South Africa 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 33.5 11.06786029 33.5 33.5 33.5935 33.687 33.7805 33.874 33.9675 34.061 34.1545 34.248 34.3415 34.435 35.03085 35.6267 36.22255 36.8184 37.41425 38.0101 38.60595 39.2018 39.79765 40.3935 40.98935 41.5852 42.18105 42.7769 43.37275 43.9686 44.56445 45.1603 45.75615 46.352 46.8355 47.685 48.4845 49.235 49.9355 50.588 51.1945 51.758 52.2865 52.788 53.2695 53.742 54.2135 54.688 55.1675 55.649 56.1245 56.592 57.0515 57.5 57.6 57.8 58.2 58.6 59.1 59.5 59.8 60.1 60.6 61.1 61.5 62 62.4 62.7 62.8 63.1 63.4 63.8 64.2 64.5 64.9 65 64.9 64.7 64.1 62.9 61.6 60.1 58.6 57.1 55.7 54.6 53.7 53.3 53.1 53.3 54.1 55 55.8 56.7 57.5 58.8 60.4 62.04 63.72 +Spain 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.5 29.76 30.02 30.28 30.54 30.8 31.06 31.32 31.58 31.84 32.1 32.4375 32.775 33.1125 33.45 33.7875 34.125 34.4625 34.8 35.63125 36.4625 37.29375 38.125 38.95625 39.7875 40.61875 41.45 41.06 40.92 39.8 43.53 42.56 42.84 43.05 43.98 42.63 30.29 41.12 39.31 42.0212 44.1924 44.7236 46.2648 46.906 47.7072 48.4284 48.5996 49.4108 49.252 49.1532 51.0944 51.4856 52.1168 52.588 50.7592 47.0704 47.3716 46.9228 48.214 46.9752 52.2864 54.6476 56.0388 57.62 57.3412 59.0924 61.0236 60.7648 61.606 61.2472 64.6584 65.5196 66.7108 66.472 66.5032 66.3344 68.5156 68.4268 68.918 69.2992 69.3204 69.4716 70.1928 70.594 70.8452 71.0264 71.3076 70.8288 71.8 72.1 72.7 72.9 73.2 73.5 73.8 74.2 74.5 74.9 75.4 75.7 76.1 76.3 76.4 76.6 76.7 76.7 76.8 76.8 77 77.1 77.4 77.6 77.8 77.8 78.2 78.7 79 79.1 79.3 79.5 79.6 79.8 80.1 80.4 80.7 80.9 81.1 81.4 81.6 81.7 81.7 81.7 81.7 81.7 +Sri Lanka 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.68160196 34.01536344 34.87646646 32.51860179 27.02634925 30.168921 30.62486585 29.94350047 32.84541917 27.29796858 28.98598068 31.95447675 29.20419281 34.44322404 32.76340818 34.35722352 28.19972676 25.4524572 31.08770142 32.02972 36.09573535 33.31495841 37.97628626 39.80398034 38.58865771 41.74678618 37.87622883 37.68827757 38.48540257 42.47236595 44.50371329 43.64628274 41.59500658 28.20387072 42.98923096 43.14241966 44.04651934 43.20185966 44.61363224 47.67956723 47.98300183 44.44821966 44.47793966 43.62819385 46.57272 54.10244 53.85982667 53.61721333 53.3746 53.96132 55.05704 56.05476 56.95548 57.7592 58.46992 59.09164 59.63736 60.12308 60.5688 60.99952 61.43724 61.89996 62.39768 62.9284 63.48312 64.04184 64.58456 65.10628 65.6 65.7 65.5 65.2 64.5 64.9 65.9 66.9 67.9 68.6 69.7 70.4 70.4 70.2 70.1 70.5 71 71.2 71.2 71 71 72.4 72.9 73.2 72.9 72.3 71.8 71.8 72.2 72.3 72.4 72.9 73.5 73.9 73.7 74.2 74.4 75.1 74.3 74.5 75.7 75.8 75.9 76.1 76.3 76.5 +Sudan 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 31.4 12.14366814 31.4 31.4 31.48538 31.57076 31.65614 31.74152 31.8269 31.91228 31.99766 32.08304 32.16842 32.2538 32.33918 32.42456 32.50994 32.59532 32.6807 32.76608 32.85146 32.93684 33.02222 33.1076 34.39438 35.68116 36.96794 38.25472 39.5415 40.82828 42.11506 43.40184 44.68862 45.9754 46.35078 47.00616 47.64354 48.26192 48.8613 49.44268 50.00706 50.55444 51.08682 51.6062 52.11558 52.61696 53.11334 53.60472 54.0961 54.58748 55.07786 55.56424 56.04062 56.5 56.6 56.8 57.3 57.4 57.5 57.7 58.1 58.3 58.5 58.6 58.9 59.2 54.1 54.5 54.9 60 60.4 60.7 61.2 61.3 61.6 61.8 62 62.6 62.8 62.9 63.2 63.4 64.1 64.4 64.7 65.2 65.3 65.6 66.3 66.6 67 67.4 67.6 68 68.2 68.6 68.9 69.2 69.5 +Suriname 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 29.08412881 32.9 32.9 32.93064 32.96128 32.99192 33.02256 33.0532 33.95436 34.85552 35.75668 36.65784 37.559 38.46016 39.36132 40.26248 41.16364 42.0648 42.96596 43.86712 44.76828 45.66944 46.5706 47.47176 48.37292 49.27408 50.17524 51.0764 51.97756 52.87872 53.77988 54.68104 55.5822 55.96384 56.67448 57.34212 57.96576 58.5464 59.08404 59.58268 60.04432 60.47596 60.8856 61.28224 61.67288 62.06652 62.46516 62.8698 63.27644 63.67908 64.06972 64.44436 64.8 64.9 65 64.9 64.7 64.4 64.3 64.4 64.6 65 65.5 66.1 66.7 67.3 67.9 68.5 68.8 69.1 69 69.1 68.7 68.4 68.3 68.4 69 69.6 70.1 70.1 69.8 69.3 68.8 68.4 68.2 68.1 68.3 68.5 68.7 68.9 69.1 69.3 69.5 69.7 69.9 70.1 70.3 70.5 +Swaziland 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 32.3 12.49173506 32.3 32.3 32.4251 32.5502 32.6753 32.8004 32.9255 33.0506 33.1757 33.3008 33.4259 33.551 33.6761 33.8012 33.9263 34.0514 34.1765 34.3016 34.4267 34.5518 34.6769 34.802 34.9271 35.0522 35.1773 35.3024 35.4275 37.1922 38.9569 40.7216 42.4863 44.251 44.6161 45.2122 45.7893 46.3474 46.8865 47.4046 47.9037 48.3838 48.8449 49.287 49.7131 50.1272 50.5383 50.9564 51.3965 51.8776 52.4067 52.9868 53.6209 54.3 54.6 55 55.4 55.8 56.3 56.7 57 57.4 57.7 57.9 58.3 58.7 58 59.5 60 60.5 61 61.5 61.9 62.2 62.4 62.2 61.7 60.6 59 56.9 54.8 52.7 50.6 48.7 46.9 45.7 44.7 43.9 43.5 44 45.1 46.1 47.2 47.8 49.2 50.3 50.7 51.1 51.5 +Sweden 32.16 36.9 40.2 40.28 39.7 41.05 36.17 38.76 30.15 26.9 31.99 34.58 35.07 36.49 38.57 40.42 41.74 40.29 40.02 36.97 40.23 38.14 42.76 45.19 44.97 45.24 43.08 42.64 37.74 36.18 40.97 38.98 40.84 42.5 38.53 47.14 45.13 39.57 39.98 39.88 43.98 45.17 42.8 42.82 44.03 45.99 42.04 40.12 45.13 44.5 44.69 43.62 41.35 39.99 44.55 43.08 42.14 34.64 42 44.27 48.47 47.12 42.55 45.38 44.77 45.4 44.73 46.18 43.23 40.96 45.01 48.98 50.08 48.68 44.28 44.61 44.82 46.05 46.73 48.92 47.62 48.5 48.59 49.05 49.17 48.94 50.6 51.46 52.35 52.3 50.48 51.09 50.61 51.36 52.1 54.16 53.49 54.14 54.69 50.95 52.27 52.92 54.76 55.09 55.4 54.55 56.7 56.98 56.42 58.42 57.8 58.03 57.79 58.68 58.26 57.2 58.22 58.9 49.81 56.57 58.81 61.026 61.042 62.988 61.984 62.54 62.766 61.562 62.238 62.284 63.15 62.646 63.902 64.778 64.924 64.8 64.546 64.562 65.498 66.324 66.66 66.946 68.882 68.628 67.644 68.24 69.406 69.362 70.618 70.684 71.02 71.246 71.732 71.768 72.224 72.46 72.516 72.342 72.988 73.214 72.88 73.336 73.202 73.388 73.554 73.7 73.946 73.972 73.838 73.954 74.5 74.5 74.7 74.8 74.9 75 75.1 75.2 75.4 75.5 75.7 76 76.3 76.6 76.8 76.9 77 77.1 77.2 77.4 77.6 77.8 78.1 78.4 78.6 78.9 79.1 79.3 79.5 79.6 79.7 79.8 80 80.1 80.3 80.5 80.7 80.9 81.1 81.2 81.5 81.6 81.7 81.8 81.9 82 +Switzerland 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 38 40.1 40.01 40.47 41.81 42.41 41.87 42.98 44.94 45 43.83 44.68 45.44 45.97 45.14 44.95 44.71 47.23 46.07 45.79 46.84 48.88 49.1 48.2 49.29 47.48 48.94 50.41 50.03 49.16 49.67 50.72 51.19 52.26 51.61 52.91 51.72 54.42 54.21 55.13 55.95 56.59 55.81 46.3 54.97 54.38 57.8672 58.4944 60.0316 59.4788 59.936 60.6232 60.0804 60.4476 60.1448 61.402 61.2092 61.1964 62.3736 62.8508 62.088 63.1352 63.4624 63.7996 63.9568 63.524 64.9212 65.5884 65.7756 64.8128 65.35 65.9972 66.1844 67.2616 67.8888 68.856 68.6232 69.5304 69.4376 69.9048 69.982 70.1092 70.4564 71.1936 71.3508 71.328 71.6452 71.2024 71.1896 72.0768 72.204 72.3412 72.6384 72.5856 72.5928 73 73.4 73.8 74.2 74.6 74.8 75 75.2 75.4 75.5 75.7 75.9 76.1 76.3 76.6 76.9 77.1 77.3 77.4 77.5 77.6 77.7 77.9 78.1 78.4 78.6 78.9 79.3 79.6 79.8 80 80.2 80.4 80.7 81 81.2 81.5 81.7 81.9 82.1 82.3 82.5 82.6 82.7 82.8 82.9 +Syria 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 31.1 25.78280558 31.1 31.1 31.16472 31.22944 31.29416 31.35888 31.4236 31.48832 31.55304 31.61776 31.68248 31.7472 31.81192 31.87664 31.94136 32.00608 32.0708 33.22978667 34.38877333 35.54776 36.70674667 37.86573333 39.02472 40.18370667 41.34269333 42.50168 43.66066667 44.81965333 45.97864 47.13762667 48.29661333 49.4556 49.81132 50.45404 51.08876 51.71548 52.3352 52.94892 53.55564 54.15836 54.75808 55.3608 55.96852 56.58724 57.22196 57.87568 58.5564 59.27112 60.01784 60.79256 61.58928 62.4 62.8 63.2 63.5 64 64.4 65 65.4 65.9 66.2 66.7 67.1 64.2 68 68.3 68.5 68.8 69 69.3 69.5 69.7 70 70.4 70.8 71.2 71.7 72.1 72.5 73 73.4 73.8 74.2 74.6 75 75.4 75.8 76.1 76.4 76.6 76.7 76.7 75.1 73.5 72.4 71.32 70.26 +Tajikistan 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 24.235 23.711 23.187 22.663 22.139 21.615 21.659 21.703 21.747 21.791 21.835 22.035 22.235 22.435 22.635 22.835 23.035 23.235 23.435 23.635 23.835 24.035 24.235 24.435 24.635 24.835 25.035 25.235 25.435 25.635 25.835 26.035 26.235 26.435 26.635 26.46833333 26.30166667 26.135 26.385 26.635 26.885 27.135 27.385 27.635 27.885 28.135 28.385 28.635 31.59363338 32.0172335 29.84897988 29.435 29.035 29.035 26.035 16.035 21.505 17.005 20.24646 21.08792 29.92938 32.37084 31.4123 34.55376 33.83060814 35.28005427 33.97899797 33.23845174 27.39106 19.33252 15.27398 35.36706426 36.86587279 38.47643428 37.42648569 39.05256107 41.39274 38.8642 28.47066 24.41212 23.35358 31.29504 38.7365 45.51296 37.45442 45.46588 48.20734 50.4488 50.60026 50.96072 51.32018 51.67764 52.0341 52.38856 52.74302 53.09648 53.45194 53.8094 54.16986 54.53332 54.89978 55.26424 55.6237 55.97416 56.31162 56.63008 56.92754 57.2 57.8 58.3 58.8 59.3 59.9 60.4 61 61.5 62 62.5 62.9 63.3 63.7 64.1 64.4 64.7 64.8 64.9 65 65 64.8 62.6 58.8 63.7 63.6 63.8 64.5 65 65.7 66.3 66.9 67.4 68 68.4 68.8 69 69.2 69.5 69.7 69.9 70.2 70.4 70.6 70.8 71 +Tanzania 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 12.45306096 32.2 32.2 32.33972 32.47944 32.61916 32.75888 32.8986 33.03832 33.17804 33.31776 33.45748 33.5972 33.73692 33.87664 34.01636 34.15608 34.2958 34.43552 34.57524 34.71496 34.85468 34.9944 35.13412 35.27384 35.41356 35.55328 35.693 37.47312 39.25324 41.03336 42.81348 44.5936 44.95832 45.53404 46.08476 46.60948 47.1082 47.58192 48.03264 48.46236 48.87408 49.2738 49.66852 50.06224 50.46396 50.87868 51.3094 51.75712 52.21984 52.69656 53.18828 53.7 54.2 54.8 55.4 55.8 56.3 56.7 57.1 57.5 57.8 57.9 58 58 57.9 57.9 57.9 57.9 57.9 57.8 57.6 57.2 56.8 56.4 55.9 55.5 55.1 54.8 54.6 54.5 54.5 54.8 55.1 55.6 56.2 56.7 57.2 57.9 58.7 59.7 60.3 60.9 61.4 61.6 62.2 62.81 63.43 +Thailand 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 30.4 19.48105799 30.4 30.4 30.48762 30.57524 30.66286 30.75048 30.8381 30.92572 31.01334 31.10096 31.18858 31.2762 32.77810571 34.28001143 35.78191714 37.28382286 38.78572857 40.28763429 41.78954 41.87716 41.96478 41.0524 40.14002 40.22764 40.31526 40.20288 41.52383333 42.84478667 44.16574 52.35336 52.92248 53.4916 53.74022 54.16984 54.63646 55.13908 55.6787 56.25132 56.85394 57.47956 58.11618 58.7488 59.36242 59.94404 60.48666 60.98828 61.4599 61.91652 62.37814 62.85976 63.36638 63.9 64.5 64.9 65.4 66 66.6 67.1 67.4 67.5 67.6 67.6 67.9 68.3 68.9 69.6 70.4 71 71.4 71.6 71.7 71.7 71.7 71.5 71.4 71.1 70.9 70.8 70.9 70.9 71.1 71.3 71.5 71.8 72 72 72.8 73.3 73.7 74.1 74.4 74.6 74.7 74.8 74.9 75 75.1 +Timor-Leste 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 28.949 9.398364278 28.949 28.949 29.10864 29.26828 29.42792 29.58756 29.7472 29.90684 30.06648 30.22612 30.38576 30.5454 30.70504 30.86468 31.02432 31.18396 31.3436 31.50324 31.66288 31.82252 31.98216 32.1418 32.30144 24.51208 22.67172 19.83136 18.991 24.15064 30.31028 33.41892 33.57856 33.7382 34.15084 34.81648 35.48012 36.14376 36.8054 37.46604 38.12668 38.78632 39.44496 40.1046 40.76424 41.42488 42.08652 42.74816 43.4468 44.22844 45.09008 45.98872 46.85336 47.5 48 48.6 49.1 49.6 50 50.3 50.6 50.9 51.4 51.9 52.6 53.4 54.2 55 55.8 56.5 57.2 57.8 58.4 59 59.5 60.1 60.8 61.5 62 62.5 62.9 63.2 63.3 63.6 64.4 65.1 65.7 66.4 67 67.6 68.1 68.7 69.3 69.8 70.4 70.9 71.4 71.9 72.4 +Togo 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 31.3 12.10499403 31.3 31.3 31.40864 31.51728 31.62592 31.73456 31.8432 31.95184 32.06048 32.16912 32.27776 32.3864 32.49504 32.60368 32.71232 32.82096 32.9296 33.03824 33.14688 33.25552 33.36416 33.4728 33.58144 33.69008 33.79872 33.90736 34.016 34.65004 35.28408 35.91812 36.55216 37.1862 37.64084 38.43948 39.23212 40.02076 40.8034 41.58104 42.35368 43.12232 43.88496 44.6426 45.39524 46.14288 46.88652 47.62616 48.3618 49.09544 49.82608 50.55372 51.27836 52 52.6 53.1 53.5 53.9 54.2 54.6 55 55.4 55.8 56.1 56.5 56.7 56.9 57.2 57.5 57.7 58 58.2 58.4 58.6 58.6 58.8 58.7 58.8 58.9 59.1 59.2 59.2 59.1 59 58.9 58.8 58.8 58.9 59 59.4 59.7 60 60.5 61 61.7 62.4 63 63.61 64.23 +Tonga 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 8 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 28.2 5.837612986 28.2 28.2 28.23248 28.26496 28.29744 28.32992 28.3624 29.58396 30.80552 32.02708 33.24864 34.4702 35.69176 36.91332 38.13488 39.35644 40.578 41.79956 43.02112 44.24268 45.46424 46.6858 47.90736 49.12892 50.35048 51.57204 52.7936 54.01516 55.23672 56.45828 57.67984 58.9014 59.11288 59.50636 59.90084 60.29732 60.6948 61.09428 61.49576 61.89724 62.29872 62.7002 63.09868 63.49316 63.88364 64.26812 64.6486 65.02608 65.40156 65.77304 66.14052 66.5 66.6 66.8 66.8 67 67.1 67.2 67.3 67.3 67.3 67.3 67.3 67.2 67.5 67.8 68 68.2 68.4 68.5 68.6 68.7 68.8 68.9 69 69.1 69.2 69.2 69.3 69.2 69.2 69.1 69.1 69.1 69.2 69.3 69.5 69.7 69.8 69.9 69.8 70.1 70.1 70.2 70.3 70.4 70.5 +Trinidad and Tobago 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 33.88333333 34.86666667 35.85 36.83333333 37.81666667 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 38.8 25.1641432 38.8 38.8 38.81238 39.51476 40.21714 40.91952 41.6219 42.32428 43.02666 43.72904 44.43142 45.1338 45.83618 46.43522667 47.03427333 47.63332 48.23236667 48.83141333 49.43046 50.02950667 50.62855333 51.2276 51.82664667 52.42569333 53.02474 53.62378667 54.22283333 54.82188 55.43176 56.04164 56.65152 57.2614 57.49978 57.98816 58.51954 59.09492 59.7123 60.36768 61.05406 61.75644 62.45482 63.1202 63.72458 64.24296 64.65734 64.96672 65.1781 65.31148 65.40386 65.48624 65.57962 65.7 65.8 65.9 66.1 66.4 66.6 66.7 67 67.5 67.8 67.9 68.1 68.2 68.3 68.3 68.5 69 69.3 69.4 69.5 69.6 69.7 69.6 69.5 69.4 69.5 69.6 69.6 69.6 69.4 69.4 69.5 69.7 70 70.4 70.9 71.2 71.3 71.3 71.2 71.1 71.1 71.1 71.2 71.3 71.4 +Tunisia 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 5.5 1.5 6.5 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 15 14 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 9.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 28.8 22.04036152 28.8 28.8 28.91734 29.03468 29.15202 29.51136 29.8707 30.23004 30.58938 30.94872 31.30806 31.6674 32.02674 32.38608 32.74542 33.27418857 33.80295714 34.33172571 34.86049429 35.38926286 35.91803143 36.4468 35.46414 29.58148 27.69882 28.81616 30.4335 38.05084 40.16818 40.70385333 41.23952667 41.7752 42.00454 42.36588 42.76422 43.20156 43.6759 44.19024 44.74458 45.34192 45.98626 46.6826 47.43394 48.24728 49.12462 50.06596 51.0753 52.15664 53.30098 54.49932 55.73766 57 57.8 58.9 59.8 60.8 61.8 62.8 63.7 64.6 65.4 66.1 67 67.7 68.4 69.2 69.8 70.4 70.9 71.3 71.6 71.9 72.2 72.5 72.8 73.1 73.4 73.8 74.1 74.5 74.8 75 75.2 75.4 75.6 75.8 76 76.2 76.3 76.5 76.6 76.8 76.9 77 77.1 77.2 77.3 +Turkey 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 35 27 7 19 22 19.06766972 30 29 29.07818 33.15636 35.23454 35.31272 35.3909 35.46908 35.54726 35.62544 35.70362 35.7818 35.92140857 36.06101714 36.20062571 36.34023429 36.47984286 36.61945143 36.75906 36.01924 35.27942 34.5396 33.79978 33.05996 34.49014 35.92032 37.3505 38.78068 40.21086 40.97937333 41.74788667 42.5164 42.78358 43.25976 43.77694 44.33512 44.9343 45.57448 46.25466 46.97084 47.72102 48.4992 49.30038 50.11556 50.93674 51.75292 52.5551 53.33228 54.08346 54.80964 55.51382 56.2 56.9 57.7 58.3 58.9 59.5 60 60.9 61.4 62 62.7 63.2 63.7 64.2 64.8 65.2 65.7 66.1 66.5 66.9 67.3 67.6 67.9 68.3 68.6 69 69.4 69.8 70.4 70.3 71.5 72 72.5 72.9 73.4 73.8 74.3 74.7 75.1 75.4 75.7 76 76.2 76.3 76.4 76.5 +Turkmenistan 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 24 23.1672 22.3344 21.5016 20.6688 19.836 19.88 19.924 19.968 20.012 20.056 20.256 20.456 20.656 20.856 21.056 21.256 21.456 21.656 21.856 22.056 22.256 22.456 22.656 22.856 23.056 23.256 23.456 23.656 23.856 24.056 24.256 24.456 24.656 24.856 24.68933333 24.52266667 24.356 24.606 24.856 25.106 25.356 25.606 25.856 26.106 26.356 26.606 26.856 29.81463338 30.2382335 28.06997988 27.656 27.256 27.256 24.256 14.256 19.726 15.226 18.40664 19.18728 27.96792 30.34856 29.3292 32.40984 31.62586814 33.01449427 31.65261797 30.85125174 24.94304 16.82368 12.70432 32.73658426 34.17457279 35.72431428 34.61354569 36.17880107 38.45816 35.8688 24.99344 20.87408 19.75472 27.63536 35.016 42.15264 34.03328 41.98392 44.66456 46.8452 46.94184 47.25348 47.56312 47.87076 48.1754 48.47904 48.78168 49.08332 49.38596 49.6896 49.99724 50.30788 50.61952 50.92916 51.2328 51.52644 51.80308 52.06072 52.29436 52.5 53.3 54.1 54.9 55.6 56.3 57 57.7 58.4 59 59.5 60.1 60.7 61.2 61.6 62 62.3 62.6 62.9 63.1 63.3 63.3 63.2 63.1 62.9 62.7 62.7 62.6 62.7 62.9 63.1 63.4 63.7 64.1 64.4 64.8 65.1 65.5 65.9 66.3 66.6 67 67.3 67.5 67.7 67.9 +Uganda 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 25.3 9.784547893 25.3 25.3 25.3775 25.455 25.2525 25.05 24.8475 24.645 24.4425 24.77 25.0975 25.425 25.7525 26.08 26.4075 26.735 27.0625 27.39 27.7175 28.095 28.4725 28.85 29.2275 29.605 29.9825 30.36 30.7375 32.8522 34.9669 37.0816 39.1963 41.311 41.6385 42.218 42.8035 43.394 43.9905 44.593 45.2025 45.821 46.4495 47.091 47.7455 48.411 49.0805 49.742 50.3785 50.971 51.5065 51.976 52.3745 52.7 52.9 52.9 52.9 52.8 52.8 52.7 52.7 52.3 52.2 50.7 50.8 51.1 51.5 52 52.3 52.3 53.3 52.9 52.5 51.7 50.9 50.2 49.6 49.1 48.8 48.6 48.6 49 49.4 50 50.8 51.5 52.4 53.3 54.5 55.9 56.6 57.2 57.9 58.4 58.8 59.3 59.8 60.3 60.8 +Ukraine 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.6 36.99807692 37.39615385 37.79423077 38.19230769 38.59038462 38.98846154 39.38653846 39.78461538 40.18269231 40.58076923 40.97884615 41.37692308 41.775 40.55 35 35 33 29 31 28.05 31.3246 32.1992 41.0738 43.5484 42.623 45.7976 44.8722 46.4468 44.5214 44.446 45.4206 36.6452 8.7198 39.3944 49.219 49.8936 48.6182 49.8428 49.6174 49.392 24.4166 18.9912 17.6658 28.3404 34.915 54.6396 44.5642 57.1888 59.9634 61.888 61.5126 62.2372 62.9118 63.6864 65.511 66.3856 66.4102 68.0848 68.4394 70.044 70.2986 69.6932 70.2978 71.0724 70.487 70.7316 70.3062 70.3708 69.7254 69.6 69.6 69.7 69.7 69.7 69.6 69.4 69.3 69.1 69 68.9 68.9 69 69.1 69.4 70 70.6 70.9 70.8 70.4 69.9 69.4 68.8 68 67.3 66.8 66.8 67.1 67.5 67.6 67.5 67.5 67.4 67.4 67.3 67.2 67.3 67.6 68.2 69.3 70.4 71.2 71.5 71.7 71.9 72.1 +United Arab Emirates 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 30.7 25.45119393 30.7 30.7 30.77172 30.84344 30.91516 30.98688 31.0586 31.13032 31.20204 31.27376 31.34548 31.4172 31.48892 31.56064 31.63236 31.70408 31.7758 31.84752 31.91924 31.99096 32.06268 32.1344 32.20612 32.27784 32.34956 32.42128 32.493 34.70732 36.92164 39.13596 41.35028 43.5646 44.25232 45.54304 46.81176 48.05648 49.2782 50.47692 51.65564 52.81336 53.95508 55.0828 56.19952 57.30724 58.40296 59.48368 60.5414 61.56512 62.54684 63.48056 64.36428 65.2 65.8 66.4 66.9 67.5 68 68.5 69.1 69.5 70 70.5 70.9 71.3 71.5 71.8 71.9 72 72.1 72.2 72.2 72.3 72.4 72.5 72.6 72.7 72.8 72.9 73.1 73.3 73.5 73.8 74 74.3 74.6 74.9 75.3 75.6 75.8 76 76.1 76.2 76.2 76.3 76.4 76.5 76.6 +United Kingdom 38.6497603 37.35082366 38.61559992 37.31684332 41.43691567 42.31725949 43.21611221 40.04593942 40.34779348 41.74220456 38.34738144 39.88727302 41.82632361 43.03836933 40.24153056 41.13177873 39.93831587 41.04071763 39.84776546 40.5192614 41.31247671 41.78040295 41.34972418 40.04802507 39.192755 39.93987803 39.83034823 41.1388604 42.03266589 41.55807154 43.01830917 40.84356065 40.16362593 41.34963106 40.78387809 41.10419323 41.42702094 40.20359733 40.30113089 40.87930651 39.92715263 41.7 41.35 41.86 41.55 42.56 39.96 38.33 39.5 37.38 42.8 41.42 40.93 40.56 39.34 41.03 43.25 41.88 40.04 40.84 43.01 42.38 42.52 40.4 39.97 40.65 40.41 42.62 42 41.67 40.95 41.31 42.9 43.78 42.13 41.85 43.69 44.7 43.01 44.27 43.78 46.11 44.87 45.09 44.79 45.76 45.33 45.65 46.81 46.34 44.75 44.29 45.51 44.87 48.34 45.73 47.41 47.23 46.98 46.13 46.32 47.91 49.08 50.43 49.11 50.86 50.58 51.44 51.84 52.52 53.99 51.54 54.55 53.83 51.99 48.2 47.73 45.57 40.43 54.12 56.6 58.346 57.122 59.388 58.154 58.49 59.636 59.012 59.958 57.674 60.85 60.066 60.582 60.618 61.344 61.99 61.786 61.812 63.228 63.614 60.89 61.286 63.902 63.918 64.754 65.75 66.366 66.332 68.388 68.074 68.58 68.176 69.472 69.738 70.104 70.07 70.336 70.452 70.628 70.724 70.94 70.686 70.752 70.658 71.444 71.43 71.346 71.972 71.598 71.554 71.8 72 72 72 72.3 72.6 72.9 73.1 73 73.1 73.4 73.8 74.1 74.3 74.6 74.7 74.9 75.1 75.3 75.5 75.7 76 76.3 76.5 76.7 76.8 76.9 77.2 77.4 77.6 77.8 78 78.2 78.5 78.8 79.1 79.3 79.4 79.5 79.7 80 80.4 80.8 81 81.2 81.4 +United States 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 38 34.5 34 31 38 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.41 39.99 40.57 41.15 41.73 42.31 42.89 43.47 44.05 44.63 45.21 45.58181818 45.95363636 46.32545455 46.69727273 47.06909091 47.44090909 47.81272727 48.18454545 48.55636364 48.92818182 49.3 50.5 50.6 49.6 50.3 50.1 50.2 51.9 52.8 51.8 53.4 54.1 53.5 54.6 55.1 54.2 54 47.2 55.3 55.4 58.1956 58.0912 57.4868 58.4824 58.478 57.8736 59.3692 58.2648 58.4604 59.556 60.2516 60.9472 60.9028 60.2284 60.874 60.3296 61.0252 62.3508 63.0364 63.192 63.7476 64.5332 64.2388 65.0244 65.52 66.2156 66.6112 67.1768 67.5524 67.988 68.0836 68.2992 68.6448 69.4304 69.476 69.5516 69.3272 69.5928 69.8084 69.734 70.1396 70.0252 69.8508 70.1364 70.212 70.2276 70.5532 70.2088 70.4444 70.7 71 71.3 71.6 72.1 72.6 72.9 73.2 73.5 73.7 73.8 74 74.4 74.6 74.8 74.8 74.9 75 75 75.2 75.4 75.6 75.8 75.7 75.8 75.9 76.3 76.8 77 77.1 77.1 77.1 77.2 77.3 77.6 77.7 77.8 78.1 78.2 78.3 78.5 78.7 78.8 78.9 79 79.1 +Uruguay 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 32.9 30.59916307 32.9 32.9 32.89566 32.89132 32.88698 32.88264 32.8783 34.19012 35.50194 36.81376 38.12558 39.4374 40.74922 42.06104 43.37286 44.68468 45.9965 47.30832 48.62014 49.93196 51.24378 52.5556 53.86742 55.17924 56.49106 57.80288 59.1147 60.42652 61.73834 63.05016 64.36198 65.6738 65.73346 65.86812 66.02578 66.20544 66.4071 66.62876 66.86742 67.11708 67.36874 67.6094 67.82906 68.01572 68.16038 68.26404 68.3267 68.35536 68.36402 68.36768 68.37734 68.4 68.5 68.5 68.7 68.9 69.1 69.3 69.2 69.7 70.1 70.4 70.9 71.5 71.9 71.9 72.1 72.2 72.4 72.5 72.6 72.9 73.2 73.4 73.4 73.4 73.5 73.6 73.8 74.1 74.3 74.6 74.9 75 75 75.2 75.4 75.5 75.7 76 76.3 76.5 76.6 76.7 76.9 77.1 77.3 +Uzbekistan 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.926 26.402 25.878 25.354 24.83 24.306 24.35 24.394 24.438 24.482 24.526 24.726 24.926 25.126 25.326 25.526 25.726 25.926 26.126 26.326 26.526 26.726 26.926 27.126 27.326 27.526 27.726 27.926 28.126 28.326 28.526 28.726 28.926 29.126 29.326 29.15933333 28.99266667 28.826 29.076 29.326 29.576 29.826 30.076 30.326 30.576 30.826 31.076 31.326 34.28463338 34.7082335 32.53997988 32.126 31.726 31.726 28.726 18.726 24.196 19.696 22.97272 23.84944 32.72616 35.20288 34.2796 37.45632 36.76842814 38.25313427 36.98733797 36.28205174 30.46992 22.44664 18.42336 38.55170426 40.08577279 41.73159428 40.71690569 42.37824107 44.75368 42.2604 29.71112 25.48784 23.46456 32.84128 40.318 49.12072 41.09744 49.14416 51.92088 54.1976 54.39232 54.80304 55.21276 55.61948 56.0242 56.42792 56.82864 57.22936 57.63008 58.0328 58.43752 58.84424 59.25196 59.65768 60.0564 60.44412 60.81584 61.16856 61.49828 61.8 62.3 62.8 63.3 63.7 64.1 64.4 64.8 65 65.2 65.5 65.7 66 66.3 66.6 67 67.3 67.6 67.7 67.7 67.7 67.5 67.3 67 66.7 66.5 66.4 66.5 66.8 67.1 67.4 67.7 67.8 68 68.1 68.1 68.3 68.5 68.7 68.9 69.1 69.3 69.5 69.7 69.9 70.1 +Vanuatu 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.3 24.45262 24.60524 24.75786 24.91048 25.0631 25.21572 25.36834 25.52096 25.67358 25.8262 25.97882 26.13144 26.28406 26.43668 27.6172375 28.797795 29.9783525 31.15891 32.3394675 33.520025 34.7005825 35.88114 37.0616975 38.242255 39.4228125 40.60337 41.7839275 42.964485 44.1450425 45.3256 45.77622 46.52684 47.27746 48.02808 48.7797 49.53132 50.28394 51.03756 51.79118 52.5458 53.30142 54.05804 54.81366 55.56828 56.3199 57.06752 57.80814 58.54276 59.27338 60 60.1 60.2 60.5 60.8 61.1 61.3 61.5 61.7 61.8 61.8 61.9 62 62.1 62.3 62.3 62.5 62.1 62.6 62.6 62.6 62.6 62.6 62.6 62.8 62.8 62.9 62.1 63 62.6 63 63 63 63 63.1 63.1 63.3 63.4 63.6 63.8 64 64.2 64.4 64.6 64.8 65 +Venezuela 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 32.2 29.13576486 32.2 32.2 32.24902 32.29804 32.34706 32.39608 32.4451 32.49412 32.71314 32.93216 33.15118 33.3702 33.58922 33.80824 34.02726 34.24628 34.4653 34.68432 35.93334 37.18236 38.43138 39.6804 40.92942 42.55021778 44.17101556 45.79181333 47.41261111 49.03340889 50.65420667 52.27500444 53.89580222 55.5166 55.84862 56.46564 57.08466 57.70668 58.3297 58.95572 59.58374 60.21376 60.84578 61.4778 62.10982 62.73884 63.36486 63.98188 64.5899 65.18492 65.76694 66.33196 66.87798 67.4 67.5 67.4 67.5 68.1 68.4 68.6 69.2 69.8 70.1 70.2 70.3 70.8 71.4 71.9 72.2 72.5 72.6 72.7 72.7 72.7 72.8 72.9 72.9 72.8 73.1 73.6 74.1 74.3 74 74.3 74.3 74.3 74.2 74.6 75 74.8 74.6 74.4 74.5 74.7 75 75.2 75.4 75.6 75.8 +Vietnam 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 32 20.50637683 32 32 31.94812 31.89624 31.84436 31.79248 31.7406 31.68872 31.63684 31.58496 31.53308 31.4812 31.59598667 31.71077333 31.82556 31.94034667 32.05513333 32.16992 33.46446857 34.75901714 36.05356571 34.9624 34.01052 33.35864 31.80676 25.75488 15.703 34.65112 40.59924 45.54736 48.49548 50.2936 50.67272 51.46884 52.23796 52.98008 53.6952 54.38732 55.05744 55.70956 56.34968 56.9838 57.61292 58.23004 58.81116 59.32128 59.6524 59.67552 59.35464 58.72376 57.87088 57 57.6 54.6 57.9 57.2 63.3 64.8 65.2 65.6 65.9 66 66.3 66.5 66.8 67.1 67.4 67.8 68.1 68.4 68.7 69.1 69.5 69.8 70.1 70.5 70.8 71.1 71.4 71.9 72.2 72.6 73.1 73.5 73.9 74.3 74.6 75 75.2 75.4 75.6 75.8 76 76.2 76.3 76.4 76.5 +West Bank and Gaza 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 32.1 26.61183469 32.1 32.1 32.21328 32.32656 32.43984 32.55312 32.6664 32.77968 32.89296 33.00624 33.11952 33.2328 33.34608 33.45936 33.57264 33.68592 33.7992 34.84721333 35.89522667 36.94324 37.99125333 39.03926667 40.08728 41.13529333 42.18330667 43.23132 44.27933333 45.32734667 46.37536 47.42337333 48.47138667 49.5194 49.72568 50.04296 50.39524 50.78252 51.2048 51.66308 52.15736 52.68764 53.25592 53.8632 54.50948 55.19476 55.91404 56.66332 57.4346 58.22088 59.01516 59.81144 60.60672 61.4 62.4 62.9 59.4 64 64.6 65.1 65.7 66.2 66.7 67.2 67.6 64.3 68.4 68.8 69.1 69.4 69.5 69.7 70 70.3 70.6 70.9 71.3 71.9 72.2 72.5 72.9 73.3 73.6 73.5 73.6 73.5 73.7 73.6 73.7 73.3 73.7 73.5 73.6 74 74.1 74.3 74.6 74.9 75.2 +Zambia 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 32.6 12.60775736 32.6 32.6 32.78112 32.96224 33.14336 33.32448 33.5056 33.68672 33.86784 34.04896 34.23008 34.4112 34.59232 34.77344 34.95456 35.13568 35.3168 35.49792 35.67904 35.86016 36.04128 36.2224 36.40352 36.58464 36.76576 36.94688 37.128 39.03632 40.94464 42.85296 44.76128 46.6696 47.05972 47.65884 48.25596 48.85208 49.4472 50.04032 50.63144 51.21756 51.79768 52.3688 52.92892 53.47604 54.01316 54.54328 55.0794 55.63452 56.21664 56.82476 57.45488 58.1 58.7 59.4 59.9 60.3 60.5 60.5 60.4 60.2 60.1 60 59.8 59.4 58.8 58 56.9 55.6 54.4 53.2 52.1 51 50 49.1 48.4 47.8 47.3 46.8 46.4 46.1 45.9 45.7 45.8 46 46.4 47.1 47.9 48.8 49.9 52 53.5 54.1 54.6 55.6 56.7 57.82 58.96 +Zimbabwe 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 33.7 17.03036347 33.7 33.7 33.75964 33.81928 33.87892 33.93856 33.9982 34.05784 34.11748 34.17712 34.23676 34.2964 34.35604 34.41568 34.47532 34.53496 34.5946 34.65424 34.71388 34.77352 34.83316 34.8928 36.35154 37.81028 39.26902 40.72776 42.1865 43.64524 45.10398 46.56272 48.02146 49.4802 49.75384 50.23948 50.72112 51.19876 51.6714 52.13904 52.60268 53.05932 53.50896 53.9506 54.38324 54.80488 55.21552 55.61716 56.0088 56.39144 56.76808 57.14172 57.51836 57.9 58.2 58.5 58.6 58.8 58.9 58.6 58.2 57 57.4 59.8 60.4 61.2 62 62.8 63.5 64 64.2 64.2 63.9 63.3 62.7 61.9 60.8 59.2 57.7 56.2 54.8 53.5 52.2 50.8 49.8 48.9 48.3 47.8 47.7 47.8 48.4 49 49.6 50.4 51.9 54.1 56 57.97 60.01 diff --git a/src/data/gapminder/main_religions.txt b/src/data/gapminder/main_religions.txt new file mode 100644 index 0000000..faf0f40 --- /dev/null +++ b/src/data/gapminder/main_religions.txt @@ -0,0 +1,174 @@ +country Group +Afghanistan Muslim +Albania Muslim +Algeria Muslim +Angola Christian +Antigua and Barbuda Christian +Argentina Christian +Armenia Christian +Australia Christian +Austria Christian +Azerbaijan Muslim +Bahamas Christian +Bahrain Muslim +Bangladesh Muslim +Barbados Christian +Belarus Christian +Belgium Christian +Belize Christian +Benin Not Categorized +Bhutan Eastern religions +Bolivia Christian +Bosnia and Herzegovina Not Categorized +Botswana Christian +Brazil Christian +Brunei Muslim +Bulgaria Christian +Burkina Faso Muslim +Burundi Christian +Cambodia Eastern religions +Cameroon Christian +Canada Christian +Cape Verde Christian +Chad Muslim +Chile Christian +China Eastern religions +Colombia Christian +Comoros Muslim +Congo, Dem. Rep. Christian +Congo, Rep. Christian +Costa Rica Christian +Cote d'Ivoire Not Categorized +Croatia Christian +Cuba Christian +Cyprus Christian +Denmark Christian +Djibouti Muslim +Ecuador Christian +Egypt Muslim +El Salvador Christian +Equatorial Guinea Christian +Eritrea Muslim +Estonia Christian +Ethiopia Christian +Fiji Christian +Finland Christian +France Christian +Gabon Christian +Gambia Muslim +Georgia Christian +Germany Christian +Ghana Christian +Greece Christian +Grenada Christian +Guatemala Christian +Guinea Muslim +Guinea-Bissau Not Categorized +Guyana Christian +Haiti Christian +Honduras Christian +Hungary Christian +Iceland Christian +India Eastern religions +Indonesia Muslim +Iran Muslim +Iraq Muslim +Ireland Christian +Israel Not Categorized +Italy Christian +Jamaica Christian +Japan Eastern religions +Jordan Muslim +Kazakhstan Muslim +Kenya Christian +Kiribati Christian +Kuwait Muslim +Latvia Christian +Lebanon Not Categorized +Lesotho Christian +Liberia Not Categorized +Libya Muslim +Lithuania Christian +Luxembourg Christian +Macedonia, FYR Christian +Madagascar Not Categorized +Malawi Christian +Malaysia Muslim +Maldives Muslim +Mali Muslim +Malta Christian +Mauritania Muslim +Mauritius Not Categorized +Mexico Christian +Micronesia, Fed. Sts. Christian +Moldova Christian +Mongolia Not Categorized +Montenegro Christian +Morocco Muslim +Mozambique Christian +Myanmar Eastern religions +Namibia Christian +Nepal Eastern religions +Netherlands Christian +New Zealand Christian +Nicaragua Christian +Niger Muslim +Nigeria Not Categorized +Norway Christian +Oman Muslim +Pakistan Muslim +Panama Christian +Papua New Guinea Christian +Paraguay Christian +Peru Christian +Philippines Christian +Poland Christian +Portugal Christian +Qatar Muslim +Romania Christian +Russia Christian +Rwanda Christian +Samoa Christian +Sao Tome and Principe Christian +Saudi Arabia Muslim +Senegal Muslim +Serbia Christian +Seychelles Christian +Sierra Leone Not Categorized +Singapore Eastern religions +Slovak Republic Christian +Slovenia Christian +Solomon Islands Christian +Somalia Muslim +South Africa Christian +Spain Christian +Sri Lanka Eastern religions +Sudan Muslim +Suriname Christian +Swaziland Christian +Sweden Christian +Switzerland Christian +Syria Muslim +Tajikistan Muslim +Tanzania Christian +Thailand Eastern religions +Timor-Leste Christian +Togo Not Categorized +Tonga Christian +Trinidad and Tobago Christian +Tunisia Muslim +Turkey Muslim +Turkmenistan Muslim +Uganda Christian +Ukraine Christian +United Arab Emirates Muslim +United Kingdom Christian +United States Christian +Uruguay Christian +Uzbekistan Muslim +Vanuatu Christian +Venezuela Christian +Vietnam Eastern religions +West Bank and Gaza Muslim +Zambia Christian +Zimbabwe Christian diff --git a/src/data/gapminder/provenance-graph-hans-rosling-stories.json b/src/data/gapminder/provenance-graph-hans-rosling-stories.json new file mode 100644 index 0000000..6b07432 --- /dev/null +++ b/src/data/gapminder/provenance-graph-hans-rosling-stories.json @@ -0,0 +1,102104 @@ +{ + "root": "vega0", + "nodes": [ + { + "attrs": { + "name": "Start", + "description": "" + }, + "type": "state", + "id": 0 + }, + { + "attrs": { + "name": "App", + "category": "visual", + "hash": "App_visual", + "description": "", + "v": null + }, + "type": "object", + "id": 1 + }, + { + "attrs": { + "name": "View", + "category": "visual", + "hash": "View_visual", + "description": "", + "v": null + }, + "type": "object", + "id": 2 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1810", + "timestamp": 1522409006115, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1810, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8487885046882668, + "skewed": 0.4703813172261899, + "clumpy": 0.7441464669595428, + "sparse": 0.009404576645535956, + "striated": 0.7960999429245565, + "convex": 0.6660902932274029, + "skinny": 0.8086970070159922, + "stringy": 0.03106733836547515, + "monotonic": 0.7477863966073599, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 3 + }, + { + "attrs": { + "name": "Selected Year 1810", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1810\",\"payload\":{\"numVal\":1810},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.85\",\"payload\":{\"numVal\":0.8487885046882668},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.47\",\"payload\":{\"numVal\":0.4703813172261899},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.74\",\"payload\":{\"numVal\":0.7441464669595428},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.01\",\"payload\":{\"numVal\":0.009404576645535956},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.8\",\"payload\":{\"numVal\":0.7960999429245565},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.67\",\"payload\":{\"numVal\":0.6660902932274029},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.81\",\"payload\":{\"numVal\":0.8086970070159922},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.03\",\"payload\":{\"numVal\":0.03106733836547515},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.75\",\"payload\":{\"numVal\":0.7477863966073599},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]", + "starred": true, + "tags": [], + "note": "Hans Rosling's 200 Countries, 200 Years, 4 Minutes - BBC Four\nhttps://www.youtube.com/watch?v=jbkSRLYSojo " + }, + "type": "state", + "id": 4 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1810", + "timestamp": 1522409006115, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1800, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "outlying": 0, + "skewed": 0, + "clumpy": 0, + "sparse": 0, + "striated": 0, + "convex": 0, + "skinny": 0, + "monotonic": 0, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 5 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United Kingdom (1 Countries)", + "timestamp": 1522409055386, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 826, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -6.197461974619728, + 53.86794649157994 + ], + [ + -6.95346953469533, + 54.07443864118645 + ], + [ + -7.572675726757268, + 54.05920561375646 + ], + [ + -7.367473674736743, + 54.59574669101272 + ], + [ + -7.572675726757268, + 55.13228776826895 + ], + [ + -6.733867338673377, + 55.17290917474892 + ], + [ + -5.661056610566106, + 54.55512528453275 + ], + [ + -6.197461974619728, + 53.86794649157994 + ] + ] + ], + [ + [ + [ + -2.08622086220862, + 55.909172167198335 + ], + [ + -2.0070200702006957, + 55.80423353379177 + ], + [ + -1.114211142111401, + 54.624520187269354 + ], + [ + -0.4302043020430233, + 54.46372711995281 + ], + [ + 0.1854018540185507, + 53.32463517991036 + ], + [ + 0.46980469804699965, + 52.93026902533401 + ], + [ + 1.6830168301682988, + 52.739009903157495 + ], + [ + 1.5606156061560625, + 52.09922275109798 + ], + [ + 1.0494104941049613, + 51.80641011272155 + ], + [ + 1.4490144901449185, + 51.29017973870529 + ], + [ + 0.5490054900548955, + 50.76548657167237 + ], + [ + -0.7866078660786684, + 50.77564192329237 + ], + [ + -2.489424894248941, + 50.49975487094923 + ], + [ + -2.9574295742957304, + 50.696091668935765 + ], + [ + -3.6162361623616164, + 50.22894549441611 + ], + [ + -4.541445414454131, + 50.34234692083936 + ], + [ + -5.243452434524329, + 49.959828676486325 + ], + [ + -5.776257762577615, + 50.159550591679505 + ], + [ + -4.311043110431086, + 51.210629484348686 + ], + [ + -3.414634146341456, + 51.42558442697185 + ], + [ + -3.421834218342184, + 51.42727698557519 + ], + [ + -4.9842498424984285, + 51.59314772870172 + ], + [ + -5.268652686526849, + 51.990899000484745 + ], + [ + -4.221042210422098, + 52.3006372248945 + ], + [ + -4.768247682476812, + 52.84056341935741 + ], + [ + -4.581045810458107, + 53.495583598846906 + ], + [ + -3.094230942309423, + 53.404185434266964 + ], + [ + -3.090630906309059, + 53.404185434266964 + ], + [ + -2.9466294662946666, + 53.98473303520984 + ], + [ + -3.6162361623616164, + 54.60082436682271 + ], + [ + -3.6306363063630442, + 54.614364835649354 + ], + [ + -4.843848438484372, + 54.79039093039589 + ], + [ + -5.081450814508145, + 55.06120030692901 + ], + [ + -4.7178471784717715, + 55.508035778208665 + ], + [ + -5.0490504905048965, + 55.783922830551774 + ], + [ + -5.585455854558546, + 55.31169898022216 + ], + [ + -5.64665646656465, + 56.274764825518076 + ], + [ + -6.150661506615052, + 56.784224965120984 + ], + [ + -5.787057870578707, + 57.81837827175687 + ], + [ + -5.009450094500949, + 58.63080640135621 + ], + [ + -4.210242102421006, + 58.551256146999606 + ], + [ + -3.0042300423004065, + 58.634191518562886 + ], + [ + -4.073440734407342, + 57.55264657103373 + ], + [ + -3.0546305463054466, + 57.68974381790363 + ], + [ + -1.9602196021960197, + 57.68466614209362 + ], + [ + -2.2194221942219485, + 56.87054545389094 + ], + [ + -3.119431194311943, + 55.973489394124954 + ], + [ + -2.08622086220862, + 55.909172167198335 + ] + ] + ] + ] + }, + "countryRef": { + "country": "United Kingdom", + "count": 216, + "this": { + "country": "United Kingdom", + "year": 2009, + "map_id": 826, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 35840, + "child_mortality": 4618, + "fertility": 1.89, + "life_expect": 79.7, + "population": 51295523 + }, + "x": 35840, + "y": 79.7, + "size": 51295523, + "color": "Europe", + "map_id": 826 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United Kingdom", + "count": 216, + "this": { + "country": "United Kingdom", + "year": 2009, + "map_id": 826, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 35840, + "child_mortality": 4618, + "fertility": 1.89, + "life_expect": 79.7, + "population": 51295523 + }, + "x": 35840, + "y": 79.7, + "size": 51295523, + "color": "Europe", + "map_id": 826 + }, + "currentYear": 1810, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.2991144320814638, + "skewed": 0.4061141573125884, + "clumpy": 0.05094421637031954, + "sparse": 0.08341959545173072, + "striated": 0.5755288709785018, + "convex": 0.03297365661284113, + "skinny": 0.039034281936592974, + "stringy": 0.46596875102896673, + "monotonic": 0.15552045380523705, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United Kingdom", + "count": 216, + "this": { + "country": "United Kingdom", + "year": 2009, + "map_id": 826, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 35840, + "child_mortality": 4618, + "fertility": 1.89, + "life_expect": 79.7, + "population": 51295523 + }, + "x": 35840, + "y": 79.7, + "size": 51295523, + "color": "Europe", + "map_id": 826 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -2.8647889756541165, + -86.06079025143146 + ], + "drag": [ + -2.8647889756541165, + -86.06079025143146 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 6 + }, + { + "attrs": { + "name": "Selected United Kingdom (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1810\",\"payload\":{\"numVal\":1810},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.3\",\"payload\":{\"numVal\":0.2991144320814638},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.41\",\"payload\":{\"numVal\":0.4061141573125884},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.05\",\"payload\":{\"numVal\":0.05094421637031954},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.08\",\"payload\":{\"numVal\":0.08341959545173072},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.58\",\"payload\":{\"numVal\":0.5755288709785018},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.03\",\"payload\":{\"numVal\":0.03297365661284113},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.04\",\"payload\":{\"numVal\":0.039034281936592974},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.47\",\"payload\":{\"numVal\":0.46596875102896673},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.16\",\"payload\":{\"numVal\":0.15552045380523705},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United Kingdom\",\"text\":\"United Kingdom\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 7 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United Kingdom (1 Countries)", + "timestamp": 1522409055386, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1810, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8487885046882668, + "skewed": 0.4703813172261899, + "clumpy": 0.7441464669595428, + "sparse": 0.009404576645535956, + "striated": 0.7960999429245565, + "convex": 0.6660902932274029, + "skinny": 0.8086970070159922, + "stringy": 0.03106733836547515, + "monotonic": 0.7477863966073599, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 8 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Netherlands (2 Countries)", + "timestamp": 1522409060275, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 528, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.906669066690682, + 53.48204313002023 + ], + [ + 7.0902709027090225, + 53.14353140935384 + ], + [ + 6.841868418684186, + 52.22785720495122 + ], + [ + 6.589865898658985, + 51.85210919501151 + ], + [ + 5.988659886598867, + 51.85210919501151 + ], + [ + 6.15786157861578, + 50.804415419549 + ], + [ + 5.607056070560702, + 51.03798850680883 + ], + [ + 4.973449734497365, + 51.474668626468485 + ], + [ + 4.048240482404822, + 51.26648391825864 + ], + [ + 3.313833138331404, + 51.34603417261525 + ], + [ + 3.828638286382869, + 51.62022866635502 + ], + [ + 4.707047070470708, + 53.09106209265056 + ], + [ + 6.07506075060752, + 53.51081662627689 + ], + [ + 6.906669066690682, + 53.48204313002023 + ] + ] + ] + }, + "countryRef": { + "country": "Netherlands", + "count": 216, + "this": { + "country": "Netherlands", + "year": 2009, + "map_id": 528, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 45590, + "child_mortality": 821, + "fertility": 1.79, + "life_expect": 80.4, + "population": 10807879 + }, + "x": 45590, + "y": 80.4, + "size": 10807879, + "color": "Europe", + "map_id": 528 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Netherlands", + "count": 216, + "this": { + "country": "Netherlands", + "year": 2009, + "map_id": 528, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 45590, + "child_mortality": 821, + "fertility": 1.79, + "life_expect": 80.4, + "population": 10807879 + }, + "x": 45590, + "y": 80.4, + "size": 10807879, + "color": "Europe", + "map_id": 528 + }, + "currentYear": 1810, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9355148617722353, + "skewed": 0.48217424194809855, + "clumpy": 0.18579658319235604, + "sparse": 0.006623118676580164, + "striated": 0.24687990341954924, + "convex": 0.24536431250415358, + "skinny": 0.944211932885247, + "stringy": 0.9686158323152227, + "monotonic": 0.7961994446449072, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United Kingdom", + "count": 216, + "this": { + "country": "United Kingdom", + "year": 2009, + "map_id": 826, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 35840, + "child_mortality": 4618, + "fertility": 1.89, + "life_expect": 79.7, + "population": 51295523 + }, + "x": 35840, + "y": 79.7, + "size": 51295523, + "color": "Europe", + "map_id": 826 + }, + { + "country": "Netherlands", + "count": 216, + "this": { + "country": "Netherlands", + "year": 2009, + "map_id": 528, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 45590, + "child_mortality": 821, + "fertility": 1.79, + "life_expect": 80.4, + "population": 10807879 + }, + "x": 45590, + "y": 80.4, + "size": 10807879, + "color": "Europe", + "map_id": 528 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 5.156620156177409, + -86.43540114493597 + ], + "drag": [ + 5.156620156177409, + -86.43540114493597 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 9 + }, + { + "attrs": { + "name": "Selected Netherlands (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1810\",\"payload\":{\"numVal\":1810},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.94\",\"payload\":{\"numVal\":0.9355148617722353},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.48\",\"payload\":{\"numVal\":0.48217424194809855},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.19\",\"payload\":{\"numVal\":0.18579658319235604},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.01\",\"payload\":{\"numVal\":0.006623118676580164},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.25\",\"payload\":{\"numVal\":0.24687990341954924},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.25\",\"payload\":{\"numVal\":0.24536431250415358},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.94\",\"payload\":{\"numVal\":0.944211932885247},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.97\",\"payload\":{\"numVal\":0.9686158323152227},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.8\",\"payload\":{\"numVal\":0.7961994446449072},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United Kingdom\",\"text\":\"United Kingdom\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Netherlands\",\"text\":\"Netherlands\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 10 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Netherlands (2 Countries)", + "timestamp": 1522409060275, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 826, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -6.197461974619728, + 53.86794649157994 + ], + [ + -6.95346953469533, + 54.07443864118645 + ], + [ + -7.572675726757268, + 54.05920561375646 + ], + [ + -7.367473674736743, + 54.59574669101272 + ], + [ + -7.572675726757268, + 55.13228776826895 + ], + [ + -6.733867338673377, + 55.17290917474892 + ], + [ + -5.661056610566106, + 54.55512528453275 + ], + [ + -6.197461974619728, + 53.86794649157994 + ] + ] + ], + [ + [ + [ + -2.08622086220862, + 55.909172167198335 + ], + [ + -2.0070200702006957, + 55.80423353379177 + ], + [ + -1.114211142111401, + 54.624520187269354 + ], + [ + -0.4302043020430233, + 54.46372711995281 + ], + [ + 0.1854018540185507, + 53.32463517991036 + ], + [ + 0.46980469804699965, + 52.93026902533401 + ], + [ + 1.6830168301682988, + 52.739009903157495 + ], + [ + 1.5606156061560625, + 52.09922275109798 + ], + [ + 1.0494104941049613, + 51.80641011272155 + ], + [ + 1.4490144901449185, + 51.29017973870529 + ], + [ + 0.5490054900548955, + 50.76548657167237 + ], + [ + -0.7866078660786684, + 50.77564192329237 + ], + [ + -2.489424894248941, + 50.49975487094923 + ], + [ + -2.9574295742957304, + 50.696091668935765 + ], + [ + -3.6162361623616164, + 50.22894549441611 + ], + [ + -4.541445414454131, + 50.34234692083936 + ], + [ + -5.243452434524329, + 49.959828676486325 + ], + [ + -5.776257762577615, + 50.159550591679505 + ], + [ + -4.311043110431086, + 51.210629484348686 + ], + [ + -3.414634146341456, + 51.42558442697185 + ], + [ + -3.421834218342184, + 51.42727698557519 + ], + [ + -4.9842498424984285, + 51.59314772870172 + ], + [ + -5.268652686526849, + 51.990899000484745 + ], + [ + -4.221042210422098, + 52.3006372248945 + ], + [ + -4.768247682476812, + 52.84056341935741 + ], + [ + -4.581045810458107, + 53.495583598846906 + ], + [ + -3.094230942309423, + 53.404185434266964 + ], + [ + -3.090630906309059, + 53.404185434266964 + ], + [ + -2.9466294662946666, + 53.98473303520984 + ], + [ + -3.6162361623616164, + 54.60082436682271 + ], + [ + -3.6306363063630442, + 54.614364835649354 + ], + [ + -4.843848438484372, + 54.79039093039589 + ], + [ + -5.081450814508145, + 55.06120030692901 + ], + [ + -4.7178471784717715, + 55.508035778208665 + ], + [ + -5.0490504905048965, + 55.783922830551774 + ], + [ + -5.585455854558546, + 55.31169898022216 + ], + [ + -5.64665646656465, + 56.274764825518076 + ], + [ + -6.150661506615052, + 56.784224965120984 + ], + [ + -5.787057870578707, + 57.81837827175687 + ], + [ + -5.009450094500949, + 58.63080640135621 + ], + [ + -4.210242102421006, + 58.551256146999606 + ], + [ + -3.0042300423004065, + 58.634191518562886 + ], + [ + -4.073440734407342, + 57.55264657103373 + ], + [ + -3.0546305463054466, + 57.68974381790363 + ], + [ + -1.9602196021960197, + 57.68466614209362 + ], + [ + -2.2194221942219485, + 56.87054545389094 + ], + [ + -3.119431194311943, + 55.973489394124954 + ], + [ + -2.08622086220862, + 55.909172167198335 + ] + ] + ] + ] + }, + "countryRef": { + "country": "United Kingdom", + "count": 216, + "this": { + "country": "United Kingdom", + "year": 2009, + "map_id": 826, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 35840, + "child_mortality": 4618, + "fertility": 1.89, + "life_expect": 79.7, + "population": 51295523 + }, + "x": 35840, + "y": 79.7, + "size": 51295523, + "color": "Europe", + "map_id": 826 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United Kingdom", + "count": 216, + "this": { + "country": "United Kingdom", + "year": 2009, + "map_id": 826, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 35840, + "child_mortality": 4618, + "fertility": 1.89, + "life_expect": 79.7, + "population": 51295523 + }, + "x": 35840, + "y": 79.7, + "size": 51295523, + "color": "Europe", + "map_id": 826 + }, + "currentYear": 1810, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.2991144320814638, + "skewed": 0.4061141573125884, + "clumpy": 0.05094421637031954, + "sparse": 0.08341959545173072, + "striated": 0.5755288709785018, + "convex": 0.03297365661284113, + "skinny": 0.039034281936592974, + "stringy": 0.46596875102896673, + "monotonic": 0.15552045380523705, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United Kingdom", + "count": 216, + "this": { + "country": "United Kingdom", + "year": 2009, + "map_id": 826, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 35840, + "child_mortality": 4618, + "fertility": 1.89, + "life_expect": 79.7, + "population": 51295523 + }, + "x": 35840, + "y": 79.7, + "size": 51295523, + "color": "Europe", + "map_id": 826 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -2.8647889756541165, + -86.06079025143146 + ], + "drag": [ + -2.8647889756541165, + -86.06079025143146 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 11 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409069034, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Netherlands", + "count": 216, + "this": { + "country": "Netherlands", + "year": 2009, + "map_id": 528, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 45590, + "child_mortality": 821, + "fertility": 1.79, + "life_expect": 80.4, + "population": 10807879 + }, + "x": 45590, + "y": 80.4, + "size": 10807879, + "color": "Europe", + "map_id": 528 + }, + "currentYear": 1810, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6574704471501382, + "skewed": 0.3149602155289364, + "clumpy": 0.30105658132550883, + "sparse": 0.36961439971535137, + "striated": 0.4774888333614917, + "convex": 0.31186805333107115, + "skinny": 0.8729943837012104, + "stringy": 0.052835396612504804, + "monotonic": 0.525571165011651, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 84.79775367936183, + -89.4280102227177 + ], + "drag": [ + 84.79775367936183, + -89.4280102227177 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 12 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1810\",\"payload\":{\"numVal\":1810},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.66\",\"payload\":{\"numVal\":0.6574704471501382},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.31\",\"payload\":{\"numVal\":0.3149602155289364},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.3\",\"payload\":{\"numVal\":0.30105658132550883},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.37\",\"payload\":{\"numVal\":0.36961439971535137},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.48\",\"payload\":{\"numVal\":0.4774888333614917},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.31\",\"payload\":{\"numVal\":0.31186805333107115},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.87\",\"payload\":{\"numVal\":0.8729943837012104},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.05\",\"payload\":{\"numVal\":0.052835396612504804},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.53\",\"payload\":{\"numVal\":0.525571165011651},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 13 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409069034, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 528, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 6.906669066690682, + 53.48204313002023 + ], + [ + 7.0902709027090225, + 53.14353140935384 + ], + [ + 6.841868418684186, + 52.22785720495122 + ], + [ + 6.589865898658985, + 51.85210919501151 + ], + [ + 5.988659886598867, + 51.85210919501151 + ], + [ + 6.15786157861578, + 50.804415419549 + ], + [ + 5.607056070560702, + 51.03798850680883 + ], + [ + 4.973449734497365, + 51.474668626468485 + ], + [ + 4.048240482404822, + 51.26648391825864 + ], + [ + 3.313833138331404, + 51.34603417261525 + ], + [ + 3.828638286382869, + 51.62022866635502 + ], + [ + 4.707047070470708, + 53.09106209265056 + ], + [ + 6.07506075060752, + 53.51081662627689 + ], + [ + 6.906669066690682, + 53.48204313002023 + ] + ] + ] + }, + "countryRef": { + "country": "Netherlands", + "count": 216, + "this": { + "country": "Netherlands", + "year": 2009, + "map_id": 528, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 45590, + "child_mortality": 821, + "fertility": 1.79, + "life_expect": 80.4, + "population": 10807879 + }, + "x": 45590, + "y": 80.4, + "size": 10807879, + "color": "Europe", + "map_id": 528 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Netherlands", + "count": 216, + "this": { + "country": "Netherlands", + "year": 2009, + "map_id": 528, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 45590, + "child_mortality": 821, + "fertility": 1.79, + "life_expect": 80.4, + "population": 10807879 + }, + "x": 45590, + "y": 80.4, + "size": 10807879, + "color": "Europe", + "map_id": 528 + }, + "currentYear": 1810, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9355148617722353, + "skewed": 0.48217424194809855, + "clumpy": 0.18579658319235604, + "sparse": 0.006623118676580164, + "striated": 0.24687990341954924, + "convex": 0.24536431250415358, + "skinny": 0.944211932885247, + "stringy": 0.9686158323152227, + "monotonic": 0.7961994446449072, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United Kingdom", + "count": 216, + "this": { + "country": "United Kingdom", + "year": 2009, + "map_id": 826, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 35840, + "child_mortality": 4618, + "fertility": 1.89, + "life_expect": 79.7, + "population": 51295523 + }, + "x": 35840, + "y": 79.7, + "size": 51295523, + "color": "Europe", + "map_id": 826 + }, + { + "country": "Netherlands", + "count": 216, + "this": { + "country": "Netherlands", + "year": 2009, + "map_id": 528, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 45590, + "child_mortality": 821, + "fertility": 1.79, + "life_expect": 80.4, + "population": 10807879 + }, + "x": 45590, + "y": 80.4, + "size": 10807879, + "color": "Europe", + "map_id": 528 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 5.156620156177409, + -86.43540114493597 + ], + "drag": [ + 5.156620156177409, + -86.43540114493597 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 14 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1937", + "timestamp": 1522409080014, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Netherlands", + "count": 216, + "this": { + "country": "Netherlands", + "year": 2009, + "map_id": 528, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 45590, + "child_mortality": 821, + "fertility": 1.79, + "life_expect": 80.4, + "population": 10807879 + }, + "x": 45590, + "y": 80.4, + "size": 10807879, + "color": "Europe", + "map_id": 528 + }, + "currentYear": 1937, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7840530074361043, + "skewed": 0.6118654342492982, + "clumpy": 0.8196402763627235, + "sparse": 0.8707541119164295, + "striated": 0.37497357280450117, + "convex": 0.947755568821192, + "skinny": 0.9408091393353499, + "stringy": 0.7944831916036268, + "monotonic": 0.7501820631319527, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 84.79775367936183, + -89.4280102227177 + ], + "drag": [ + 84.79775367936183, + -89.4280102227177 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 15 + }, + { + "attrs": { + "name": "Selected Year 1937", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1937\",\"payload\":{\"numVal\":1937},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.78\",\"payload\":{\"numVal\":0.7840530074361043},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.61\",\"payload\":{\"numVal\":0.6118654342492982},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.82\",\"payload\":{\"numVal\":0.8196402763627235},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.87\",\"payload\":{\"numVal\":0.8707541119164295},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.37\",\"payload\":{\"numVal\":0.37497357280450117},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.95\",\"payload\":{\"numVal\":0.947755568821192},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.94\",\"payload\":{\"numVal\":0.9408091393353499},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.79\",\"payload\":{\"numVal\":0.7944831916036268},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.75\",\"payload\":{\"numVal\":0.7501820631319527},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 16 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1937", + "timestamp": 1522409080014, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Netherlands", + "count": 216, + "this": { + "country": "Netherlands", + "year": 2009, + "map_id": 528, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 45590, + "child_mortality": 821, + "fertility": 1.79, + "life_expect": 80.4, + "population": 10807879 + }, + "x": 45590, + "y": 80.4, + "size": 10807879, + "color": "Europe", + "map_id": 528 + }, + "currentYear": 1810, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6574704471501382, + "skewed": 0.3149602155289364, + "clumpy": 0.30105658132550883, + "sparse": 0.36961439971535137, + "striated": 0.4774888333614917, + "convex": 0.31186805333107115, + "skinny": 0.8729943837012104, + "stringy": 0.052835396612504804, + "monotonic": 0.525571165011651, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 84.79775367936183, + -89.4280102227177 + ], + "drag": [ + 84.79775367936183, + -89.4280102227177 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 17 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Japan (1 Countries)", + "timestamp": 1522409092905, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 392, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 133.0159301593016, + 32.70419371551648 + ], + [ + 132.36432364323645, + 32.98854356087625 + ], + [ + 132.37152371523717, + 33.464152528412555 + ], + [ + 132.92592925929262, + 34.05993315678542 + ], + [ + 133.49473494734946, + 33.944839171758844 + ], + [ + 133.9051390513905, + 34.364593705385175 + ], + [ + 134.63954639546398, + 34.14963876276201 + ], + [ + 134.76554765547655, + 33.80604936628562 + ], + [ + 134.20394203942038, + 33.20180594489608 + ], + [ + 133.7935379353794, + 33.521699520925836 + ], + [ + 133.2787327873279, + 33.289818992269346 + ], + [ + 133.0159301593016, + 32.70419371551648 + ] + ] + ], + [ + [ + [ + 130.68670686706866, + 31.030253256821112 + ], + [ + 130.20070200702008, + 31.41784917698415 + ], + [ + 130.44910449104492, + 32.31998291256011 + ], + [ + 129.81549815498158, + 32.611102992333215 + ], + [ + 129.4086940869409, + 33.296589226682684 + ], + [ + 130.35550355503557, + 33.6046348924891 + ], + [ + 130.8775087750878, + 34.232574134325276 + ], + [ + 131.88551885518854, + 34.750497066944874 + ], + [ + 132.61632616326165, + 35.43259818408768 + ], + [ + 134.6071460714607, + 35.73218105687744 + ], + [ + 135.67635676356764, + 35.52738146587427 + ], + [ + 136.7239672396724, + 37.30456799937288 + ], + [ + 137.389973899739, + 36.82726647323325 + ], + [ + 138.8587885878859, + 37.827568607802476 + ], + [ + 139.4275942759428, + 38.2151645279655 + ], + [ + 140.0540005400054, + 39.43888439817455 + ], + [ + 139.88479884798846, + 40.562743310787 + ], + [ + 140.3060030600306, + 41.19576022843317 + ], + [ + 141.3680136801368, + 41.37855655759303 + ], + [ + 141.91521915219153, + 39.99235106146412 + ], + [ + 141.8828188281883, + 39.181615490468076 + ], + [ + 140.96120961209613, + 38.17454312148554 + ], + [ + 140.97560975609758, + 37.14208237345301 + ], + [ + 140.60120601206012, + 36.3431947126803 + ], + [ + 140.77400774007742, + 35.84219736609403 + ], + [ + 140.2520025200252, + 35.13809298710791 + ], + [ + 138.97398973989743, + 34.66756169538161 + ], + [ + 137.21717217172176, + 34.60662958566165 + ], + [ + 135.79155791557918, + 33.464152528412555 + ], + [ + 135.1219512195122, + 33.848363331368915 + ], + [ + 135.0787507875079, + 34.596474234041665 + ], + [ + 133.33993339933403, + 34.3764416156085 + ], + [ + 132.15552155521556, + 33.90421776527887 + ], + [ + 130.98550985509854, + 33.885599620642225 + ], + [ + 132.00072000720007, + 33.1493366281928 + ], + [ + 131.3311133111331, + 31.450007790447458 + ], + [ + 130.68670686706866, + 31.030253256821112 + ] + ] + ], + [ + [ + [ + 139.9567995679957, + 41.56981567976955 + ], + [ + 139.81639816398166, + 42.56334757992545 + ], + [ + 140.31320313203133, + 43.33346174444151 + ], + [ + 141.3788137881379, + 43.389316178351464 + ], + [ + 141.67041670416705, + 44.77213655727371 + ], + [ + 141.96921969219693, + 45.55071351480643 + ], + [ + 143.1428314283143, + 44.50978997375725 + ], + [ + 143.90963909639095, + 44.17466337029751 + ], + [ + 144.6116461164612, + 43.96140098627768 + ], + [ + 145.32085320853207, + 44.38454063711069 + ], + [ + 145.54405544055442, + 43.262374283101565 + ], + [ + 144.06084060840607, + 42.988179789361766 + ], + [ + 143.18243182431826, + 41.99464788920588 + ], + [ + 141.61281612816128, + 42.67844156495201 + ], + [ + 141.06561065610657, + 41.58504870719953 + ], + [ + 139.9567995679957, + 41.56981567976955 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + "currentYear": 1937, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9621616631945531, + "skewed": 0.05370589633612499, + "clumpy": 0.7964694840774174, + "sparse": 0.15016824695217212, + "striated": 0.35816171520402973, + "convex": 0.29840124274739765, + "skinny": 0.1061177252625709, + "stringy": 0.23265693374011298, + "monotonic": 0.9413909426391491, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 140.3746598070517, + -87.51265201852873 + ], + "drag": [ + 140.3746598070517, + -87.51265201852873 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 18 + }, + { + "attrs": { + "name": "Selected Japan (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1937\",\"payload\":{\"numVal\":1937},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.96\",\"payload\":{\"numVal\":0.9621616631945531},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.05\",\"payload\":{\"numVal\":0.05370589633612499},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.8\",\"payload\":{\"numVal\":0.7964694840774174},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.15\",\"payload\":{\"numVal\":0.15016824695217212},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.36\",\"payload\":{\"numVal\":0.35816171520402973},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.3\",\"payload\":{\"numVal\":0.29840124274739765},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.11\",\"payload\":{\"numVal\":0.1061177252625709},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.23\",\"payload\":{\"numVal\":0.23265693374011298},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.94\",\"payload\":{\"numVal\":0.9413909426391491},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Japan\",\"text\":\"Japan\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 19 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Japan (1 Countries)", + "timestamp": 1522409092905, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Netherlands", + "count": 216, + "this": { + "country": "Netherlands", + "year": 2009, + "map_id": 528, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 45590, + "child_mortality": 821, + "fertility": 1.79, + "life_expect": 80.4, + "population": 10807879 + }, + "x": 45590, + "y": 80.4, + "size": 10807879, + "color": "Europe", + "map_id": 528 + }, + "currentYear": 1937, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7840530074361043, + "skewed": 0.6118654342492982, + "clumpy": 0.8196402763627235, + "sparse": 0.8707541119164295, + "striated": 0.37497357280450117, + "convex": 0.947755568821192, + "skinny": 0.9408091393353499, + "stringy": 0.7944831916036268, + "monotonic": 0.7501820631319527, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 84.79775367936183, + -89.4280102227177 + ], + "drag": [ + 84.79775367936183, + -89.4280102227177 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 20 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1940", + "timestamp": 1522409110033, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + "currentYear": 1940, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.029141548186927935, + "skewed": 0.7669024811908041, + "clumpy": 0.5323959175362623, + "sparse": 0.6254611924714462, + "striated": 0.15394931195026706, + "convex": 0.7355808615445205, + "skinny": 0.8424314414762082, + "stringy": 0.7832148114810162, + "monotonic": 0.6271397047499676, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 140.3746598070517, + -87.51265201852873 + ], + "drag": [ + 140.3746598070517, + -87.51265201852873 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 21 + }, + { + "attrs": { + "name": "Selected Year 1940", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1940\",\"payload\":{\"numVal\":1940},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.03\",\"payload\":{\"numVal\":0.029141548186927935},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.77\",\"payload\":{\"numVal\":0.7669024811908041},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.53\",\"payload\":{\"numVal\":0.5323959175362623},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.63\",\"payload\":{\"numVal\":0.6254611924714462},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.15\",\"payload\":{\"numVal\":0.15394931195026706},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.74\",\"payload\":{\"numVal\":0.7355808615445205},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.84\",\"payload\":{\"numVal\":0.8424314414762082},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.78\",\"payload\":{\"numVal\":0.7832148114810162},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.63\",\"payload\":{\"numVal\":0.6271397047499676},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Japan\",\"text\":\"Japan\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 22 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1940", + "timestamp": 1522409110033, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 392, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 133.0159301593016, + 32.70419371551648 + ], + [ + 132.36432364323645, + 32.98854356087625 + ], + [ + 132.37152371523717, + 33.464152528412555 + ], + [ + 132.92592925929262, + 34.05993315678542 + ], + [ + 133.49473494734946, + 33.944839171758844 + ], + [ + 133.9051390513905, + 34.364593705385175 + ], + [ + 134.63954639546398, + 34.14963876276201 + ], + [ + 134.76554765547655, + 33.80604936628562 + ], + [ + 134.20394203942038, + 33.20180594489608 + ], + [ + 133.7935379353794, + 33.521699520925836 + ], + [ + 133.2787327873279, + 33.289818992269346 + ], + [ + 133.0159301593016, + 32.70419371551648 + ] + ] + ], + [ + [ + [ + 130.68670686706866, + 31.030253256821112 + ], + [ + 130.20070200702008, + 31.41784917698415 + ], + [ + 130.44910449104492, + 32.31998291256011 + ], + [ + 129.81549815498158, + 32.611102992333215 + ], + [ + 129.4086940869409, + 33.296589226682684 + ], + [ + 130.35550355503557, + 33.6046348924891 + ], + [ + 130.8775087750878, + 34.232574134325276 + ], + [ + 131.88551885518854, + 34.750497066944874 + ], + [ + 132.61632616326165, + 35.43259818408768 + ], + [ + 134.6071460714607, + 35.73218105687744 + ], + [ + 135.67635676356764, + 35.52738146587427 + ], + [ + 136.7239672396724, + 37.30456799937288 + ], + [ + 137.389973899739, + 36.82726647323325 + ], + [ + 138.8587885878859, + 37.827568607802476 + ], + [ + 139.4275942759428, + 38.2151645279655 + ], + [ + 140.0540005400054, + 39.43888439817455 + ], + [ + 139.88479884798846, + 40.562743310787 + ], + [ + 140.3060030600306, + 41.19576022843317 + ], + [ + 141.3680136801368, + 41.37855655759303 + ], + [ + 141.91521915219153, + 39.99235106146412 + ], + [ + 141.8828188281883, + 39.181615490468076 + ], + [ + 140.96120961209613, + 38.17454312148554 + ], + [ + 140.97560975609758, + 37.14208237345301 + ], + [ + 140.60120601206012, + 36.3431947126803 + ], + [ + 140.77400774007742, + 35.84219736609403 + ], + [ + 140.2520025200252, + 35.13809298710791 + ], + [ + 138.97398973989743, + 34.66756169538161 + ], + [ + 137.21717217172176, + 34.60662958566165 + ], + [ + 135.79155791557918, + 33.464152528412555 + ], + [ + 135.1219512195122, + 33.848363331368915 + ], + [ + 135.0787507875079, + 34.596474234041665 + ], + [ + 133.33993339933403, + 34.3764416156085 + ], + [ + 132.15552155521556, + 33.90421776527887 + ], + [ + 130.98550985509854, + 33.885599620642225 + ], + [ + 132.00072000720007, + 33.1493366281928 + ], + [ + 131.3311133111331, + 31.450007790447458 + ], + [ + 130.68670686706866, + 31.030253256821112 + ] + ] + ], + [ + [ + [ + 139.9567995679957, + 41.56981567976955 + ], + [ + 139.81639816398166, + 42.56334757992545 + ], + [ + 140.31320313203133, + 43.33346174444151 + ], + [ + 141.3788137881379, + 43.389316178351464 + ], + [ + 141.67041670416705, + 44.77213655727371 + ], + [ + 141.96921969219693, + 45.55071351480643 + ], + [ + 143.1428314283143, + 44.50978997375725 + ], + [ + 143.90963909639095, + 44.17466337029751 + ], + [ + 144.6116461164612, + 43.96140098627768 + ], + [ + 145.32085320853207, + 44.38454063711069 + ], + [ + 145.54405544055442, + 43.262374283101565 + ], + [ + 144.06084060840607, + 42.988179789361766 + ], + [ + 143.18243182431826, + 41.99464788920588 + ], + [ + 141.61281612816128, + 42.67844156495201 + ], + [ + 141.06561065610657, + 41.58504870719953 + ], + [ + 139.9567995679957, + 41.56981567976955 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + "currentYear": 1937, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9621616631945531, + "skewed": 0.05370589633612499, + "clumpy": 0.7964694840774174, + "sparse": 0.15016824695217212, + "striated": 0.35816171520402973, + "convex": 0.29840124274739765, + "skinny": 0.1061177252625709, + "stringy": 0.23265693374011298, + "monotonic": 0.9413909426391491, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 140.3746598070517, + -87.51265201852873 + ], + "drag": [ + 140.3746598070517, + -87.51265201852873 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 23 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409114435, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + "currentYear": 1940, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.4798774579099452, + "skewed": 0.13343638268785307, + "clumpy": 0.7373000178393807, + "sparse": 0.06160455462448944, + "striated": 0.09661434740869024, + "convex": 0.2384970407378535, + "skinny": 0.09297582750613786, + "stringy": 0.6575985726138462, + "monotonic": 0.19250082564698334, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 55.57690612768985, + -89.54096609442807 + ], + "drag": [ + 55.57690612768985, + -89.54096609442807 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 24 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1940\",\"payload\":{\"numVal\":1940},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.48\",\"payload\":{\"numVal\":0.4798774579099452},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.13\",\"payload\":{\"numVal\":0.13343638268785307},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.74\",\"payload\":{\"numVal\":0.7373000178393807},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.06\",\"payload\":{\"numVal\":0.06160455462448944},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.1\",\"payload\":{\"numVal\":0.09661434740869024},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.24\",\"payload\":{\"numVal\":0.2384970407378535},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.09\",\"payload\":{\"numVal\":0.09297582750613786},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.66\",\"payload\":{\"numVal\":0.6575985726138462},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.19\",\"payload\":{\"numVal\":0.19250082564698334},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 25 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409114435, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + "currentYear": 1940, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.029141548186927935, + "skewed": 0.7669024811908041, + "clumpy": 0.5323959175362623, + "sparse": 0.6254611924714462, + "striated": 0.15394931195026706, + "convex": 0.7355808615445205, + "skinny": 0.8424314414762082, + "stringy": 0.7832148114810162, + "monotonic": 0.6271397047499676, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 140.3746598070517, + -87.51265201852873 + ], + "drag": [ + 140.3746598070517, + -87.51265201852873 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 26 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1948", + "timestamp": 1522409124603, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7639819585393355, + "skewed": 0.13151121332033444, + "clumpy": 0.4695391723838527, + "sparse": 0.006883396695204214, + "striated": 0.5002283746640057, + "convex": 0.770250780141184, + "skinny": 0.5323008812312169, + "stringy": 0.6388595937274082, + "monotonic": 0.6049578057072598, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 55.57690612768985, + -89.54096609442807 + ], + "drag": [ + 55.57690612768985, + -89.54096609442807 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 27 + }, + { + "attrs": { + "name": "Selected Year 1948", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.76\",\"payload\":{\"numVal\":0.7639819585393355},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.13\",\"payload\":{\"numVal\":0.13151121332033444},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.47\",\"payload\":{\"numVal\":0.4695391723838527},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.01\",\"payload\":{\"numVal\":0.006883396695204214},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.5\",\"payload\":{\"numVal\":0.5002283746640057},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.77\",\"payload\":{\"numVal\":0.770250780141184},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.53\",\"payload\":{\"numVal\":0.5323008812312169},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.64\",\"payload\":{\"numVal\":0.6388595937274082},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.6\",\"payload\":{\"numVal\":0.6049578057072598},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 28 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1948", + "timestamp": 1522409124603, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + "currentYear": 1940, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.4798774579099452, + "skewed": 0.13343638268785307, + "clumpy": 0.7373000178393807, + "sparse": 0.06160455462448944, + "striated": 0.09661434740869024, + "convex": 0.2384970407378535, + "skinny": 0.09297582750613786, + "stringy": 0.6575985726138462, + "monotonic": 0.19250082564698334, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 55.57690612768985, + -89.54096609442807 + ], + "drag": [ + 55.57690612768985, + -89.54096609442807 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 29 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Sweden (1 Countries)", + "timestamp": 1522409137195, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 752, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.028710287102882, + 58.855916695599376 + ], + [ + 11.467914679146787, + 59.43307917933561 + ], + [ + 12.29952299522995, + 60.11856541368505 + ], + [ + 12.630726307263075, + 61.29320108439748 + ], + [ + 11.993519935199345, + 61.80096866539708 + ], + [ + 11.93231932319324, + 63.12793461040937 + ], + [ + 12.580325803258035, + 64.0656120766553 + ], + [ + 13.570335703357046, + 64.048686490622 + ], + [ + 13.919539195391962, + 64.44474520380169 + ], + [ + 13.55593555935559, + 64.78664204167475 + ], + [ + 15.10755107551077, + 66.19315824104365 + ], + [ + 16.108361083610845, + 67.30178412622612 + ], + [ + 16.76716767167673, + 68.01435129822889 + ], + [ + 17.728377283772858, + 68.01096618102224 + ], + [ + 17.994779947799486, + 68.56781796151847 + ], + [ + 19.877598775987764, + 68.40702489420192 + ], + [ + 20.02520025200252, + 69.06543019089807 + ], + [ + 20.644406444064458, + 69.10605159737804 + ], + [ + 21.980019800198022, + 68.61690216101508 + ], + [ + 23.538835388353903, + 67.93649360247562 + ], + [ + 23.56763567635676, + 66.39626527344348 + ], + [ + 23.902439024390247, + 66.00697679467712 + ], + [ + 22.181621816218183, + 65.72431950792068 + ], + [ + 21.213212132121328, + 65.02529280474457 + ], + [ + 21.368013680136812, + 64.41427914894172 + ], + [ + 19.780397803978047, + 63.61031381235901 + ], + [ + 17.84717847178473, + 62.74880148326301 + ], + [ + 17.119971199712012, + 61.340592725290776 + ], + [ + 17.832778327783274, + 60.636488346304645 + ], + [ + 18.786787867878672, + 60.08132912441175 + ], + [ + 17.868778687786886, + 58.95408509459264 + ], + [ + 16.828368283682835, + 58.720512007332815 + ], + [ + 16.44676446764467, + 57.04149387282746 + ], + [ + 15.881558815588164, + 56.10381640658153 + ], + [ + 14.668346683466837, + 56.20029224697146 + ], + [ + 14.099540995409967, + 55.40817482061206 + ], + [ + 12.943929439294408, + 55.362475738322104 + ], + [ + 12.623526235262347, + 56.30692343898136 + ], + [ + 11.788317883178848, + 57.44263026181716 + ], + [ + 11.028710287102882, + 58.855916695599376 + ] + ] + ] + }, + "countryRef": { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2009, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 40820, + "child_mortality": 349, + "fertility": 1.94, + "life_expect": 81.2, + "population": 7297495 + }, + "x": 40820, + "y": 81.2, + "size": 7297495, + "color": "Europe", + "map_id": 752 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2009, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 40820, + "child_mortality": 349, + "fertility": 1.94, + "life_expect": 81.2, + "population": 7297495 + }, + "x": 40820, + "y": 81.2, + "size": 7297495, + "color": "Europe", + "map_id": 752 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.22996264413625322, + "skewed": 0.5603082573480302, + "clumpy": 0.3936201113903548, + "sparse": 0.30898205598288997, + "striated": 0.7977322469097219, + "convex": 0.7466655384178746, + "skinny": 0.5840960963828625, + "stringy": 0.5325307272136277, + "monotonic": 0.04981769556650506, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2009, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 40820, + "child_mortality": 349, + "fertility": 1.94, + "life_expect": 81.2, + "population": 7297495 + }, + "x": 40820, + "y": 81.2, + "size": 7297495, + "color": "Europe", + "map_id": 752 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 13.750987083139757, + -85.5590277602285 + ], + "drag": [ + 13.750987083139757, + -85.5590277602285 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 30 + }, + { + "attrs": { + "name": "Selected Sweden (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.23\",\"payload\":{\"numVal\":0.22996264413625322},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.56\",\"payload\":{\"numVal\":0.5603082573480302},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.39\",\"payload\":{\"numVal\":0.3936201113903548},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.31\",\"payload\":{\"numVal\":0.30898205598288997},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.8\",\"payload\":{\"numVal\":0.7977322469097219},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.75\",\"payload\":{\"numVal\":0.7466655384178746},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.58\",\"payload\":{\"numVal\":0.5840960963828625},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.53\",\"payload\":{\"numVal\":0.5325307272136277},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.05\",\"payload\":{\"numVal\":0.04981769556650506},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Sweden\",\"text\":\"Sweden\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 31 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Sweden (1 Countries)", + "timestamp": 1522409137195, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7639819585393355, + "skewed": 0.13151121332033444, + "clumpy": 0.4695391723838527, + "sparse": 0.006883396695204214, + "striated": 0.5002283746640057, + "convex": 0.770250780141184, + "skinny": 0.5323008812312169, + "stringy": 0.6388595937274082, + "monotonic": 0.6049578057072598, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 55.57690612768985, + -89.54096609442807 + ], + "drag": [ + 55.57690612768985, + -89.54096609442807 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 32 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409142758, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2009, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 40820, + "child_mortality": 349, + "fertility": 1.94, + "life_expect": 81.2, + "population": 7297495 + }, + "x": 40820, + "y": 81.2, + "size": 7297495, + "color": "Europe", + "map_id": 752 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.06280617626168339, + "skewed": 0.7373097476826207, + "clumpy": 0.7609191506939363, + "sparse": 0.5117449552159063, + "striated": 0.049074838241558005, + "convex": 0.42046877611986755, + "skinny": 0.3921208864852834, + "stringy": 0.4703392485083975, + "monotonic": 0.9350074819539504, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 68.18197762056796, + -89.21230286148511 + ], + "drag": [ + 68.18197762056796, + -89.21230286148511 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 33 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.06\",\"payload\":{\"numVal\":0.06280617626168339},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.74\",\"payload\":{\"numVal\":0.7373097476826207},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.76\",\"payload\":{\"numVal\":0.7609191506939363},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.51\",\"payload\":{\"numVal\":0.5117449552159063},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.05\",\"payload\":{\"numVal\":0.049074838241558005},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.42\",\"payload\":{\"numVal\":0.42046877611986755},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.39\",\"payload\":{\"numVal\":0.3921208864852834},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.47\",\"payload\":{\"numVal\":0.4703392485083975},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.94\",\"payload\":{\"numVal\":0.9350074819539504},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 34 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409142758, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 752, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.028710287102882, + 58.855916695599376 + ], + [ + 11.467914679146787, + 59.43307917933561 + ], + [ + 12.29952299522995, + 60.11856541368505 + ], + [ + 12.630726307263075, + 61.29320108439748 + ], + [ + 11.993519935199345, + 61.80096866539708 + ], + [ + 11.93231932319324, + 63.12793461040937 + ], + [ + 12.580325803258035, + 64.0656120766553 + ], + [ + 13.570335703357046, + 64.048686490622 + ], + [ + 13.919539195391962, + 64.44474520380169 + ], + [ + 13.55593555935559, + 64.78664204167475 + ], + [ + 15.10755107551077, + 66.19315824104365 + ], + [ + 16.108361083610845, + 67.30178412622612 + ], + [ + 16.76716767167673, + 68.01435129822889 + ], + [ + 17.728377283772858, + 68.01096618102224 + ], + [ + 17.994779947799486, + 68.56781796151847 + ], + [ + 19.877598775987764, + 68.40702489420192 + ], + [ + 20.02520025200252, + 69.06543019089807 + ], + [ + 20.644406444064458, + 69.10605159737804 + ], + [ + 21.980019800198022, + 68.61690216101508 + ], + [ + 23.538835388353903, + 67.93649360247562 + ], + [ + 23.56763567635676, + 66.39626527344348 + ], + [ + 23.902439024390247, + 66.00697679467712 + ], + [ + 22.181621816218183, + 65.72431950792068 + ], + [ + 21.213212132121328, + 65.02529280474457 + ], + [ + 21.368013680136812, + 64.41427914894172 + ], + [ + 19.780397803978047, + 63.61031381235901 + ], + [ + 17.84717847178473, + 62.74880148326301 + ], + [ + 17.119971199712012, + 61.340592725290776 + ], + [ + 17.832778327783274, + 60.636488346304645 + ], + [ + 18.786787867878672, + 60.08132912441175 + ], + [ + 17.868778687786886, + 58.95408509459264 + ], + [ + 16.828368283682835, + 58.720512007332815 + ], + [ + 16.44676446764467, + 57.04149387282746 + ], + [ + 15.881558815588164, + 56.10381640658153 + ], + [ + 14.668346683466837, + 56.20029224697146 + ], + [ + 14.099540995409967, + 55.40817482061206 + ], + [ + 12.943929439294408, + 55.362475738322104 + ], + [ + 12.623526235262347, + 56.30692343898136 + ], + [ + 11.788317883178848, + 57.44263026181716 + ], + [ + 11.028710287102882, + 58.855916695599376 + ] + ] + ] + }, + "countryRef": { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2009, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 40820, + "child_mortality": 349, + "fertility": 1.94, + "life_expect": 81.2, + "population": 7297495 + }, + "x": 40820, + "y": 81.2, + "size": 7297495, + "color": "Europe", + "map_id": 752 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2009, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 40820, + "child_mortality": 349, + "fertility": 1.94, + "life_expect": 81.2, + "population": 7297495 + }, + "x": 40820, + "y": 81.2, + "size": 7297495, + "color": "Europe", + "map_id": 752 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.22996264413625322, + "skewed": 0.5603082573480302, + "clumpy": 0.3936201113903548, + "sparse": 0.30898205598288997, + "striated": 0.7977322469097219, + "convex": 0.7466655384178746, + "skinny": 0.5840960963828625, + "stringy": 0.5325307272136277, + "monotonic": 0.04981769556650506, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2009, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 40820, + "child_mortality": 349, + "fertility": 1.94, + "life_expect": 81.2, + "population": 7297495 + }, + "x": 40820, + "y": 81.2, + "size": 7297495, + "color": "Europe", + "map_id": 752 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 13.750987083139757, + -85.5590277602285 + ], + "drag": [ + 13.750987083139757, + -85.5590277602285 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 35 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United States (1 Countries)", + "timestamp": 1522409147302, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 840, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -155.68895688956889, + 18.91661133277391 + ], + [ + -155.93735937359372, + 19.058786255453796 + ], + [ + -155.90855908559087, + 19.33805842500358 + ], + [ + -156.07416074160741, + 19.703651083323294 + ], + [ + -156.02376023760237, + 19.813667392539884 + ], + [ + -155.8509585095851, + 19.97784557706308 + ], + [ + -155.91935919359193, + 20.174182375049597 + ], + [ + -155.8617586175862, + 20.267273098232863 + ], + [ + -155.7861578615786, + 20.2486549535962 + ], + [ + -155.4009540095401, + 20.079399093263007 + ], + [ + -155.22455224552246, + 19.99307860449308 + ], + [ + -155.06255062550625, + 19.85936647482984 + ], + [ + -154.80694806948068, + 19.509006843940114 + ], + [ + -154.8321483214832, + 19.453152410030157 + ], + [ + -155.2209522095221, + 19.23989002601033 + ], + [ + -155.54135541355413, + 19.084174634503782 + ], + [ + -155.68895688956889, + 18.91661133277391 + ] + ] + ], + [ + [ + [ + -156.4161641616416, + 20.57193364683262 + ], + [ + -156.58536585365854, + 20.783503472249123 + ], + [ + -156.70056700567005, + 20.86474628520905 + ], + [ + -156.71136711367114, + 20.927370953532346 + ], + [ + -156.61416614166143, + 21.011998883698936 + ], + [ + -156.25776257762578, + 20.917215601912346 + ], + [ + -155.9949599495995, + 20.764885327612475 + ], + [ + -156.07776077760778, + 20.6447136667759 + ], + [ + -156.4161641616416, + 20.57193364683262 + ] + ] + ], + [ + [ + [ + -156.79056790567904, + 21.06954587621223 + ], + [ + -157.3269732697327, + 21.09831937246888 + ], + [ + -157.25137251372513, + 21.22018359190878 + ], + [ + -156.75816758167582, + 21.176177068222145 + ], + [ + -156.79056790567904, + 21.06954587621223 + ] + ] + ], + [ + [ + [ + -157.70857708577086, + 21.26419011559541 + ], + [ + -157.7769777697777, + 21.277730584422073 + ], + [ + -158.12618126181263, + 21.313274315092045 + ], + [ + -158.2521825218252, + 21.538384609335196 + ], + [ + -158.29178291782918, + 21.579006015815168 + ], + [ + -158.02538025380255, + 21.71779582128839 + ], + [ + -157.94257942579426, + 21.653478594361772 + ], + [ + -157.65457654576545, + 21.321737108108707 + ], + [ + -157.70857708577086, + 21.26419011559541 + ] + ] + ], + [ + [ + [ + -159.46539465394653, + 21.883666564414924 + ], + [ + -159.80019800198002, + 22.064770334971456 + ], + [ + -159.74979749797498, + 22.137550354914737 + ], + [ + -159.5949959499595, + 22.23571875390799 + ], + [ + -159.36459364593645, + 22.215408050668003 + ], + [ + -159.34659346593466, + 21.98183496340819 + ], + [ + -159.46539465394653, + 21.883666564414924 + ] + ] + ], + [ + [ + [ + -67.13887138871388, + 45.137729215593424 + ], + [ + -66.9660696606966, + 44.80937284654701 + ], + [ + -68.03168031680316, + 44.325301085994056 + ], + [ + -69.06129061290612, + 43.98001913091434 + ], + [ + -70.1161011610116, + 43.683821375331235 + ], + [ + -70.64530645306452, + 43.08973330556171 + ], + [ + -70.81450814508145, + 42.86462301131854 + ], + [ + -70.82530825308253, + 42.33485216847562 + ], + [ + -70.4941049410494, + 41.8050813256327 + ], + [ + -70.080100801008, + 41.77969294658271 + ], + [ + -70.18450184501845, + 42.14528560490244 + ], + [ + -69.88569885698857, + 41.92356042786594 + ], + [ + -69.9648996489965, + 41.63751802390283 + ], + [ + -70.64170641706417, + 41.47503239798296 + ], + [ + -71.12051120511205, + 41.493650542619605 + ], + [ + -71.85851858518585, + 41.31931700647641 + ], + [ + -72.2941229412294, + 41.27023280697978 + ], + [ + -72.87732877328773, + 41.22114860748316 + ], + [ + -73.70893708937089, + 40.93172108631339 + ], + [ + -72.24012240122401, + 41.11959509128323 + ], + [ + -71.94491944919449, + 40.93002852771005 + ], + [ + -73.34533345333453, + 40.63044565492028 + ], + [ + -73.98253982539825, + 40.628753096316956 + ], + [ + -73.95373953739536, + 40.750617315756855 + ], + [ + -74.2561425614256, + 40.47303770481041 + ], + [ + -73.96093960939609, + 40.42733862252044 + ], + [ + -74.1769417694177, + 39.709693774707674 + ], + [ + -74.90774907749078, + 38.9395796101916 + ], + [ + -74.97974979749797, + 39.196848517898076 + ], + [ + -75.19935199351993, + 39.24762527599803 + ], + [ + -75.52695526955269, + 39.49812394929117 + ], + [ + -75.32175321753218, + 38.959890313431586 + ], + [ + -75.07335073350733, + 38.78217166008173 + ], + [ + -75.05535055350553, + 38.40473109153869 + ], + [ + -75.37575375753757, + 38.01544261277233 + ], + [ + -75.94095940959409, + 37.21655495199961 + ], + [ + -76.03096030960309, + 37.25717635847958 + ], + [ + -75.72135721357213, + 37.93758491701905 + ], + [ + -76.23256232562325, + 38.31841060276875 + ], + [ + -76.35136351363514, + 39.14945687700478 + ], + [ + -76.54216542165422, + 38.71785443315511 + ], + [ + -76.32976329763298, + 38.08314495690561 + ], + [ + -76.98856988569885, + 38.240552907015484 + ], + [ + -76.3009630096301, + 37.917274213779066 + ], + [ + -76.25776257762577, + 36.966056278706475 + ], + [ + -75.97335973359733, + 36.89666137596987 + ], + [ + -75.86895868958689, + 36.55137942089014 + ], + [ + -75.72855728557285, + 35.55107728632092 + ], + [ + -76.36216362163621, + 34.80804405945817 + ], + [ + -77.3989739897399, + 34.51184630387506 + ], + [ + -78.05418054180541, + 33.92622102712218 + ], + [ + -78.55458554585546, + 33.86190380019558 + ], + [ + -79.06219062190621, + 33.494618583272526 + ], + [ + -79.20259202592025, + 33.15779942120946 + ], + [ + -80.30060300603006, + 32.50954947613329 + ], + [ + -80.86580865808658, + 32.033940508597 + ], + [ + -81.33741337413373, + 31.439852438827458 + ], + [ + -81.49221492214922, + 30.730670384031356 + ], + [ + -81.31221312213121, + 30.035028798061887 + ], + [ + -80.9810098100981, + 29.180286703379224 + ], + [ + -80.53460534605345, + 28.472797207186446 + ], + [ + -80.5310053100531, + 28.039502204733452 + ], + [ + -80.05580055800557, + 26.88009956145102 + ], + [ + -80.08820088200882, + 26.206461237324888 + ], + [ + -80.13140131401313, + 25.817172758558527 + ], + [ + -80.37980379803798, + 25.206159102755663 + ], + [ + -80.67860678606786, + 25.079217207505764 + ], + [ + -81.17181171811718, + 25.201081426945677 + ], + [ + -81.33021330213302, + 25.639454105208657 + ], + [ + -81.70821708217082, + 25.869642075261808 + ], + [ + -82.2410224102241, + 26.72946184575447 + ], + [ + -82.70542705427054, + 27.494498334460545 + ], + [ + -82.85662856628566, + 27.885479371830243 + ], + [ + -82.65142651426514, + 28.550654902939726 + ], + [ + -82.92862928629286, + 29.10073644902262 + ], + [ + -83.70983709837098, + 29.936860399068635 + ], + [ + -84.09864098640986, + 30.08919067336852 + ], + [ + -85.11025110251101, + 29.63558496767554 + ], + [ + -85.28665286652866, + 29.686361725775498 + ], + [ + -85.77265772657726, + 30.1518153416918 + ], + [ + -86.3990639906399, + 30.400621456381614 + ], + [ + -87.52947529475294, + 30.2736795611317 + ], + [ + -88.41868418684186, + 30.385388428951615 + ], + [ + -89.18189181891819, + 30.31599352621501 + ], + [ + -89.59229592295922, + 30.160278134708463 + ], + [ + -89.41229412294122, + 29.89454643398534 + ], + [ + -89.43029430294303, + 29.488332369185656 + ], + [ + -89.21789217892179, + 29.290303012595814 + ], + [ + -89.40869408694087, + 29.15997600013924 + ], + [ + -89.77949779497794, + 29.307228598629123 + ], + [ + -90.1539015390154, + 29.117662035055943 + ], + [ + -90.88110881108811, + 29.148128089915915 + ], + [ + -91.62631626316262, + 29.676206374155512 + ], + [ + -92.49752497524975, + 29.552649596112275 + ], + [ + -93.22473224732246, + 29.78453012476875 + ], + [ + -93.84753847538475, + 29.713442663428808 + ], + [ + -94.68994689946899, + 29.479869576168994 + ], + [ + -95.60075600756008, + 28.73852890790957 + ], + [ + -96.59436594365944, + 28.306926464059913 + ], + [ + -97.14157141571415, + 27.829624937920286 + ], + [ + -97.36837368373683, + 27.37940434943397 + ], + [ + -97.37917379173791, + 26.69053299787784 + ], + [ + -97.32877328773287, + 26.20984635453155 + ], + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -117.29457294572946, + 33.04609055338955 + ], + [ + -117.94257942579426, + 33.621560478522426 + ], + [ + -118.41058410584105, + 33.741732139359 + ], + [ + -118.51858518585186, + 34.02777454332211 + ], + [ + -119.08019080190802, + 34.07855130142207 + ], + [ + -119.44019440194401, + 34.34766811935185 + ], + [ + -120.36900369003689, + 34.44752907694844 + ], + [ + -120.62460624606246, + 34.60832214426499 + ], + [ + -120.74340743407434, + 35.15671113174456 + ], + [ + -121.71541715417155, + 36.16209094212377 + ], + [ + -122.54702547025471, + 37.55168155545935 + ], + [ + -122.5110251102511, + 37.78356208411584 + ], + [ + -122.95382953829538, + 38.113611011765585 + ], + [ + -123.72783727837279, + 38.951427520414924 + ], + [ + -123.86463864638645, + 39.767240767220954 + ], + [ + -124.39744397443974, + 40.3139371960972 + ], + [ + -124.17784177841779, + 41.141598353126554 + ], + [ + -124.21384213842138, + 41.99972556501588 + ], + [ + -124.53424534245343, + 42.766454612325276 + ], + [ + -124.14184141841417, + 43.70920975438122 + ], + [ + -124.01944019440194, + 44.61642116576718 + ], + [ + -123.90063900639007, + 45.52363257715314 + ], + [ + -124.08064080640807, + 46.864138990992075 + ], + [ + -124.39744397443974, + 47.72057364427809 + ], + [ + -124.68544685446855, + 48.18433470159104 + ], + [ + -124.56664566645667, + 48.378978940974235 + ], + [ + -123.11943119431194, + 48.04046722030782 + ], + [ + -122.58662586625866, + 47.096019519648564 + ], + [ + -122.33822338223382, + 47.36005866176836 + ], + [ + -122.50022500225002, + 48.179257025781055 + ], + [ + -122.83862838628386, + 49.000147948397085 + ], + [ + -120.00180001800018, + 49.000147948397085 + ], + [ + -117.03177031770318, + 49.000147948397085 + ], + [ + -116.0489604896049, + 49.000147948397085 + ], + [ + -112.99972999729997, + 49.000147948397085 + ], + [ + -110.05130051300513, + 49.000147948397085 + ], + [ + -107.04887048870488, + 49.000147948397085 + ], + [ + -104.050040500405, + 49.000147948397085 + ], + [ + -100.65160651606516, + 49.000147948397085 + ], + [ + -97.22797227972279, + 49.000147948397085 + ], + [ + -95.1579515795158, + 49.000147948397085 + ], + [ + -95.15435154351543, + 49.38435875135343 + ], + [ + -94.8159481594816, + 49.389436427163446 + ], + [ + -94.63954639546395, + 48.83935488108054 + ], + [ + -94.329943299433, + 48.67009902074733 + ], + [ + -93.63153631536315, + 48.60916691102739 + ], + [ + -92.6091260912609, + 48.45006640231418 + ], + [ + -91.64071640716406, + 48.14032817790442 + ], + [ + -90.83070830708307, + 48.27065519036097 + ], + [ + -89.59949599495995, + 48.01000116544785 + ], + [ + -89.27189271892719, + 48.020156517067846 + ], + [ + -88.37908379083791, + 48.30281380382428 + ], + [ + -87.43947439474394, + 47.94060626271124 + ], + [ + -86.46026460264602, + 47.55301034254822 + ], + [ + -85.65385653856538, + 47.219576297691816 + ], + [ + -84.87624876248762, + 46.89968272166206 + ], + [ + -84.7790477904779, + 46.6373361381456 + ], + [ + -84.5450454504545, + 46.53916773915233 + ], + [ + -84.60624606246063, + 46.43930678155576 + ], + [ + -84.33624336243362, + 46.40884072669576 + ], + [ + -84.14184141841417, + 46.51208680149901 + ], + [ + -84.09144091440913, + 46.275128597032534 + ], + [ + -83.88983889838899, + 46.11772064692266 + ], + [ + -83.61623616236162, + 46.11772064692266 + ], + [ + -83.46863468634686, + 45.99416386887944 + ], + [ + -83.59463594635946, + 45.81644521552957 + ], + [ + -82.55062550625506, + 45.347606482406604 + ], + [ + -82.33822338223382, + 44.440395071020646 + ], + [ + -82.13662136621366, + 43.57041994890798 + ], + [ + -82.42822428224282, + 42.979716996345104 + ], + [ + -82.89982899828998, + 42.429635450262225 + ], + [ + -83.11943119431194, + 42.079275819372484 + ], + [ + -83.1410314103141, + 41.97602974456923 + ], + [ + -83.02943029430294, + 41.83216226328601 + ], + [ + -82.6910269102691, + 41.67475431317614 + ], + [ + -82.4390243902439, + 41.67475431317614 + ], + [ + -81.27621276212761, + 42.209602831829045 + ], + [ + -80.24660246602465, + 42.36701078193893 + ], + [ + -78.93978939789397, + 42.862930452715204 + ], + [ + -78.92178921789217, + 42.96448396891512 + ], + [ + -79.01179011790117, + 43.27083707611823 + ], + [ + -79.17019170191702, + 43.46717387410473 + ], + [ + -78.72018720187201, + 43.6245818242146 + ], + [ + -77.73737737377374, + 43.629659500024616 + ], + [ + -76.81936819368194, + 43.62796694142128 + ], + [ + -76.49896498964989, + 44.018947978790976 + ], + [ + -76.37656376563766, + 44.09680567454424 + ], + [ + -75.31815318153181, + 44.81614308096036 + ], + [ + -74.86814868148682, + 45.000631968723525 + ], + [ + -73.34893348933488, + 45.00740220313688 + ], + [ + -71.50571505715057, + 45.00740220313688 + ], + [ + -71.40491404914049, + 45.25451575922335 + ], + [ + -71.08451084510845, + 45.305292517323295 + ], + [ + -70.65970659706596, + 45.45931535022652 + ], + [ + -70.30330303303033, + 45.914613614522835 + ], + [ + -70.00090000900009, + 46.693190572055556 + ], + [ + -69.23769237692376, + 47.44807170914163 + ], + [ + -68.90648906489065, + 47.18572512562517 + ], + [ + -68.23328233282332, + 47.35498098595838 + ], + [ + -67.79047790477904, + 47.06555346478859 + ], + [ + -67.79047790477904, + 45.70304378910632 + ], + [ + -67.13887138871388, + 45.137729215593424 + ] + ] + ], + [ + [ + [ + -154.0041400414004, + 56.73514076562438 + ], + [ + -154.51534515345153, + 56.992409673330826 + ], + [ + -154.67014670146702, + 57.46124840645379 + ], + [ + -153.7629376293763, + 57.81668571315353 + ], + [ + -153.230132301323, + 57.96901598745342 + ], + [ + -152.5641256412564, + 57.90131364332012 + ], + [ + -152.14292142921428, + 57.59157541891037 + ], + [ + -153.0069300693007, + 57.11596645137408 + ], + [ + -154.0041400414004, + 56.73514076562438 + ] + ] + ], + [ + [ + [ + -166.1938619386194, + 59.75466531396867 + ], + [ + -166.8490684906849, + 59.940846760335205 + ], + [ + -167.4538745387454, + 60.213348695471666 + ], + [ + -166.46746467464675, + 60.384297114408184 + ], + [ + -165.67545675456753, + 60.29289894982827 + ], + [ + -165.57825578255782, + 59.910380705475234 + ], + [ + -166.1938619386194, + 59.75466531396867 + ] + ] + ], + [ + [ + [ + -169.5310953109531, + 62.97729689471282 + ], + [ + -170.29070290702907, + 63.193944395939326 + ], + [ + -170.67230672306724, + 63.375048166495844 + ], + [ + -171.55431554315544, + 63.31750117398255 + ], + [ + -171.79191791917918, + 63.405514221355816 + ], + [ + -171.73071730717308, + 63.78295478989887 + ], + [ + -171.1151111511115, + 63.59169566772235 + ], + [ + -170.49230492304923, + 63.6949417425256 + ], + [ + -169.68229682296823, + 63.4309026004058 + ], + [ + -168.68868688686888, + 63.29719047074258 + ], + [ + -168.77148771487714, + 63.18886672012934 + ], + [ + -169.5310953109531, + 62.97729689471282 + ] + ] + ], + [ + [ + [ + -140.98640986409865, + 69.7119875773709 + ], + [ + -140.99360993609935, + 66.00020656026379 + ], + [ + -140.9972099720997, + 60.30643941865492 + ], + [ + -140.01440014400146, + 60.277665922398256 + ], + [ + -139.03879038790387, + 60.00008631145181 + ], + [ + -138.34038340383404, + 59.561713633188816 + ], + [ + -137.4511745117451, + 58.90500089509601 + ], + [ + -136.47916479164792, + 59.46354523419558 + ], + [ + -135.47475474754748, + 59.78851648603532 + ], + [ + -134.94554945549456, + 59.27059355341572 + ], + [ + -134.27234272342724, + 58.86099437140936 + ], + [ + -133.35433354333543, + 58.41077378292306 + ], + [ + -132.73152731527315, + 57.69312893511028 + ], + [ + -131.70911709117092, + 56.55234443646452 + ], + [ + -130.00630006300062, + 55.91594240161169 + ], + [ + -129.9810998109981, + 55.28461804256884 + ], + [ + -130.53550535505354, + 54.802238840619225 + ], + [ + -131.08631086310862, + 55.17967940916225 + ], + [ + -131.96831968319682, + 55.497880426588665 + ], + [ + -132.2491224912249, + 56.36954810730467 + ], + [ + -133.5379353793538, + 57.17859111969736 + ], + [ + -134.07794077940778, + 58.12303882035661 + ], + [ + -135.0391503915039, + 58.18735604728323 + ], + [ + -136.62676626766267, + 58.21274442633322 + ], + [ + -137.80037800378005, + 58.50047938889966 + ], + [ + -139.86679866798667, + 59.53801781274217 + ], + [ + -140.82440824408243, + 59.72758437631538 + ], + [ + -142.5740257402574, + 60.08471424161843 + ], + [ + -143.960039600396, + 59.9983937528485 + ], + [ + -145.92565925659255, + 60.4587696929548 + ], + [ + -147.11367113671136, + 60.88529446099446 + ], + [ + -148.2260822608226, + 60.67372463557797 + ], + [ + -148.01728017280172, + 59.9780830496085 + ], + [ + -148.57168571685716, + 59.91376582268188 + ], + [ + -149.72729727297272, + 59.70558111447204 + ], + [ + -150.60930609306092, + 59.36876195240899 + ], + [ + -151.7181171811718, + 59.15549956838913 + ], + [ + -151.85851858518586, + 59.74450996234867 + ], + [ + -151.40851408514084, + 60.72619395228125 + ], + [ + -150.34650346503466, + 61.03423961808767 + ], + [ + -150.62010620106201, + 61.28473829138082 + ], + [ + -151.89451894518945, + 60.72788651088459 + ], + [ + -152.57852578525785, + 60.06101842117178 + ], + [ + -154.01854018540186, + 59.35014380777233 + ], + [ + -153.28773287732878, + 58.86437948861604 + ], + [ + -154.23094230942309, + 58.14673464080326 + ], + [ + -155.30735307353075, + 57.72698010717693 + ], + [ + -156.30816308163082, + 57.42231955857716 + ], + [ + -156.55656556565566, + 56.98056176310752 + ], + [ + -158.1189811898119, + 56.46433138909126 + ], + [ + -158.4321843218432, + 55.993800097364954 + ], + [ + -159.60219602196022, + 55.56727532932527 + ], + [ + -160.289802898029, + 55.64344046647523 + ], + [ + -161.2222122221222, + 55.36416829692544 + ], + [ + -162.23742237422374, + 55.023964017655715 + ], + [ + -163.0690306903069, + 54.69052997279931 + ], + [ + -164.78624786247863, + 54.4044875688362 + ], + [ + -164.94104941049412, + 54.57205087056607 + ], + [ + -163.84663846638466, + 55.0391970450857 + ], + [ + -162.8710287102871, + 55.34724271089212 + ], + [ + -161.80541805418054, + 55.89563169837169 + ], + [ + -160.56340563405635, + 56.0073405661916 + ], + [ + -160.070200702007, + 56.41863230680127 + ], + [ + -158.6841868418684, + 57.016105493777474 + ], + [ + -158.4609846098461, + 57.21751996757399 + ], + [ + -157.7229772297723, + 57.56957215706706 + ], + [ + -157.550175501755, + 58.32783841135978 + ], + [ + -157.04257042570424, + 58.91854136392266 + ], + [ + -158.19458194581946, + 58.615573373926225 + ], + [ + -158.51858518585186, + 58.78821435146611 + ], + [ + -159.05859058590585, + 58.424314251749706 + ], + [ + -159.710197101971, + 58.93208183274933 + ], + [ + -159.98019980199803, + 58.573259408842944 + ], + [ + -160.35460354603546, + 59.07087163822254 + ], + [ + -161.35541355413554, + 58.67142780783618 + ], + [ + -161.96741967419675, + 58.67142780783618 + ], + [ + -162.05382053820537, + 59.267208436209046 + ], + [ + -161.87381873818737, + 59.63280109452876 + ], + [ + -162.51822518225183, + 59.98993095983184 + ], + [ + -163.81783817838178, + 59.79867183765532 + ], + [ + -164.6638466384664, + 60.267510570778285 + ], + [ + -165.34785347853477, + 60.507853892451436 + ], + [ + -165.35145351453514, + 61.0731684659643 + ], + [ + -166.1218612186122, + 61.499693234003985 + ], + [ + -165.7330573305733, + 62.07516315913688 + ], + [ + -164.91944919449193, + 62.63370749823642 + ], + [ + -164.56304563045632, + 63.14655275504603 + ], + [ + -163.7530375303753, + 63.21933277498931 + ], + [ + -163.06543065430654, + 63.0602322662761 + ], + [ + -162.2590225902259, + 63.542611468225715 + ], + [ + -161.53541535415354, + 63.45629097945579 + ], + [ + -160.7722077220772, + 63.76602920386554 + ], + [ + -160.95940959409594, + 64.2230200267652 + ], + [ + -161.51741517415175, + 64.40243123871838 + ], + [ + -160.77940779407794, + 64.78833460027809 + ], + [ + -161.39141391413915, + 64.77648669005475 + ], + [ + -162.45342453424536, + 64.55983918882825 + ], + [ + -162.75942759427593, + 64.33811401179176 + ], + [ + -163.54783547835478, + 64.55983918882825 + ], + [ + -164.9590495904959, + 64.44643776240503 + ], + [ + -166.42426424264244, + 64.68678108407815 + ], + [ + -166.84546845468455, + 65.08961003167119 + ], + [ + -168.10908109081092, + 65.67015763261406 + ], + [ + -166.7050670506705, + 66.08821960763706 + ], + [ + -164.4730447304473, + 66.57736904400002 + ], + [ + -163.65223652236523, + 66.57736904400002 + ], + [ + -163.7890378903789, + 66.07637169741375 + ], + [ + -161.67941679416793, + 66.11530054529038 + ], + [ + -162.48942489424894, + 66.7347769941099 + ], + [ + -163.72063720637206, + 67.11560267985959 + ], + [ + -164.429844298443, + 67.61660002644587 + ], + [ + -165.3910539105391, + 68.04312479448555 + ], + [ + -166.76266762667626, + 68.35963325330863 + ], + [ + -166.20466204662046, + 68.88263386173821 + ], + [ + -164.429844298443, + 68.91479247520152 + ], + [ + -163.16983169831698, + 69.37178329810118 + ], + [ + -162.9322293222932, + 69.85754761725744 + ], + [ + -161.90981909819098, + 70.33315658479376 + ], + [ + -160.93420934209342, + 70.44825056982032 + ], + [ + -159.04059040590406, + 70.89170092389332 + ], + [ + -158.1189811898119, + 70.82399857976003 + ], + [ + -156.58176581765818, + 71.35715453980961 + ], + [ + -155.0661506615066, + 71.14727727299643 + ], + [ + -154.34254342543426, + 70.69705668451013 + ], + [ + -153.89973899739, + 70.89000836528999 + ], + [ + -152.21132211322114, + 70.83076881417335 + ], + [ + -152.26892268922688, + 70.6005808441202 + ], + [ + -150.7389073890739, + 70.42963242518368 + ], + [ + -149.72009720097202, + 70.52949338278026 + ], + [ + -147.6140761407614, + 70.21467748256052 + ], + [ + -145.69165691656917, + 70.11989420077393 + ], + [ + -144.9212492124921, + 69.98956718831735 + ], + [ + -143.58923589235891, + 70.15205281423721 + ], + [ + -142.07362073620737, + 69.85246994144745 + ], + [ + -140.98640986409865, + 69.7119875773709 + ] + ] + ] + ] + }, + "countryRef": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9567599429389657, + "skewed": 0.12108648323641158, + "clumpy": 0.3470381659464552, + "sparse": 0.04671313432761881, + "striated": 0.689818117847349, + "convex": 0.035202544203696284, + "skinny": 0.4692386707373477, + "stringy": 0.9380120633013453, + "monotonic": 0.1577318235224061, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -101.41352973815572, + -87.22353528362044 + ], + "drag": [ + -101.41352973815572, + -87.22353528362044 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 36 + }, + { + "attrs": { + "name": "Selected United States (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.96\",\"payload\":{\"numVal\":0.9567599429389657},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.12\",\"payload\":{\"numVal\":0.12108648323641158},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.35\",\"payload\":{\"numVal\":0.3470381659464552},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.05\",\"payload\":{\"numVal\":0.04671313432761881},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.69\",\"payload\":{\"numVal\":0.689818117847349},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.04\",\"payload\":{\"numVal\":0.035202544203696284},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.47\",\"payload\":{\"numVal\":0.4692386707373477},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.94\",\"payload\":{\"numVal\":0.9380120633013453},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.16\",\"payload\":{\"numVal\":0.1577318235224061},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 37 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United States (1 Countries)", + "timestamp": 1522409147302, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2009, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 40820, + "child_mortality": 349, + "fertility": 1.94, + "life_expect": 81.2, + "population": 7297495 + }, + "x": 40820, + "y": 81.2, + "size": 7297495, + "color": "Europe", + "map_id": 752 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.06280617626168339, + "skewed": 0.7373097476826207, + "clumpy": 0.7609191506939363, + "sparse": 0.5117449552159063, + "striated": 0.049074838241558005, + "convex": 0.42046877611986755, + "skinny": 0.3921208864852834, + "stringy": 0.4703392485083975, + "monotonic": 0.9350074819539504, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 68.18197762056796, + -89.21230286148511 + ], + "drag": [ + 68.18197762056796, + -89.21230286148511 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 38 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Japan (2 Countries)", + "timestamp": 1522409151833, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 392, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 133.0159301593016, + 32.70419371551648 + ], + [ + 132.36432364323645, + 32.98854356087625 + ], + [ + 132.37152371523717, + 33.464152528412555 + ], + [ + 132.92592925929262, + 34.05993315678542 + ], + [ + 133.49473494734946, + 33.944839171758844 + ], + [ + 133.9051390513905, + 34.364593705385175 + ], + [ + 134.63954639546398, + 34.14963876276201 + ], + [ + 134.76554765547655, + 33.80604936628562 + ], + [ + 134.20394203942038, + 33.20180594489608 + ], + [ + 133.7935379353794, + 33.521699520925836 + ], + [ + 133.2787327873279, + 33.289818992269346 + ], + [ + 133.0159301593016, + 32.70419371551648 + ] + ] + ], + [ + [ + [ + 130.68670686706866, + 31.030253256821112 + ], + [ + 130.20070200702008, + 31.41784917698415 + ], + [ + 130.44910449104492, + 32.31998291256011 + ], + [ + 129.81549815498158, + 32.611102992333215 + ], + [ + 129.4086940869409, + 33.296589226682684 + ], + [ + 130.35550355503557, + 33.6046348924891 + ], + [ + 130.8775087750878, + 34.232574134325276 + ], + [ + 131.88551885518854, + 34.750497066944874 + ], + [ + 132.61632616326165, + 35.43259818408768 + ], + [ + 134.6071460714607, + 35.73218105687744 + ], + [ + 135.67635676356764, + 35.52738146587427 + ], + [ + 136.7239672396724, + 37.30456799937288 + ], + [ + 137.389973899739, + 36.82726647323325 + ], + [ + 138.8587885878859, + 37.827568607802476 + ], + [ + 139.4275942759428, + 38.2151645279655 + ], + [ + 140.0540005400054, + 39.43888439817455 + ], + [ + 139.88479884798846, + 40.562743310787 + ], + [ + 140.3060030600306, + 41.19576022843317 + ], + [ + 141.3680136801368, + 41.37855655759303 + ], + [ + 141.91521915219153, + 39.99235106146412 + ], + [ + 141.8828188281883, + 39.181615490468076 + ], + [ + 140.96120961209613, + 38.17454312148554 + ], + [ + 140.97560975609758, + 37.14208237345301 + ], + [ + 140.60120601206012, + 36.3431947126803 + ], + [ + 140.77400774007742, + 35.84219736609403 + ], + [ + 140.2520025200252, + 35.13809298710791 + ], + [ + 138.97398973989743, + 34.66756169538161 + ], + [ + 137.21717217172176, + 34.60662958566165 + ], + [ + 135.79155791557918, + 33.464152528412555 + ], + [ + 135.1219512195122, + 33.848363331368915 + ], + [ + 135.0787507875079, + 34.596474234041665 + ], + [ + 133.33993339933403, + 34.3764416156085 + ], + [ + 132.15552155521556, + 33.90421776527887 + ], + [ + 130.98550985509854, + 33.885599620642225 + ], + [ + 132.00072000720007, + 33.1493366281928 + ], + [ + 131.3311133111331, + 31.450007790447458 + ], + [ + 130.68670686706866, + 31.030253256821112 + ] + ] + ], + [ + [ + [ + 139.9567995679957, + 41.56981567976955 + ], + [ + 139.81639816398166, + 42.56334757992545 + ], + [ + 140.31320313203133, + 43.33346174444151 + ], + [ + 141.3788137881379, + 43.389316178351464 + ], + [ + 141.67041670416705, + 44.77213655727371 + ], + [ + 141.96921969219693, + 45.55071351480643 + ], + [ + 143.1428314283143, + 44.50978997375725 + ], + [ + 143.90963909639095, + 44.17466337029751 + ], + [ + 144.6116461164612, + 43.96140098627768 + ], + [ + 145.32085320853207, + 44.38454063711069 + ], + [ + 145.54405544055442, + 43.262374283101565 + ], + [ + 144.06084060840607, + 42.988179789361766 + ], + [ + 143.18243182431826, + 41.99464788920588 + ], + [ + 141.61281612816128, + 42.67844156495201 + ], + [ + 141.06561065610657, + 41.58504870719953 + ], + [ + 139.9567995679957, + 41.56981567976955 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6552392031885654, + "skewed": 0.7553566802184875, + "clumpy": 0.8840049208553478, + "sparse": 0.14462612133093344, + "striated": 0.5140708207012261, + "convex": 0.732478460199983, + "skinny": 0.8887363432946518, + "stringy": 0.0664753693354958, + "monotonic": 0.04427125628530737, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 140.3746598070517, + -87.58614218562579 + ], + "drag": [ + 140.3746598070517, + -87.58614218562579 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 39 + }, + { + "attrs": { + "name": "Selected Japan (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.66\",\"payload\":{\"numVal\":0.6552392031885654},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.76\",\"payload\":{\"numVal\":0.7553566802184875},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.88\",\"payload\":{\"numVal\":0.8840049208553478},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.14\",\"payload\":{\"numVal\":0.14462612133093344},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.51\",\"payload\":{\"numVal\":0.5140708207012261},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.73\",\"payload\":{\"numVal\":0.732478460199983},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.89\",\"payload\":{\"numVal\":0.8887363432946518},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.07\",\"payload\":{\"numVal\":0.0664753693354958},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.04\",\"payload\":{\"numVal\":0.04427125628530737},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Japan\",\"text\":\"Japan\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 40 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Japan (2 Countries)", + "timestamp": 1522409151833, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 840, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -155.68895688956889, + 18.91661133277391 + ], + [ + -155.93735937359372, + 19.058786255453796 + ], + [ + -155.90855908559087, + 19.33805842500358 + ], + [ + -156.07416074160741, + 19.703651083323294 + ], + [ + -156.02376023760237, + 19.813667392539884 + ], + [ + -155.8509585095851, + 19.97784557706308 + ], + [ + -155.91935919359193, + 20.174182375049597 + ], + [ + -155.8617586175862, + 20.267273098232863 + ], + [ + -155.7861578615786, + 20.2486549535962 + ], + [ + -155.4009540095401, + 20.079399093263007 + ], + [ + -155.22455224552246, + 19.99307860449308 + ], + [ + -155.06255062550625, + 19.85936647482984 + ], + [ + -154.80694806948068, + 19.509006843940114 + ], + [ + -154.8321483214832, + 19.453152410030157 + ], + [ + -155.2209522095221, + 19.23989002601033 + ], + [ + -155.54135541355413, + 19.084174634503782 + ], + [ + -155.68895688956889, + 18.91661133277391 + ] + ] + ], + [ + [ + [ + -156.4161641616416, + 20.57193364683262 + ], + [ + -156.58536585365854, + 20.783503472249123 + ], + [ + -156.70056700567005, + 20.86474628520905 + ], + [ + -156.71136711367114, + 20.927370953532346 + ], + [ + -156.61416614166143, + 21.011998883698936 + ], + [ + -156.25776257762578, + 20.917215601912346 + ], + [ + -155.9949599495995, + 20.764885327612475 + ], + [ + -156.07776077760778, + 20.6447136667759 + ], + [ + -156.4161641616416, + 20.57193364683262 + ] + ] + ], + [ + [ + [ + -156.79056790567904, + 21.06954587621223 + ], + [ + -157.3269732697327, + 21.09831937246888 + ], + [ + -157.25137251372513, + 21.22018359190878 + ], + [ + -156.75816758167582, + 21.176177068222145 + ], + [ + -156.79056790567904, + 21.06954587621223 + ] + ] + ], + [ + [ + [ + -157.70857708577086, + 21.26419011559541 + ], + [ + -157.7769777697777, + 21.277730584422073 + ], + [ + -158.12618126181263, + 21.313274315092045 + ], + [ + -158.2521825218252, + 21.538384609335196 + ], + [ + -158.29178291782918, + 21.579006015815168 + ], + [ + -158.02538025380255, + 21.71779582128839 + ], + [ + -157.94257942579426, + 21.653478594361772 + ], + [ + -157.65457654576545, + 21.321737108108707 + ], + [ + -157.70857708577086, + 21.26419011559541 + ] + ] + ], + [ + [ + [ + -159.46539465394653, + 21.883666564414924 + ], + [ + -159.80019800198002, + 22.064770334971456 + ], + [ + -159.74979749797498, + 22.137550354914737 + ], + [ + -159.5949959499595, + 22.23571875390799 + ], + [ + -159.36459364593645, + 22.215408050668003 + ], + [ + -159.34659346593466, + 21.98183496340819 + ], + [ + -159.46539465394653, + 21.883666564414924 + ] + ] + ], + [ + [ + [ + -67.13887138871388, + 45.137729215593424 + ], + [ + -66.9660696606966, + 44.80937284654701 + ], + [ + -68.03168031680316, + 44.325301085994056 + ], + [ + -69.06129061290612, + 43.98001913091434 + ], + [ + -70.1161011610116, + 43.683821375331235 + ], + [ + -70.64530645306452, + 43.08973330556171 + ], + [ + -70.81450814508145, + 42.86462301131854 + ], + [ + -70.82530825308253, + 42.33485216847562 + ], + [ + -70.4941049410494, + 41.8050813256327 + ], + [ + -70.080100801008, + 41.77969294658271 + ], + [ + -70.18450184501845, + 42.14528560490244 + ], + [ + -69.88569885698857, + 41.92356042786594 + ], + [ + -69.9648996489965, + 41.63751802390283 + ], + [ + -70.64170641706417, + 41.47503239798296 + ], + [ + -71.12051120511205, + 41.493650542619605 + ], + [ + -71.85851858518585, + 41.31931700647641 + ], + [ + -72.2941229412294, + 41.27023280697978 + ], + [ + -72.87732877328773, + 41.22114860748316 + ], + [ + -73.70893708937089, + 40.93172108631339 + ], + [ + -72.24012240122401, + 41.11959509128323 + ], + [ + -71.94491944919449, + 40.93002852771005 + ], + [ + -73.34533345333453, + 40.63044565492028 + ], + [ + -73.98253982539825, + 40.628753096316956 + ], + [ + -73.95373953739536, + 40.750617315756855 + ], + [ + -74.2561425614256, + 40.47303770481041 + ], + [ + -73.96093960939609, + 40.42733862252044 + ], + [ + -74.1769417694177, + 39.709693774707674 + ], + [ + -74.90774907749078, + 38.9395796101916 + ], + [ + -74.97974979749797, + 39.196848517898076 + ], + [ + -75.19935199351993, + 39.24762527599803 + ], + [ + -75.52695526955269, + 39.49812394929117 + ], + [ + -75.32175321753218, + 38.959890313431586 + ], + [ + -75.07335073350733, + 38.78217166008173 + ], + [ + -75.05535055350553, + 38.40473109153869 + ], + [ + -75.37575375753757, + 38.01544261277233 + ], + [ + -75.94095940959409, + 37.21655495199961 + ], + [ + -76.03096030960309, + 37.25717635847958 + ], + [ + -75.72135721357213, + 37.93758491701905 + ], + [ + -76.23256232562325, + 38.31841060276875 + ], + [ + -76.35136351363514, + 39.14945687700478 + ], + [ + -76.54216542165422, + 38.71785443315511 + ], + [ + -76.32976329763298, + 38.08314495690561 + ], + [ + -76.98856988569885, + 38.240552907015484 + ], + [ + -76.3009630096301, + 37.917274213779066 + ], + [ + -76.25776257762577, + 36.966056278706475 + ], + [ + -75.97335973359733, + 36.89666137596987 + ], + [ + -75.86895868958689, + 36.55137942089014 + ], + [ + -75.72855728557285, + 35.55107728632092 + ], + [ + -76.36216362163621, + 34.80804405945817 + ], + [ + -77.3989739897399, + 34.51184630387506 + ], + [ + -78.05418054180541, + 33.92622102712218 + ], + [ + -78.55458554585546, + 33.86190380019558 + ], + [ + -79.06219062190621, + 33.494618583272526 + ], + [ + -79.20259202592025, + 33.15779942120946 + ], + [ + -80.30060300603006, + 32.50954947613329 + ], + [ + -80.86580865808658, + 32.033940508597 + ], + [ + -81.33741337413373, + 31.439852438827458 + ], + [ + -81.49221492214922, + 30.730670384031356 + ], + [ + -81.31221312213121, + 30.035028798061887 + ], + [ + -80.9810098100981, + 29.180286703379224 + ], + [ + -80.53460534605345, + 28.472797207186446 + ], + [ + -80.5310053100531, + 28.039502204733452 + ], + [ + -80.05580055800557, + 26.88009956145102 + ], + [ + -80.08820088200882, + 26.206461237324888 + ], + [ + -80.13140131401313, + 25.817172758558527 + ], + [ + -80.37980379803798, + 25.206159102755663 + ], + [ + -80.67860678606786, + 25.079217207505764 + ], + [ + -81.17181171811718, + 25.201081426945677 + ], + [ + -81.33021330213302, + 25.639454105208657 + ], + [ + -81.70821708217082, + 25.869642075261808 + ], + [ + -82.2410224102241, + 26.72946184575447 + ], + [ + -82.70542705427054, + 27.494498334460545 + ], + [ + -82.85662856628566, + 27.885479371830243 + ], + [ + -82.65142651426514, + 28.550654902939726 + ], + [ + -82.92862928629286, + 29.10073644902262 + ], + [ + -83.70983709837098, + 29.936860399068635 + ], + [ + -84.09864098640986, + 30.08919067336852 + ], + [ + -85.11025110251101, + 29.63558496767554 + ], + [ + -85.28665286652866, + 29.686361725775498 + ], + [ + -85.77265772657726, + 30.1518153416918 + ], + [ + -86.3990639906399, + 30.400621456381614 + ], + [ + -87.52947529475294, + 30.2736795611317 + ], + [ + -88.41868418684186, + 30.385388428951615 + ], + [ + -89.18189181891819, + 30.31599352621501 + ], + [ + -89.59229592295922, + 30.160278134708463 + ], + [ + -89.41229412294122, + 29.89454643398534 + ], + [ + -89.43029430294303, + 29.488332369185656 + ], + [ + -89.21789217892179, + 29.290303012595814 + ], + [ + -89.40869408694087, + 29.15997600013924 + ], + [ + -89.77949779497794, + 29.307228598629123 + ], + [ + -90.1539015390154, + 29.117662035055943 + ], + [ + -90.88110881108811, + 29.148128089915915 + ], + [ + -91.62631626316262, + 29.676206374155512 + ], + [ + -92.49752497524975, + 29.552649596112275 + ], + [ + -93.22473224732246, + 29.78453012476875 + ], + [ + -93.84753847538475, + 29.713442663428808 + ], + [ + -94.68994689946899, + 29.479869576168994 + ], + [ + -95.60075600756008, + 28.73852890790957 + ], + [ + -96.59436594365944, + 28.306926464059913 + ], + [ + -97.14157141571415, + 27.829624937920286 + ], + [ + -97.36837368373683, + 27.37940434943397 + ], + [ + -97.37917379173791, + 26.69053299787784 + ], + [ + -97.32877328773287, + 26.20984635453155 + ], + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -117.29457294572946, + 33.04609055338955 + ], + [ + -117.94257942579426, + 33.621560478522426 + ], + [ + -118.41058410584105, + 33.741732139359 + ], + [ + -118.51858518585186, + 34.02777454332211 + ], + [ + -119.08019080190802, + 34.07855130142207 + ], + [ + -119.44019440194401, + 34.34766811935185 + ], + [ + -120.36900369003689, + 34.44752907694844 + ], + [ + -120.62460624606246, + 34.60832214426499 + ], + [ + -120.74340743407434, + 35.15671113174456 + ], + [ + -121.71541715417155, + 36.16209094212377 + ], + [ + -122.54702547025471, + 37.55168155545935 + ], + [ + -122.5110251102511, + 37.78356208411584 + ], + [ + -122.95382953829538, + 38.113611011765585 + ], + [ + -123.72783727837279, + 38.951427520414924 + ], + [ + -123.86463864638645, + 39.767240767220954 + ], + [ + -124.39744397443974, + 40.3139371960972 + ], + [ + -124.17784177841779, + 41.141598353126554 + ], + [ + -124.21384213842138, + 41.99972556501588 + ], + [ + -124.53424534245343, + 42.766454612325276 + ], + [ + -124.14184141841417, + 43.70920975438122 + ], + [ + -124.01944019440194, + 44.61642116576718 + ], + [ + -123.90063900639007, + 45.52363257715314 + ], + [ + -124.08064080640807, + 46.864138990992075 + ], + [ + -124.39744397443974, + 47.72057364427809 + ], + [ + -124.68544685446855, + 48.18433470159104 + ], + [ + -124.56664566645667, + 48.378978940974235 + ], + [ + -123.11943119431194, + 48.04046722030782 + ], + [ + -122.58662586625866, + 47.096019519648564 + ], + [ + -122.33822338223382, + 47.36005866176836 + ], + [ + -122.50022500225002, + 48.179257025781055 + ], + [ + -122.83862838628386, + 49.000147948397085 + ], + [ + -120.00180001800018, + 49.000147948397085 + ], + [ + -117.03177031770318, + 49.000147948397085 + ], + [ + -116.0489604896049, + 49.000147948397085 + ], + [ + -112.99972999729997, + 49.000147948397085 + ], + [ + -110.05130051300513, + 49.000147948397085 + ], + [ + -107.04887048870488, + 49.000147948397085 + ], + [ + -104.050040500405, + 49.000147948397085 + ], + [ + -100.65160651606516, + 49.000147948397085 + ], + [ + -97.22797227972279, + 49.000147948397085 + ], + [ + -95.1579515795158, + 49.000147948397085 + ], + [ + -95.15435154351543, + 49.38435875135343 + ], + [ + -94.8159481594816, + 49.389436427163446 + ], + [ + -94.63954639546395, + 48.83935488108054 + ], + [ + -94.329943299433, + 48.67009902074733 + ], + [ + -93.63153631536315, + 48.60916691102739 + ], + [ + -92.6091260912609, + 48.45006640231418 + ], + [ + -91.64071640716406, + 48.14032817790442 + ], + [ + -90.83070830708307, + 48.27065519036097 + ], + [ + -89.59949599495995, + 48.01000116544785 + ], + [ + -89.27189271892719, + 48.020156517067846 + ], + [ + -88.37908379083791, + 48.30281380382428 + ], + [ + -87.43947439474394, + 47.94060626271124 + ], + [ + -86.46026460264602, + 47.55301034254822 + ], + [ + -85.65385653856538, + 47.219576297691816 + ], + [ + -84.87624876248762, + 46.89968272166206 + ], + [ + -84.7790477904779, + 46.6373361381456 + ], + [ + -84.5450454504545, + 46.53916773915233 + ], + [ + -84.60624606246063, + 46.43930678155576 + ], + [ + -84.33624336243362, + 46.40884072669576 + ], + [ + -84.14184141841417, + 46.51208680149901 + ], + [ + -84.09144091440913, + 46.275128597032534 + ], + [ + -83.88983889838899, + 46.11772064692266 + ], + [ + -83.61623616236162, + 46.11772064692266 + ], + [ + -83.46863468634686, + 45.99416386887944 + ], + [ + -83.59463594635946, + 45.81644521552957 + ], + [ + -82.55062550625506, + 45.347606482406604 + ], + [ + -82.33822338223382, + 44.440395071020646 + ], + [ + -82.13662136621366, + 43.57041994890798 + ], + [ + -82.42822428224282, + 42.979716996345104 + ], + [ + -82.89982899828998, + 42.429635450262225 + ], + [ + -83.11943119431194, + 42.079275819372484 + ], + [ + -83.1410314103141, + 41.97602974456923 + ], + [ + -83.02943029430294, + 41.83216226328601 + ], + [ + -82.6910269102691, + 41.67475431317614 + ], + [ + -82.4390243902439, + 41.67475431317614 + ], + [ + -81.27621276212761, + 42.209602831829045 + ], + [ + -80.24660246602465, + 42.36701078193893 + ], + [ + -78.93978939789397, + 42.862930452715204 + ], + [ + -78.92178921789217, + 42.96448396891512 + ], + [ + -79.01179011790117, + 43.27083707611823 + ], + [ + -79.17019170191702, + 43.46717387410473 + ], + [ + -78.72018720187201, + 43.6245818242146 + ], + [ + -77.73737737377374, + 43.629659500024616 + ], + [ + -76.81936819368194, + 43.62796694142128 + ], + [ + -76.49896498964989, + 44.018947978790976 + ], + [ + -76.37656376563766, + 44.09680567454424 + ], + [ + -75.31815318153181, + 44.81614308096036 + ], + [ + -74.86814868148682, + 45.000631968723525 + ], + [ + -73.34893348933488, + 45.00740220313688 + ], + [ + -71.50571505715057, + 45.00740220313688 + ], + [ + -71.40491404914049, + 45.25451575922335 + ], + [ + -71.08451084510845, + 45.305292517323295 + ], + [ + -70.65970659706596, + 45.45931535022652 + ], + [ + -70.30330303303033, + 45.914613614522835 + ], + [ + -70.00090000900009, + 46.693190572055556 + ], + [ + -69.23769237692376, + 47.44807170914163 + ], + [ + -68.90648906489065, + 47.18572512562517 + ], + [ + -68.23328233282332, + 47.35498098595838 + ], + [ + -67.79047790477904, + 47.06555346478859 + ], + [ + -67.79047790477904, + 45.70304378910632 + ], + [ + -67.13887138871388, + 45.137729215593424 + ] + ] + ], + [ + [ + [ + -154.0041400414004, + 56.73514076562438 + ], + [ + -154.51534515345153, + 56.992409673330826 + ], + [ + -154.67014670146702, + 57.46124840645379 + ], + [ + -153.7629376293763, + 57.81668571315353 + ], + [ + -153.230132301323, + 57.96901598745342 + ], + [ + -152.5641256412564, + 57.90131364332012 + ], + [ + -152.14292142921428, + 57.59157541891037 + ], + [ + -153.0069300693007, + 57.11596645137408 + ], + [ + -154.0041400414004, + 56.73514076562438 + ] + ] + ], + [ + [ + [ + -166.1938619386194, + 59.75466531396867 + ], + [ + -166.8490684906849, + 59.940846760335205 + ], + [ + -167.4538745387454, + 60.213348695471666 + ], + [ + -166.46746467464675, + 60.384297114408184 + ], + [ + -165.67545675456753, + 60.29289894982827 + ], + [ + -165.57825578255782, + 59.910380705475234 + ], + [ + -166.1938619386194, + 59.75466531396867 + ] + ] + ], + [ + [ + [ + -169.5310953109531, + 62.97729689471282 + ], + [ + -170.29070290702907, + 63.193944395939326 + ], + [ + -170.67230672306724, + 63.375048166495844 + ], + [ + -171.55431554315544, + 63.31750117398255 + ], + [ + -171.79191791917918, + 63.405514221355816 + ], + [ + -171.73071730717308, + 63.78295478989887 + ], + [ + -171.1151111511115, + 63.59169566772235 + ], + [ + -170.49230492304923, + 63.6949417425256 + ], + [ + -169.68229682296823, + 63.4309026004058 + ], + [ + -168.68868688686888, + 63.29719047074258 + ], + [ + -168.77148771487714, + 63.18886672012934 + ], + [ + -169.5310953109531, + 62.97729689471282 + ] + ] + ], + [ + [ + [ + -140.98640986409865, + 69.7119875773709 + ], + [ + -140.99360993609935, + 66.00020656026379 + ], + [ + -140.9972099720997, + 60.30643941865492 + ], + [ + -140.01440014400146, + 60.277665922398256 + ], + [ + -139.03879038790387, + 60.00008631145181 + ], + [ + -138.34038340383404, + 59.561713633188816 + ], + [ + -137.4511745117451, + 58.90500089509601 + ], + [ + -136.47916479164792, + 59.46354523419558 + ], + [ + -135.47475474754748, + 59.78851648603532 + ], + [ + -134.94554945549456, + 59.27059355341572 + ], + [ + -134.27234272342724, + 58.86099437140936 + ], + [ + -133.35433354333543, + 58.41077378292306 + ], + [ + -132.73152731527315, + 57.69312893511028 + ], + [ + -131.70911709117092, + 56.55234443646452 + ], + [ + -130.00630006300062, + 55.91594240161169 + ], + [ + -129.9810998109981, + 55.28461804256884 + ], + [ + -130.53550535505354, + 54.802238840619225 + ], + [ + -131.08631086310862, + 55.17967940916225 + ], + [ + -131.96831968319682, + 55.497880426588665 + ], + [ + -132.2491224912249, + 56.36954810730467 + ], + [ + -133.5379353793538, + 57.17859111969736 + ], + [ + -134.07794077940778, + 58.12303882035661 + ], + [ + -135.0391503915039, + 58.18735604728323 + ], + [ + -136.62676626766267, + 58.21274442633322 + ], + [ + -137.80037800378005, + 58.50047938889966 + ], + [ + -139.86679866798667, + 59.53801781274217 + ], + [ + -140.82440824408243, + 59.72758437631538 + ], + [ + -142.5740257402574, + 60.08471424161843 + ], + [ + -143.960039600396, + 59.9983937528485 + ], + [ + -145.92565925659255, + 60.4587696929548 + ], + [ + -147.11367113671136, + 60.88529446099446 + ], + [ + -148.2260822608226, + 60.67372463557797 + ], + [ + -148.01728017280172, + 59.9780830496085 + ], + [ + -148.57168571685716, + 59.91376582268188 + ], + [ + -149.72729727297272, + 59.70558111447204 + ], + [ + -150.60930609306092, + 59.36876195240899 + ], + [ + -151.7181171811718, + 59.15549956838913 + ], + [ + -151.85851858518586, + 59.74450996234867 + ], + [ + -151.40851408514084, + 60.72619395228125 + ], + [ + -150.34650346503466, + 61.03423961808767 + ], + [ + -150.62010620106201, + 61.28473829138082 + ], + [ + -151.89451894518945, + 60.72788651088459 + ], + [ + -152.57852578525785, + 60.06101842117178 + ], + [ + -154.01854018540186, + 59.35014380777233 + ], + [ + -153.28773287732878, + 58.86437948861604 + ], + [ + -154.23094230942309, + 58.14673464080326 + ], + [ + -155.30735307353075, + 57.72698010717693 + ], + [ + -156.30816308163082, + 57.42231955857716 + ], + [ + -156.55656556565566, + 56.98056176310752 + ], + [ + -158.1189811898119, + 56.46433138909126 + ], + [ + -158.4321843218432, + 55.993800097364954 + ], + [ + -159.60219602196022, + 55.56727532932527 + ], + [ + -160.289802898029, + 55.64344046647523 + ], + [ + -161.2222122221222, + 55.36416829692544 + ], + [ + -162.23742237422374, + 55.023964017655715 + ], + [ + -163.0690306903069, + 54.69052997279931 + ], + [ + -164.78624786247863, + 54.4044875688362 + ], + [ + -164.94104941049412, + 54.57205087056607 + ], + [ + -163.84663846638466, + 55.0391970450857 + ], + [ + -162.8710287102871, + 55.34724271089212 + ], + [ + -161.80541805418054, + 55.89563169837169 + ], + [ + -160.56340563405635, + 56.0073405661916 + ], + [ + -160.070200702007, + 56.41863230680127 + ], + [ + -158.6841868418684, + 57.016105493777474 + ], + [ + -158.4609846098461, + 57.21751996757399 + ], + [ + -157.7229772297723, + 57.56957215706706 + ], + [ + -157.550175501755, + 58.32783841135978 + ], + [ + -157.04257042570424, + 58.91854136392266 + ], + [ + -158.19458194581946, + 58.615573373926225 + ], + [ + -158.51858518585186, + 58.78821435146611 + ], + [ + -159.05859058590585, + 58.424314251749706 + ], + [ + -159.710197101971, + 58.93208183274933 + ], + [ + -159.98019980199803, + 58.573259408842944 + ], + [ + -160.35460354603546, + 59.07087163822254 + ], + [ + -161.35541355413554, + 58.67142780783618 + ], + [ + -161.96741967419675, + 58.67142780783618 + ], + [ + -162.05382053820537, + 59.267208436209046 + ], + [ + -161.87381873818737, + 59.63280109452876 + ], + [ + -162.51822518225183, + 59.98993095983184 + ], + [ + -163.81783817838178, + 59.79867183765532 + ], + [ + -164.6638466384664, + 60.267510570778285 + ], + [ + -165.34785347853477, + 60.507853892451436 + ], + [ + -165.35145351453514, + 61.0731684659643 + ], + [ + -166.1218612186122, + 61.499693234003985 + ], + [ + -165.7330573305733, + 62.07516315913688 + ], + [ + -164.91944919449193, + 62.63370749823642 + ], + [ + -164.56304563045632, + 63.14655275504603 + ], + [ + -163.7530375303753, + 63.21933277498931 + ], + [ + -163.06543065430654, + 63.0602322662761 + ], + [ + -162.2590225902259, + 63.542611468225715 + ], + [ + -161.53541535415354, + 63.45629097945579 + ], + [ + -160.7722077220772, + 63.76602920386554 + ], + [ + -160.95940959409594, + 64.2230200267652 + ], + [ + -161.51741517415175, + 64.40243123871838 + ], + [ + -160.77940779407794, + 64.78833460027809 + ], + [ + -161.39141391413915, + 64.77648669005475 + ], + [ + -162.45342453424536, + 64.55983918882825 + ], + [ + -162.75942759427593, + 64.33811401179176 + ], + [ + -163.54783547835478, + 64.55983918882825 + ], + [ + -164.9590495904959, + 64.44643776240503 + ], + [ + -166.42426424264244, + 64.68678108407815 + ], + [ + -166.84546845468455, + 65.08961003167119 + ], + [ + -168.10908109081092, + 65.67015763261406 + ], + [ + -166.7050670506705, + 66.08821960763706 + ], + [ + -164.4730447304473, + 66.57736904400002 + ], + [ + -163.65223652236523, + 66.57736904400002 + ], + [ + -163.7890378903789, + 66.07637169741375 + ], + [ + -161.67941679416793, + 66.11530054529038 + ], + [ + -162.48942489424894, + 66.7347769941099 + ], + [ + -163.72063720637206, + 67.11560267985959 + ], + [ + -164.429844298443, + 67.61660002644587 + ], + [ + -165.3910539105391, + 68.04312479448555 + ], + [ + -166.76266762667626, + 68.35963325330863 + ], + [ + -166.20466204662046, + 68.88263386173821 + ], + [ + -164.429844298443, + 68.91479247520152 + ], + [ + -163.16983169831698, + 69.37178329810118 + ], + [ + -162.9322293222932, + 69.85754761725744 + ], + [ + -161.90981909819098, + 70.33315658479376 + ], + [ + -160.93420934209342, + 70.44825056982032 + ], + [ + -159.04059040590406, + 70.89170092389332 + ], + [ + -158.1189811898119, + 70.82399857976003 + ], + [ + -156.58176581765818, + 71.35715453980961 + ], + [ + -155.0661506615066, + 71.14727727299643 + ], + [ + -154.34254342543426, + 70.69705668451013 + ], + [ + -153.89973899739, + 70.89000836528999 + ], + [ + -152.21132211322114, + 70.83076881417335 + ], + [ + -152.26892268922688, + 70.6005808441202 + ], + [ + -150.7389073890739, + 70.42963242518368 + ], + [ + -149.72009720097202, + 70.52949338278026 + ], + [ + -147.6140761407614, + 70.21467748256052 + ], + [ + -145.69165691656917, + 70.11989420077393 + ], + [ + -144.9212492124921, + 69.98956718831735 + ], + [ + -143.58923589235891, + 70.15205281423721 + ], + [ + -142.07362073620737, + 69.85246994144745 + ], + [ + -140.98640986409865, + 69.7119875773709 + ] + ] + ] + ] + }, + "countryRef": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9567599429389657, + "skewed": 0.12108648323641158, + "clumpy": 0.3470381659464552, + "sparse": 0.04671313432761881, + "striated": 0.689818117847349, + "convex": 0.035202544203696284, + "skinny": 0.4692386707373477, + "stringy": 0.9380120633013453, + "monotonic": 0.1577318235224061, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -101.41352973815572, + -87.22353528362044 + ], + "drag": [ + -101.41352973815572, + -87.22353528362044 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 41 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Brazil (3 Countries)", + "timestamp": 1522409155875, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 76, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -57.6239762397624, + -30.216672363351037 + ], + [ + -56.291962919629185, + -28.852470129065438 + ], + [ + -55.161551615516146, + -27.88263404935619 + ], + [ + -54.491944919449196, + -27.474727425953184 + ], + [ + -53.649536495364956, + -26.922953321266945 + ], + [ + -53.627936279362785, + -26.12406566049423 + ], + [ + -54.12834128341282, + -25.546903176758022 + ], + [ + -54.62514625146251, + -25.73985485753787 + ], + [ + -54.430744307443064, + -25.162692373801654 + ], + [ + -54.293942939429385, + -24.570296862635452 + ], + [ + -54.293942939429385, + -24.020215316552544 + ], + [ + -54.653946539465394, + -23.83911154599602 + ], + [ + -55.02835028350283, + -24.00159717191589 + ], + [ + -55.399153991539904, + -23.957590648229264 + ], + [ + -55.51795517955179, + -23.571687286669565 + ], + [ + -55.61155611556116, + -22.656013082266945 + ], + [ + -55.798757987579876, + -22.356430209477182 + ], + [ + -56.47196471964719, + -22.08562083294406 + ], + [ + -56.88236882368824, + -22.28195763093057 + ], + [ + -57.93717937179372, + -22.090698508754052 + ], + [ + -57.872378723787236, + -20.733266508881783 + ], + [ + -58.16758167581675, + -20.176414728385552 + ], + [ + -57.85437854378543, + -19.969922578779048 + ], + [ + -57.95157951579516, + -19.399530329456155 + ], + [ + -57.67437674376744, + -18.96115765119316 + ], + [ + -57.4979749797498, + -18.17411790064378 + ], + [ + -57.73557735577356, + -17.55294889322093 + ], + [ + -58.27918279182792, + -17.27198416506782 + ], + [ + -58.387183871838715, + -16.87761801049146 + ], + [ + -58.23958239582396, + -16.298762968151905 + ], + [ + -60.158401584015834, + -16.25814156167195 + ], + [ + -60.54360543605435, + -15.093661242579515 + ], + [ + -60.2520025200252, + -15.076735656546205 + ], + [ + -60.26280262802628, + -14.645133212696535 + ], + [ + -60.460804608046075, + -14.354013132923427 + ], + [ + -60.5040050400504, + -13.775158090583886 + ], + [ + -61.08361083610836, + -13.478960335000778 + ], + [ + -61.71361713617135, + -13.489115686620778 + ], + [ + -62.127621276212764, + -13.19799560684767 + ], + [ + -62.80442804428044, + -12.999966250257827 + ], + [ + -63.196831968319685, + -12.627603357524777 + ], + [ + -64.31644316443165, + -12.461732614398244 + ], + [ + -65.40365403654036, + -11.56636911323561 + ], + [ + -65.32085320853209, + -10.896115906316126 + ], + [ + -65.44325443254432, + -10.511905103359766 + ], + [ + -65.33885338853388, + -9.762101642083678 + ], + [ + -66.64566645666456, + -9.931357502416887 + ], + [ + -67.17487174871748, + -10.307105512356586 + ], + [ + -68.04968049680497, + -10.711627018552946 + ], + [ + -68.27288272882728, + -11.014595008549378 + ], + [ + -68.78768787687876, + -11.036598270392687 + ], + [ + -69.52929529295292, + -10.951970340226083 + ], + [ + -70.09450094500944, + -11.124611317765954 + ], + [ + -70.5481054810548, + -11.009517332739378 + ], + [ + -70.48330483304832, + -9.489599706947232 + ], + [ + -71.3041130411304, + -10.078610100906772 + ], + [ + -72.18612186121861, + -10.053221721856787 + ], + [ + -72.56412564125641, + -9.520065761807203 + ], + [ + -73.22653226532265, + -9.462518769293922 + ], + [ + -73.01413014130141, + -9.03260888404759 + ], + [ + -73.57213572135721, + -8.424980345451388 + ], + [ + -73.98613986139861, + -7.524539168478768 + ], + [ + -73.72333723337233, + -7.341742839318911 + ], + [ + -73.72333723337233, + -6.918603188485903 + ], + [ + -73.11853118531185, + -6.629175667316133 + ], + [ + -73.21933219332193, + -6.089249472853226 + ], + [ + -72.96372963729637, + -5.740582400566822 + ], + [ + -72.89172891728917, + -5.275128784650519 + ], + [ + -71.74691746917469, + -4.5947202261110505 + ], + [ + -70.92970929709297, + -4.401768545331208 + ], + [ + -70.79650796507964, + -4.251130829634661 + ], + [ + -69.89289892898928, + -4.298522470527956 + ], + [ + -69.44289442894429, + -1.5565775331300955 + ], + [ + -69.42129421294213, + -1.123282530677102 + ], + [ + -69.5760957609576, + -0.549505164147547 + ], + [ + -70.01890018900188, + -0.18560506443115798 + ], + [ + -70.01530015300153, + 0.5421951350016059 + ], + [ + -69.45369453694536, + 0.7063733195248005 + ], + [ + -69.2520925209252, + 0.6031272447215485 + ], + [ + -69.21969219692197, + 0.9856454890745852 + ], + [ + -69.80289802898028, + 1.0888915638778371 + ], + [ + -69.81729817298172, + 1.715138247110687 + ], + [ + -67.86967869678696, + 1.6931349852673634 + ], + [ + -67.53847538475384, + 2.036724381743767 + ], + [ + -67.26127261272612, + 1.7202159229206728 + ], + [ + -67.06327063270632, + 1.1295129703578084 + ], + [ + -66.8760687606876, + 1.253069748401046 + ], + [ + -66.32526325263252, + 0.7249914641614623 + ], + [ + -65.54765547655477, + 0.7893086910880669 + ], + [ + -65.35325353253532, + 1.095661798291161 + ], + [ + -64.61164611646116, + 1.3292348855509886 + ], + [ + -64.19764197641976, + 1.4934130700741974 + ], + [ + -64.08244082440824, + 1.916552720907191 + ], + [ + -63.36963369633696, + 2.2009025662669757 + ], + [ + -63.423634236342366, + 2.4107798330801415 + ], + [ + -64.26964269642696, + 2.49710032185007 + ], + [ + -64.410044100441, + 3.1267321222895816 + ], + [ + -64.36684366843669, + 3.7969853292090505 + ], + [ + -64.81684816848168, + 4.0559467955188495 + ], + [ + -64.62964629646297, + 4.149037518702116 + ], + [ + -63.888038880388805, + 4.020403064848878 + ], + [ + -63.09243092430924, + 3.769904391555741 + ], + [ + -62.80442804428044, + 4.006862596022231 + ], + [ + -62.08442084420844, + 4.162577987528778 + ], + [ + -60.96840968409684, + 4.536633438865152 + ], + [ + -60.60120601206012, + 4.917459124614851 + ], + [ + -60.73440734407343, + 5.200116411371297 + ], + [ + -60.21240212402124, + 5.244122935057931 + ], + [ + -59.981999819998194, + 5.013934965004779 + ], + [ + -60.11160111601116, + 4.575562286741786 + ], + [ + -59.76599765997659, + 4.4232320124419005 + ], + [ + -59.53919539195391, + 3.9594709551289355 + ], + [ + -59.81639816398163, + 3.6057262070325464 + ], + [ + -59.97479974799748, + 2.756061788159869 + ], + [ + -59.719197191971915, + 2.2499867657635946 + ], + [ + -59.64719647196472, + 1.7862257084506297 + ], + [ + -59.03159031590316, + 1.3173869753276648 + ], + [ + -58.538385383853836, + 1.2683027758310317 + ], + [ + -58.43038430384303, + 1.46463957381755 + ], + [ + -58.11358113581136, + 1.506953538900845 + ], + [ + -57.659976599766, + 1.6829796336473777 + ], + [ + -57.335973359733586, + 1.9487113343705005 + ], + [ + -56.78156781567816, + 1.864083404203896 + ], + [ + -56.540365403654036, + 1.8996271348738674 + ], + [ + -55.99675996759967, + 1.818384321913939 + ], + [ + -55.90675906759067, + 2.021491354313781 + ], + [ + -56.07236072360723, + 2.2212132695069613 + ], + [ + -55.97155971559715, + 2.5106407906767316 + ], + [ + -55.56835568355683, + 2.4209351847001273 + ], + [ + -55.096750967509664, + 2.5241812595033792 + ], + [ + -54.52434524345243, + 2.3126114340868895 + ], + [ + -54.088740887408875, + 2.1061192844803855 + ], + [ + -53.779137791377906, + 2.376928661013494 + ], + [ + -53.55593555935559, + 2.334614695930199 + ], + [ + -53.41913419134191, + 2.0536499677770905 + ], + [ + -52.94032940329403, + 2.124737429117033 + ], + [ + -52.555125551255514, + 2.503870556263408 + ], + [ + -52.24912249122491, + 3.2418261073161574 + ], + [ + -51.658716587165856, + 4.15580775311544 + ], + [ + -51.31671316713167, + 4.203199394008735 + ], + [ + -51.06831068310683, + 3.6497327307191796 + ], + [ + -50.510305103051024, + 1.9013196934772054 + ], + [ + -49.973899738997375, + 1.7371415089539965 + ], + [ + -49.948699486994855, + 1.046577598794542 + ], + [ + -50.69750697506976, + 0.22230155897185 + ], + [ + -50.38790387903879, + -0.0789738724212441 + ], + [ + -48.62028620286202, + -0.2346892639277911 + ], + [ + -48.584285842858435, + -1.2383765157036777 + ], + [ + -47.82467824678247, + -0.5816637776108564 + ], + [ + -46.56826568265683, + -0.9404862015172455 + ], + [ + -44.905049050490504, + -1.5514998573200955 + ], + [ + -44.419044190441895, + -2.137125134072974 + ], + [ + -44.58104581045811, + -2.6905917973625435 + ], + [ + -43.41823418234182, + -2.3825461315561114 + ], + [ + -41.47421474214741, + -2.912316974399033 + ], + [ + -39.980199801998026, + -2.8733881265224 + ], + [ + -38.50058500585004, + -3.701049283551754 + ], + [ + -37.222572225722246, + -4.82152307895754 + ], + [ + -36.452164521645216, + -5.1092580415239865 + ], + [ + -35.5989559895599, + -5.149879448003958 + ], + [ + -35.235352353523524, + -5.464695348223714 + ], + [ + -34.8969489694897, + -6.737499417929385 + ], + [ + -34.73134731347312, + -7.343435397922235 + ], + [ + -35.127351273512744, + -8.99706515337762 + ], + [ + -35.638556385563845, + -9.64870021566044 + ], + [ + -37.046170461704605, + -11.03998338759935 + ], + [ + -37.683376833768335, + -12.170612534625135 + ], + [ + -38.42498424984248, + -13.03889509813446 + ], + [ + -38.673386733867346, + -13.057513242771108 + ], + [ + -38.9541895418954, + -13.793776235220534 + ], + [ + -38.88218882188821, + -15.66743860910907 + ], + [ + -39.15939159391593, + -17.2076669381412 + ], + [ + -39.267392673926736, + -17.867764793440685 + ], + [ + -39.584195841958405, + -18.262130948017045 + ], + [ + -39.760597605976045, + -19.599252244649335 + ], + [ + -40.775807758077576, + -20.904214927818316 + ], + [ + -40.94500945009449, + -21.936675675850843 + ], + [ + -41.755017550175495, + -22.369970678303837 + ], + [ + -41.989019890198904, + -22.9708289824867 + ], + [ + -43.07623076230763, + -22.967443865280032 + ], + [ + -44.64944649446494, + -23.3516546682364 + ], + [ + -45.35145351453514, + -23.796797580912717 + ], + [ + -46.47106471064711, + -24.089610219289156 + ], + [ + -47.64827648276483, + -24.8851127628552 + ], + [ + -48.49428494284942, + -25.876952104407763 + ], + [ + -48.641886418864175, + -26.623370448477175 + ], + [ + -48.47628476284763, + -27.175144553163413 + ], + [ + -48.659886598865995, + -28.185602039352624 + ], + [ + -48.886688866888676, + -28.674751475715574 + ], + [ + -49.588695886958874, + -29.22483302179848 + ], + [ + -50.69750697506976, + -30.985093969263772 + ], + [ + -51.575915759157596, + -31.777211395623155 + ], + [ + -52.25632256322562, + -32.24605012874612 + ], + [ + -52.71352713527135, + -33.19726806381871 + ], + [ + -53.372333723337235, + -33.7676603131416 + ], + [ + -53.649536495364956, + -33.202345739628704 + ], + [ + -53.21033210332102, + -32.72842933069574 + ], + [ + -53.786337863378634, + -32.04802077215627 + ], + [ + -54.571145711457106, + -31.49455410886671 + ], + [ + -55.600756007560065, + -30.853074398203873 + ], + [ + -55.97155971559715, + -30.88354045306385 + ], + [ + -56.97596975969759, + -30.110041171341123 + ], + [ + -57.6239762397624, + -30.216672363351037 + ] + ] + ] + }, + "countryRef": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.029197414114500164, + "skewed": 0.2801135598208142, + "clumpy": 0.2048092066164695, + "sparse": 0.06839072260729884, + "striated": 0.14554221300538428, + "convex": 0.10451043001945126, + "skinny": 0.2899498002502694, + "stringy": 0.00020492044700581857, + "monotonic": 0.20382459566034505, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -46.40958140559668, + -89.03791199506682 + ], + "drag": [ + -46.40958140559668, + -89.03791199506682 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 42 + }, + { + "attrs": { + "name": "Selected Brazil (3 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.03\",\"payload\":{\"numVal\":0.029197414114500164},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.28\",\"payload\":{\"numVal\":0.2801135598208142},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.2\",\"payload\":{\"numVal\":0.2048092066164695},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.07\",\"payload\":{\"numVal\":0.06839072260729884},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.15\",\"payload\":{\"numVal\":0.14554221300538428},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.1\",\"payload\":{\"numVal\":0.10451043001945126},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.29\",\"payload\":{\"numVal\":0.2899498002502694},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0\",\"payload\":{\"numVal\":0.00020492044700581857},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.2\",\"payload\":{\"numVal\":0.20382459566034505},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Japan\",\"text\":\"Japan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 43 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Brazil (3 Countries)", + "timestamp": 1522409155875, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 392, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 133.0159301593016, + 32.70419371551648 + ], + [ + 132.36432364323645, + 32.98854356087625 + ], + [ + 132.37152371523717, + 33.464152528412555 + ], + [ + 132.92592925929262, + 34.05993315678542 + ], + [ + 133.49473494734946, + 33.944839171758844 + ], + [ + 133.9051390513905, + 34.364593705385175 + ], + [ + 134.63954639546398, + 34.14963876276201 + ], + [ + 134.76554765547655, + 33.80604936628562 + ], + [ + 134.20394203942038, + 33.20180594489608 + ], + [ + 133.7935379353794, + 33.521699520925836 + ], + [ + 133.2787327873279, + 33.289818992269346 + ], + [ + 133.0159301593016, + 32.70419371551648 + ] + ] + ], + [ + [ + [ + 130.68670686706866, + 31.030253256821112 + ], + [ + 130.20070200702008, + 31.41784917698415 + ], + [ + 130.44910449104492, + 32.31998291256011 + ], + [ + 129.81549815498158, + 32.611102992333215 + ], + [ + 129.4086940869409, + 33.296589226682684 + ], + [ + 130.35550355503557, + 33.6046348924891 + ], + [ + 130.8775087750878, + 34.232574134325276 + ], + [ + 131.88551885518854, + 34.750497066944874 + ], + [ + 132.61632616326165, + 35.43259818408768 + ], + [ + 134.6071460714607, + 35.73218105687744 + ], + [ + 135.67635676356764, + 35.52738146587427 + ], + [ + 136.7239672396724, + 37.30456799937288 + ], + [ + 137.389973899739, + 36.82726647323325 + ], + [ + 138.8587885878859, + 37.827568607802476 + ], + [ + 139.4275942759428, + 38.2151645279655 + ], + [ + 140.0540005400054, + 39.43888439817455 + ], + [ + 139.88479884798846, + 40.562743310787 + ], + [ + 140.3060030600306, + 41.19576022843317 + ], + [ + 141.3680136801368, + 41.37855655759303 + ], + [ + 141.91521915219153, + 39.99235106146412 + ], + [ + 141.8828188281883, + 39.181615490468076 + ], + [ + 140.96120961209613, + 38.17454312148554 + ], + [ + 140.97560975609758, + 37.14208237345301 + ], + [ + 140.60120601206012, + 36.3431947126803 + ], + [ + 140.77400774007742, + 35.84219736609403 + ], + [ + 140.2520025200252, + 35.13809298710791 + ], + [ + 138.97398973989743, + 34.66756169538161 + ], + [ + 137.21717217172176, + 34.60662958566165 + ], + [ + 135.79155791557918, + 33.464152528412555 + ], + [ + 135.1219512195122, + 33.848363331368915 + ], + [ + 135.0787507875079, + 34.596474234041665 + ], + [ + 133.33993339933403, + 34.3764416156085 + ], + [ + 132.15552155521556, + 33.90421776527887 + ], + [ + 130.98550985509854, + 33.885599620642225 + ], + [ + 132.00072000720007, + 33.1493366281928 + ], + [ + 131.3311133111331, + 31.450007790447458 + ], + [ + 130.68670686706866, + 31.030253256821112 + ] + ] + ], + [ + [ + [ + 139.9567995679957, + 41.56981567976955 + ], + [ + 139.81639816398166, + 42.56334757992545 + ], + [ + 140.31320313203133, + 43.33346174444151 + ], + [ + 141.3788137881379, + 43.389316178351464 + ], + [ + 141.67041670416705, + 44.77213655727371 + ], + [ + 141.96921969219693, + 45.55071351480643 + ], + [ + 143.1428314283143, + 44.50978997375725 + ], + [ + 143.90963909639095, + 44.17466337029751 + ], + [ + 144.6116461164612, + 43.96140098627768 + ], + [ + 145.32085320853207, + 44.38454063711069 + ], + [ + 145.54405544055442, + 43.262374283101565 + ], + [ + 144.06084060840607, + 42.988179789361766 + ], + [ + 143.18243182431826, + 41.99464788920588 + ], + [ + 141.61281612816128, + 42.67844156495201 + ], + [ + 141.06561065610657, + 41.58504870719953 + ], + [ + 139.9567995679957, + 41.56981567976955 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6552392031885654, + "skewed": 0.7553566802184875, + "clumpy": 0.8840049208553478, + "sparse": 0.14462612133093344, + "striated": 0.5140708207012261, + "convex": 0.732478460199983, + "skinny": 0.8887363432946518, + "stringy": 0.0664753693354958, + "monotonic": 0.04427125628530737, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 140.3746598070517, + -87.58614218562579 + ], + "drag": [ + 140.3746598070517, + -87.58614218562579 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 44 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected China (4 Countries)", + "timestamp": 1522409160847, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 156, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 109.47529475294755, + 18.19727392635781 + ], + [ + 108.65448654486545, + 18.507012150767565 + ], + [ + 108.6256862568626, + 19.368524479863567 + ], + [ + 109.1188911889119, + 19.820437626953208 + ], + [ + 110.21330213302133, + 20.101402355106316 + ], + [ + 110.78570785707859, + 20.07770653465967 + ], + [ + 111.00891008910088, + 19.695188290306632 + ], + [ + 110.56970569705697, + 19.255123053440315 + ], + [ + 110.33930339303396, + 18.677960569704098 + ], + [ + 109.47529475294755, + 18.19727392635781 + ] + ] + ], + [ + [ + [ + 130.639906399064, + 42.39578427819558 + ], + [ + 129.99549995499956, + 42.98479467215512 + ], + [ + 129.5958959589596, + 42.42455777445221 + ], + [ + 128.05148051480518, + 41.99464788920588 + ], + [ + 128.20988209882103, + 41.466569604966296 + ], + [ + 127.34227342273425, + 41.503805894239605 + ], + [ + 126.87066870668707, + 41.81692923585602 + ], + [ + 126.18306183061833, + 41.107747181059906 + ], + [ + 125.08145081450817, + 40.56951354520034 + ], + [ + 124.26424264242644, + 39.9280338345375 + ], + [ + 122.86742867428677, + 39.63860631336773 + ], + [ + 122.1330213302133, + 39.16976758024475 + ], + [ + 121.05301053010533, + 38.897265645108305 + ], + [ + 121.58581585815858, + 39.36102670242127 + ], + [ + 121.3770137701377, + 39.750315181187645 + ], + [ + 122.16902169021694, + 40.42226094671045 + ], + [ + 121.63981639816399, + 40.946954113743374 + ], + [ + 120.76860768607685, + 40.593209365646985 + ], + [ + 119.63819638196384, + 39.897567779677516 + ], + [ + 119.02259022590226, + 39.25270295180803 + ], + [ + 118.04338043380437, + 39.2036187523114 + ], + [ + 117.53217532175324, + 38.7381651363951 + ], + [ + 118.06138061380614, + 38.06114169506229 + ], + [ + 118.87858878588787, + 37.89696351053908 + ], + [ + 118.91098910989109, + 37.4484354806561 + ], + [ + 119.70299702997033, + 37.15562284227967 + ], + [ + 120.82260822608225, + 37.86988257288577 + ], + [ + 121.71181711817121, + 37.48059409411941 + ], + [ + 122.35622356223564, + 37.455205715069425 + ], + [ + 122.51822518225185, + 36.9305125480365 + ], + [ + 121.10341103411037, + 36.65124037848672 + ], + [ + 120.63540635406355, + 36.11131418402381 + ], + [ + 119.66339663396633, + 35.61031683743754 + ], + [ + 119.15219152191526, + 34.90959757565808 + ], + [ + 120.22860228602286, + 34.35951602957519 + ], + [ + 120.62100621006209, + 33.37613948103929 + ], + [ + 121.22941229412294, + 32.46046527663667 + ], + [ + 121.90981909819101, + 31.692043670723933 + ], + [ + 121.89181891818919, + 30.949010443861184 + ], + [ + 121.26541265412658, + 30.676508508724723 + ], + [ + 121.50301503015032, + 30.14335254867514 + ], + [ + 122.09342093420935, + 29.83192176566206 + ], + [ + 121.93861938619386, + 29.017801077459353 + ], + [ + 121.6830168301683, + 28.22568365109997 + ], + [ + 121.1250112501125, + 28.13597804512338 + ], + [ + 120.39420394203944, + 27.05274053899089 + ], + [ + 119.58419584195843, + 25.741007621408585 + ], + [ + 118.65538655386553, + 24.547753806059518 + ], + [ + 117.28017280172804, + 23.625309367243574 + ], + [ + 115.89055890558905, + 22.78241518278422 + ], + [ + 114.7637476374764, + 22.667321197757644 + ], + [ + 114.15174151741519, + 22.223870843684665 + ], + [ + 113.80613806138064, + 22.548842095524407 + ], + [ + 113.2409324093241, + 22.051229866144794 + ], + [ + 111.84411844118443, + 21.55023251955852 + ], + [ + 110.78570785707859, + 21.397902245258635 + ], + [ + 110.4437044370444, + 20.341745676779468 + ], + [ + 109.88929889298896, + 20.28250612566285 + ], + [ + 109.62649626496267, + 21.008613766492275 + ], + [ + 109.86409864098641, + 21.394517128051973 + ], + [ + 108.52128521285215, + 21.71441070408173 + ], + [ + 108.04968049680497, + 21.551925078161858 + ], + [ + 107.04167041670416, + 21.81257910307498 + ], + [ + 106.56646566465668, + 22.218793167874665 + ], + [ + 106.72486724867252, + 22.794263093007544 + ], + [ + 105.81045810458107, + 22.977059422167414 + ], + [ + 105.3280532805328, + 23.352807432107113 + ], + [ + 104.47844478444784, + 22.81965147205753 + ], + [ + 103.50283502835032, + 22.704557487030954 + ], + [ + 102.70722707227071, + 22.709635162840954 + ], + [ + 102.17082170821709, + 22.464214165357802 + ], + [ + 101.65241652416523, + 22.318654125471255 + ], + [ + 101.80361803618035, + 21.17448450961882 + ], + [ + 101.2708127081271, + 21.20156544727213 + ], + [ + 101.18081180811811, + 21.436831093135282 + ], + [ + 101.14841148411483, + 21.84981539234829 + ], + [ + 100.41760417604178, + 21.558695312575182 + ], + [ + 99.98199981999824, + 21.743184200338376 + ], + [ + 99.24039240392403, + 22.118932210278075 + ], + [ + 99.53199531995318, + 22.948285925910767 + ], + [ + 98.89838898388984, + 23.142930165293947 + ], + [ + 98.6607866078661, + 24.063682045506553 + ], + [ + 97.60597605976062, + 23.89781130238002 + ], + [ + 97.72477724777247, + 25.084294883315764 + ], + [ + 98.67158671586719, + 25.91872627475844 + ], + [ + 98.71118711187114, + 26.743002314581133 + ], + [ + 98.68238682386823, + 27.508038803287207 + ], + [ + 98.24678246782469, + 27.74668956635702 + ], + [ + 97.91197911979123, + 28.33569996031656 + ], + [ + 97.32877328773287, + 28.26122738176994 + ], + [ + 96.2487624876249, + 28.41186509746649 + ], + [ + 96.58716587165873, + 28.831619631092835 + ], + [ + 96.11916119161191, + 29.452788638515685 + ], + [ + 95.40635406354062, + 29.031341546286015 + ], + [ + 94.56754567545676, + 29.276762543769152 + ], + [ + 93.4119341193412, + 28.640360508916316 + ], + [ + 92.50472504725047, + 27.897327282053567 + ], + [ + 91.69831698316983, + 27.77207794540699 + ], + [ + 91.25911259112593, + 28.04119476333679 + ], + [ + 90.72990729907298, + 28.064890583783438 + ], + [ + 90.01710017100174, + 28.296771112439913 + ], + [ + 89.4770947709477, + 28.042887321940114 + ], + [ + 88.81468814688145, + 27.299854095077364 + ], + [ + 88.73188731887319, + 28.086893845626747 + ], + [ + 88.11988119881198, + 27.87701657881358 + ], + [ + 86.95346953469533, + 27.97349241920351 + ], + [ + 85.82305823058232, + 28.20368038925666 + ], + [ + 85.01305013050131, + 28.642053067519655 + ], + [ + 84.23544235442353, + 28.840082424109497 + ], + [ + 83.90063900639007, + 29.320769067455785 + ], + [ + 83.33543335433353, + 29.46294399013567 + ], + [ + 82.32742327423273, + 30.11457905241849 + ], + [ + 81.52461524615245, + 30.422624718224924 + ], + [ + 81.1106111061111, + 30.18397395515511 + ], + [ + 79.7209972099721, + 30.883000658331227 + ], + [ + 78.73818738187384, + 31.5160175759774 + ], + [ + 78.45738457384573, + 32.61787322674654 + ], + [ + 79.17739177391775, + 32.484161097083316 + ], + [ + 79.20979209792097, + 32.99362123668625 + ], + [ + 78.81018810188101, + 33.50646649349585 + ], + [ + 78.91098910989109, + 34.32227974030188 + ], + [ + 77.83817838178385, + 35.49353029380762 + ], + [ + 76.19296192961929, + 35.898051800003984 + ], + [ + 75.89775897758977, + 36.66647340591672 + ], + [ + 75.15975159751599, + 37.133619580436346 + ], + [ + 74.97974979749799, + 37.419661984399454 + ], + [ + 74.82854828548287, + 37.99005423372235 + ], + [ + 74.86454864548645, + 38.37934271248871 + ], + [ + 74.25614256142563, + 38.6061455653352 + ], + [ + 73.92853928539287, + 38.50628460773861 + ], + [ + 73.67653676536767, + 39.43042160515789 + ], + [ + 73.96093960939609, + 39.66060957521104 + ], + [ + 73.82053820538206, + 39.894182662470854 + ], + [ + 74.77814778147783, + 40.366406512800495 + ], + [ + 75.46935469354693, + 40.562743310787 + ], + [ + 76.5277652776528, + 40.42733862252044 + ], + [ + 76.90576905769058, + 41.06712577457995 + ], + [ + 78.18738187381877, + 41.18560487681319 + ], + [ + 78.54378543785441, + 41.58166358999287 + ], + [ + 80.12060120601205, + 42.12328234305912 + ], + [ + 80.26100261002608, + 42.350085195905606 + ], + [ + 80.18180181801819, + 42.9204774452285 + ], + [ + 80.86580865808656, + 43.18113147014162 + ], + [ + 79.96579965799657, + 44.91769659716027 + ], + [ + 81.94581945819459, + 45.31714042754663 + ], + [ + 82.46062460624609, + 45.53886560458312 + ], + [ + 83.18063180631805, + 47.32959260690839 + ], + [ + 85.16425164251643, + 47.001236237861974 + ], + [ + 85.72225722257224, + 47.453149384951615 + ], + [ + 85.76905769057691, + 48.455144078124164 + ], + [ + 86.59706597065974, + 48.549927359910754 + ], + [ + 87.36027360273602, + 49.21510289102025 + ], + [ + 87.7526775267753, + 49.2980382625835 + ], + [ + 88.01548015480154, + 48.59901155940739 + ], + [ + 88.85428854288546, + 48.06924071656448 + ], + [ + 90.27990279902798, + 47.69349270662477 + ], + [ + 90.97110971109714, + 46.88783481143872 + ], + [ + 90.58590585905858, + 45.71996937513964 + ], + [ + 90.9459094590946, + 45.28667437268663 + ], + [ + 92.13392133921343, + 45.115725953750115 + ], + [ + 93.48033480334806, + 44.97524358967357 + ], + [ + 94.68994689946902, + 44.35238202364738 + ], + [ + 95.30555305553054, + 44.240673155827466 + ], + [ + 95.76275762757626, + 43.31992127561486 + ], + [ + 96.34956349563498, + 42.725833205845305 + ], + [ + 97.45117451174514, + 42.74952902629195 + ], + [ + 99.51759517595178, + 42.524418732048815 + ], + [ + 100.84600846008459, + 42.663208537522024 + ], + [ + 101.83241832418327, + 42.514263380428815 + ], + [ + 103.3120331203312, + 41.90663484183263 + ], + [ + 104.52164521645216, + 41.90832740043595 + ], + [ + 104.96444964449648, + 41.59689661742286 + ], + [ + 106.13086130861308, + 42.13513025328244 + ], + [ + 107.74367743677436, + 42.482104766965506 + ], + [ + 109.24489244892447, + 42.5193410562388 + ], + [ + 110.41130411304113, + 42.871393245731866 + ], + [ + 111.13131131311314, + 43.40624176438479 + ], + [ + 111.82971829718298, + 43.74306092644784 + ], + [ + 111.66771667716677, + 44.073109854097595 + ], + [ + 111.34731347313476, + 44.45732065705397 + ], + [ + 111.87291872918729, + 45.10218548492347 + ], + [ + 112.43452434524346, + 45.01247987894686 + ], + [ + 113.46413464134645, + 44.80937284654701 + ], + [ + 114.46134461344616, + 45.33914368938994 + ], + [ + 115.98415984159845, + 45.726739609552965 + ], + [ + 116.71856718567187, + 46.388530023455786 + ], + [ + 117.42057420574207, + 46.672879868815556 + ], + [ + 118.8749887498875, + 46.80489943987547 + ], + [ + 119.66339663396633, + 46.693190572055556 + ], + [ + 119.77139771397714, + 47.04862787875527 + ], + [ + 118.86778867788678, + 47.747654581931386 + ], + [ + 118.0649806498065, + 48.06754815796114 + ], + [ + 117.29457294572944, + 47.69687782383144 + ], + [ + 116.30816308163082, + 47.852593215337976 + ], + [ + 115.74295742957429, + 47.727343878691414 + ], + [ + 115.48375483754836, + 48.13525050209441 + ], + [ + 116.19296192961929, + 49.13386007806031 + ], + [ + 116.67896678966792, + 49.88874121514638 + ], + [ + 117.8777787777878, + 49.51130064660336 + ], + [ + 119.28899288992892, + 50.14262500564618 + ], + [ + 119.27819278192783, + 50.58269024251251 + ], + [ + 120.18180181801819, + 51.643924486801694 + ], + [ + 120.73980739807399, + 51.96381806283142 + ], + [ + 120.72540725407254, + 52.51559216751767 + ], + [ + 120.17820178201782, + 52.75424293058748 + ], + [ + 121.00261002610029, + 53.25185515996708 + ], + [ + 122.24462244622447, + 53.43126637192029 + ], + [ + 123.57303573035733, + 53.45834730957358 + ], + [ + 125.06705067050672, + 53.160456995387165 + ], + [ + 125.94545945459458, + 52.793171778464114 + ], + [ + 126.56466564665647, + 51.78440685087824 + ], + [ + 126.93906939069393, + 51.35449696563191 + ], + [ + 127.28827288272885, + 50.74009819262238 + ], + [ + 127.65907659076589, + 49.760106761293144 + ], + [ + 129.3978939789398, + 49.44021318526339 + ], + [ + 130.58230582305822, + 48.72933857186396 + ], + [ + 130.98550985509854, + 47.789968547014695 + ], + [ + 132.50832508325084, + 47.78827598841136 + ], + [ + 133.37233372333725, + 48.18264214298773 + ], + [ + 135.02475024750248, + 48.47883989857081 + ], + [ + 134.49914499144995, + 47.57839872159818 + ], + [ + 134.1139411394114, + 47.212806063278464 + ], + [ + 133.76833768337684, + 46.11772064692266 + ], + [ + 133.09873098730986, + 45.14449945000675 + ], + [ + 131.88191881918823, + 45.32052554475328 + ], + [ + 131.02511025110255, + 44.968473355260215 + ], + [ + 131.28791287912878, + 44.11203870197423 + ], + [ + 131.1439114391144, + 42.9306327968485 + ], + [ + 130.63270632706326, + 42.903551859195176 + ], + [ + 130.639906399064, + 42.39578427819558 + ] + ] + ] + ] + }, + "countryRef": { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6946564429208211, + "skewed": 0.5270366117020491, + "clumpy": 0.4012377069548483, + "sparse": 0.38136340078424724, + "striated": 0.5303484391845628, + "convex": 0.2651029171987569, + "skinny": 0.5745486899029439, + "stringy": 0.7537315242607716, + "monotonic": 0.4234366795237936, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 101.98648753328654, + -87.4369258840433 + ], + "drag": [ + 101.98648753328654, + -87.4369258840433 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 45 + }, + { + "attrs": { + "name": "Selected China (4 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.69\",\"payload\":{\"numVal\":0.6946564429208211},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.53\",\"payload\":{\"numVal\":0.5270366117020491},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.4\",\"payload\":{\"numVal\":0.4012377069548483},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.38\",\"payload\":{\"numVal\":0.38136340078424724},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.53\",\"payload\":{\"numVal\":0.5303484391845628},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.27\",\"payload\":{\"numVal\":0.2651029171987569},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.57\",\"payload\":{\"numVal\":0.5745486899029439},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.75\",\"payload\":{\"numVal\":0.7537315242607716},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.42\",\"payload\":{\"numVal\":0.4234366795237936},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Japan\",\"text\":\"Japan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = China\",\"text\":\"China\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 46 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected China (4 Countries)", + "timestamp": 1522409160847, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 76, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -57.6239762397624, + -30.216672363351037 + ], + [ + -56.291962919629185, + -28.852470129065438 + ], + [ + -55.161551615516146, + -27.88263404935619 + ], + [ + -54.491944919449196, + -27.474727425953184 + ], + [ + -53.649536495364956, + -26.922953321266945 + ], + [ + -53.627936279362785, + -26.12406566049423 + ], + [ + -54.12834128341282, + -25.546903176758022 + ], + [ + -54.62514625146251, + -25.73985485753787 + ], + [ + -54.430744307443064, + -25.162692373801654 + ], + [ + -54.293942939429385, + -24.570296862635452 + ], + [ + -54.293942939429385, + -24.020215316552544 + ], + [ + -54.653946539465394, + -23.83911154599602 + ], + [ + -55.02835028350283, + -24.00159717191589 + ], + [ + -55.399153991539904, + -23.957590648229264 + ], + [ + -55.51795517955179, + -23.571687286669565 + ], + [ + -55.61155611556116, + -22.656013082266945 + ], + [ + -55.798757987579876, + -22.356430209477182 + ], + [ + -56.47196471964719, + -22.08562083294406 + ], + [ + -56.88236882368824, + -22.28195763093057 + ], + [ + -57.93717937179372, + -22.090698508754052 + ], + [ + -57.872378723787236, + -20.733266508881783 + ], + [ + -58.16758167581675, + -20.176414728385552 + ], + [ + -57.85437854378543, + -19.969922578779048 + ], + [ + -57.95157951579516, + -19.399530329456155 + ], + [ + -57.67437674376744, + -18.96115765119316 + ], + [ + -57.4979749797498, + -18.17411790064378 + ], + [ + -57.73557735577356, + -17.55294889322093 + ], + [ + -58.27918279182792, + -17.27198416506782 + ], + [ + -58.387183871838715, + -16.87761801049146 + ], + [ + -58.23958239582396, + -16.298762968151905 + ], + [ + -60.158401584015834, + -16.25814156167195 + ], + [ + -60.54360543605435, + -15.093661242579515 + ], + [ + -60.2520025200252, + -15.076735656546205 + ], + [ + -60.26280262802628, + -14.645133212696535 + ], + [ + -60.460804608046075, + -14.354013132923427 + ], + [ + -60.5040050400504, + -13.775158090583886 + ], + [ + -61.08361083610836, + -13.478960335000778 + ], + [ + -61.71361713617135, + -13.489115686620778 + ], + [ + -62.127621276212764, + -13.19799560684767 + ], + [ + -62.80442804428044, + -12.999966250257827 + ], + [ + -63.196831968319685, + -12.627603357524777 + ], + [ + -64.31644316443165, + -12.461732614398244 + ], + [ + -65.40365403654036, + -11.56636911323561 + ], + [ + -65.32085320853209, + -10.896115906316126 + ], + [ + -65.44325443254432, + -10.511905103359766 + ], + [ + -65.33885338853388, + -9.762101642083678 + ], + [ + -66.64566645666456, + -9.931357502416887 + ], + [ + -67.17487174871748, + -10.307105512356586 + ], + [ + -68.04968049680497, + -10.711627018552946 + ], + [ + -68.27288272882728, + -11.014595008549378 + ], + [ + -68.78768787687876, + -11.036598270392687 + ], + [ + -69.52929529295292, + -10.951970340226083 + ], + [ + -70.09450094500944, + -11.124611317765954 + ], + [ + -70.5481054810548, + -11.009517332739378 + ], + [ + -70.48330483304832, + -9.489599706947232 + ], + [ + -71.3041130411304, + -10.078610100906772 + ], + [ + -72.18612186121861, + -10.053221721856787 + ], + [ + -72.56412564125641, + -9.520065761807203 + ], + [ + -73.22653226532265, + -9.462518769293922 + ], + [ + -73.01413014130141, + -9.03260888404759 + ], + [ + -73.57213572135721, + -8.424980345451388 + ], + [ + -73.98613986139861, + -7.524539168478768 + ], + [ + -73.72333723337233, + -7.341742839318911 + ], + [ + -73.72333723337233, + -6.918603188485903 + ], + [ + -73.11853118531185, + -6.629175667316133 + ], + [ + -73.21933219332193, + -6.089249472853226 + ], + [ + -72.96372963729637, + -5.740582400566822 + ], + [ + -72.89172891728917, + -5.275128784650519 + ], + [ + -71.74691746917469, + -4.5947202261110505 + ], + [ + -70.92970929709297, + -4.401768545331208 + ], + [ + -70.79650796507964, + -4.251130829634661 + ], + [ + -69.89289892898928, + -4.298522470527956 + ], + [ + -69.44289442894429, + -1.5565775331300955 + ], + [ + -69.42129421294213, + -1.123282530677102 + ], + [ + -69.5760957609576, + -0.549505164147547 + ], + [ + -70.01890018900188, + -0.18560506443115798 + ], + [ + -70.01530015300153, + 0.5421951350016059 + ], + [ + -69.45369453694536, + 0.7063733195248005 + ], + [ + -69.2520925209252, + 0.6031272447215485 + ], + [ + -69.21969219692197, + 0.9856454890745852 + ], + [ + -69.80289802898028, + 1.0888915638778371 + ], + [ + -69.81729817298172, + 1.715138247110687 + ], + [ + -67.86967869678696, + 1.6931349852673634 + ], + [ + -67.53847538475384, + 2.036724381743767 + ], + [ + -67.26127261272612, + 1.7202159229206728 + ], + [ + -67.06327063270632, + 1.1295129703578084 + ], + [ + -66.8760687606876, + 1.253069748401046 + ], + [ + -66.32526325263252, + 0.7249914641614623 + ], + [ + -65.54765547655477, + 0.7893086910880669 + ], + [ + -65.35325353253532, + 1.095661798291161 + ], + [ + -64.61164611646116, + 1.3292348855509886 + ], + [ + -64.19764197641976, + 1.4934130700741974 + ], + [ + -64.08244082440824, + 1.916552720907191 + ], + [ + -63.36963369633696, + 2.2009025662669757 + ], + [ + -63.423634236342366, + 2.4107798330801415 + ], + [ + -64.26964269642696, + 2.49710032185007 + ], + [ + -64.410044100441, + 3.1267321222895816 + ], + [ + -64.36684366843669, + 3.7969853292090505 + ], + [ + -64.81684816848168, + 4.0559467955188495 + ], + [ + -64.62964629646297, + 4.149037518702116 + ], + [ + -63.888038880388805, + 4.020403064848878 + ], + [ + -63.09243092430924, + 3.769904391555741 + ], + [ + -62.80442804428044, + 4.006862596022231 + ], + [ + -62.08442084420844, + 4.162577987528778 + ], + [ + -60.96840968409684, + 4.536633438865152 + ], + [ + -60.60120601206012, + 4.917459124614851 + ], + [ + -60.73440734407343, + 5.200116411371297 + ], + [ + -60.21240212402124, + 5.244122935057931 + ], + [ + -59.981999819998194, + 5.013934965004779 + ], + [ + -60.11160111601116, + 4.575562286741786 + ], + [ + -59.76599765997659, + 4.4232320124419005 + ], + [ + -59.53919539195391, + 3.9594709551289355 + ], + [ + -59.81639816398163, + 3.6057262070325464 + ], + [ + -59.97479974799748, + 2.756061788159869 + ], + [ + -59.719197191971915, + 2.2499867657635946 + ], + [ + -59.64719647196472, + 1.7862257084506297 + ], + [ + -59.03159031590316, + 1.3173869753276648 + ], + [ + -58.538385383853836, + 1.2683027758310317 + ], + [ + -58.43038430384303, + 1.46463957381755 + ], + [ + -58.11358113581136, + 1.506953538900845 + ], + [ + -57.659976599766, + 1.6829796336473777 + ], + [ + -57.335973359733586, + 1.9487113343705005 + ], + [ + -56.78156781567816, + 1.864083404203896 + ], + [ + -56.540365403654036, + 1.8996271348738674 + ], + [ + -55.99675996759967, + 1.818384321913939 + ], + [ + -55.90675906759067, + 2.021491354313781 + ], + [ + -56.07236072360723, + 2.2212132695069613 + ], + [ + -55.97155971559715, + 2.5106407906767316 + ], + [ + -55.56835568355683, + 2.4209351847001273 + ], + [ + -55.096750967509664, + 2.5241812595033792 + ], + [ + -54.52434524345243, + 2.3126114340868895 + ], + [ + -54.088740887408875, + 2.1061192844803855 + ], + [ + -53.779137791377906, + 2.376928661013494 + ], + [ + -53.55593555935559, + 2.334614695930199 + ], + [ + -53.41913419134191, + 2.0536499677770905 + ], + [ + -52.94032940329403, + 2.124737429117033 + ], + [ + -52.555125551255514, + 2.503870556263408 + ], + [ + -52.24912249122491, + 3.2418261073161574 + ], + [ + -51.658716587165856, + 4.15580775311544 + ], + [ + -51.31671316713167, + 4.203199394008735 + ], + [ + -51.06831068310683, + 3.6497327307191796 + ], + [ + -50.510305103051024, + 1.9013196934772054 + ], + [ + -49.973899738997375, + 1.7371415089539965 + ], + [ + -49.948699486994855, + 1.046577598794542 + ], + [ + -50.69750697506976, + 0.22230155897185 + ], + [ + -50.38790387903879, + -0.0789738724212441 + ], + [ + -48.62028620286202, + -0.2346892639277911 + ], + [ + -48.584285842858435, + -1.2383765157036777 + ], + [ + -47.82467824678247, + -0.5816637776108564 + ], + [ + -46.56826568265683, + -0.9404862015172455 + ], + [ + -44.905049050490504, + -1.5514998573200955 + ], + [ + -44.419044190441895, + -2.137125134072974 + ], + [ + -44.58104581045811, + -2.6905917973625435 + ], + [ + -43.41823418234182, + -2.3825461315561114 + ], + [ + -41.47421474214741, + -2.912316974399033 + ], + [ + -39.980199801998026, + -2.8733881265224 + ], + [ + -38.50058500585004, + -3.701049283551754 + ], + [ + -37.222572225722246, + -4.82152307895754 + ], + [ + -36.452164521645216, + -5.1092580415239865 + ], + [ + -35.5989559895599, + -5.149879448003958 + ], + [ + -35.235352353523524, + -5.464695348223714 + ], + [ + -34.8969489694897, + -6.737499417929385 + ], + [ + -34.73134731347312, + -7.343435397922235 + ], + [ + -35.127351273512744, + -8.99706515337762 + ], + [ + -35.638556385563845, + -9.64870021566044 + ], + [ + -37.046170461704605, + -11.03998338759935 + ], + [ + -37.683376833768335, + -12.170612534625135 + ], + [ + -38.42498424984248, + -13.03889509813446 + ], + [ + -38.673386733867346, + -13.057513242771108 + ], + [ + -38.9541895418954, + -13.793776235220534 + ], + [ + -38.88218882188821, + -15.66743860910907 + ], + [ + -39.15939159391593, + -17.2076669381412 + ], + [ + -39.267392673926736, + -17.867764793440685 + ], + [ + -39.584195841958405, + -18.262130948017045 + ], + [ + -39.760597605976045, + -19.599252244649335 + ], + [ + -40.775807758077576, + -20.904214927818316 + ], + [ + -40.94500945009449, + -21.936675675850843 + ], + [ + -41.755017550175495, + -22.369970678303837 + ], + [ + -41.989019890198904, + -22.9708289824867 + ], + [ + -43.07623076230763, + -22.967443865280032 + ], + [ + -44.64944649446494, + -23.3516546682364 + ], + [ + -45.35145351453514, + -23.796797580912717 + ], + [ + -46.47106471064711, + -24.089610219289156 + ], + [ + -47.64827648276483, + -24.8851127628552 + ], + [ + -48.49428494284942, + -25.876952104407763 + ], + [ + -48.641886418864175, + -26.623370448477175 + ], + [ + -48.47628476284763, + -27.175144553163413 + ], + [ + -48.659886598865995, + -28.185602039352624 + ], + [ + -48.886688866888676, + -28.674751475715574 + ], + [ + -49.588695886958874, + -29.22483302179848 + ], + [ + -50.69750697506976, + -30.985093969263772 + ], + [ + -51.575915759157596, + -31.777211395623155 + ], + [ + -52.25632256322562, + -32.24605012874612 + ], + [ + -52.71352713527135, + -33.19726806381871 + ], + [ + -53.372333723337235, + -33.7676603131416 + ], + [ + -53.649536495364956, + -33.202345739628704 + ], + [ + -53.21033210332102, + -32.72842933069574 + ], + [ + -53.786337863378634, + -32.04802077215627 + ], + [ + -54.571145711457106, + -31.49455410886671 + ], + [ + -55.600756007560065, + -30.853074398203873 + ], + [ + -55.97155971559715, + -30.88354045306385 + ], + [ + -56.97596975969759, + -30.110041171341123 + ], + [ + -57.6239762397624, + -30.216672363351037 + ] + ] + ] + }, + "countryRef": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.029197414114500164, + "skewed": 0.2801135598208142, + "clumpy": 0.2048092066164695, + "sparse": 0.06839072260729884, + "striated": 0.14554221300538428, + "convex": 0.10451043001945126, + "skinny": 0.2899498002502694, + "stringy": 0.00020492044700581857, + "monotonic": 0.20382459566034505, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -46.40958140559668, + -89.03791199506682 + ], + "drag": [ + -46.40958140559668, + -89.03791199506682 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 47 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected India (5 Countries)", + "timestamp": 1522409163483, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 356, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 77.83817838178385, + 35.49353029380762 + ], + [ + 78.91098910989109, + 34.32227974030188 + ], + [ + 78.81018810188101, + 33.50646649349585 + ], + [ + 79.20979209792097, + 32.99362123668625 + ], + [ + 79.17739177391775, + 32.484161097083316 + ], + [ + 78.45738457384573, + 32.61787322674654 + ], + [ + 78.73818738187384, + 31.5160175759774 + ], + [ + 79.7209972099721, + 30.883000658331227 + ], + [ + 81.1106111061111, + 30.18397395515511 + ], + [ + 80.4770047700477, + 29.73036824946213 + ], + [ + 80.08820088200883, + 28.794383341819525 + ], + [ + 81.05661056610569, + 28.415250214673165 + ], + [ + 81.9998199982, + 27.926100778310214 + ], + [ + 83.30303303033031, + 27.364171322003983 + ], + [ + 84.67464674646749, + 27.235536868150746 + ], + [ + 85.25065250652506, + 26.72607672854781 + ], + [ + 86.02466024660248, + 26.63129344676122 + ], + [ + 87.22707227072272, + 26.397720359501406 + ], + [ + 88.0586805868059, + 26.414645945534716 + ], + [ + 88.17388173881739, + 26.810704658714414 + ], + [ + 88.04428044280445, + 27.44541413496391 + ], + [ + 88.11988119881198, + 27.87701657881358 + ], + [ + 88.73188731887319, + 28.086893845626747 + ], + [ + 88.81468814688145, + 27.299854095077364 + ], + [ + 88.83628836288364, + 27.09843962128086 + ], + [ + 89.74349743497436, + 26.719306494134486 + ], + [ + 90.37350373503733, + 26.875021885641033 + ], + [ + 91.21591215912161, + 26.809012100111076 + ], + [ + 92.03312033120335, + 26.837785596367723 + ], + [ + 92.10512105121052, + 27.45218436937725 + ], + [ + 91.69831698316983, + 27.77207794540699 + ], + [ + 92.50472504725047, + 27.897327282053567 + ], + [ + 93.4119341193412, + 28.640360508916316 + ], + [ + 94.56754567545676, + 29.276762543769152 + ], + [ + 95.40635406354062, + 29.031341546286015 + ], + [ + 96.11916119161191, + 29.452788638515685 + ], + [ + 96.58716587165873, + 28.831619631092835 + ], + [ + 96.2487624876249, + 28.41186509746649 + ], + [ + 97.32877328773287, + 28.26122738176994 + ], + [ + 97.4007740077401, + 27.88209425462358 + ], + [ + 97.05157051570518, + 27.699297925463725 + ], + [ + 97.13437134371344, + 27.08320659385086 + ], + [ + 96.41796417964179, + 27.264310364407393 + ], + [ + 95.12555125551256, + 26.573746454247924 + ], + [ + 95.15435154351542, + 26.001661646321708 + ], + [ + 94.60354603546034, + 25.16215257906903 + ], + [ + 94.5531455314553, + 24.674695701309417 + ], + [ + 94.10674106741067, + 23.850419661486725 + ], + [ + 93.32553325533257, + 24.078915072936553 + ], + [ + 93.28593285932862, + 23.043069207697357 + ], + [ + 93.05913059130592, + 22.702864928427616 + ], + [ + 93.16713167131672, + 22.278032718991284 + ], + [ + 92.67392673926742, + 22.04107451452481 + ], + [ + 92.14472144721447, + 23.627001925846898 + ], + [ + 91.87111871118714, + 23.623616808640236 + ], + [ + 91.70551705517056, + 22.985522215184062 + ], + [ + 91.15831158311585, + 23.50344514780366 + ], + [ + 91.46791467914682, + 24.072144838523215 + ], + [ + 91.91431914319145, + 24.12969183103651 + ], + [ + 92.37512375123754, + 24.97597113270251 + ], + [ + 91.79911799117991, + 25.146919551639044 + ], + [ + 90.87390873908743, + 25.133379082812397 + ], + [ + 89.91989919899203, + 25.270476329682282 + ], + [ + 89.83349833498335, + 25.964425357048412 + ], + [ + 89.3546935469355, + 26.01520211514837 + ], + [ + 88.56268562685625, + 26.446804558998025 + ], + [ + 88.20988209882097, + 25.768088559061894 + ], + [ + 88.92988929889299, + 25.238317716218972 + ], + [ + 88.30708307083074, + 24.865954823485936 + ], + [ + 88.0838808388084, + 24.502054723769547 + ], + [ + 88.69948699486997, + 24.232937905839762 + ], + [ + 88.53028530285303, + 23.63038704305356 + ], + [ + 88.87588875888758, + 22.87889102317415 + ], + [ + 89.03069030690307, + 22.056307541954794 + ], + [ + 88.89028890288904, + 21.69071488363508 + ], + [ + 88.20988209882097, + 21.702562793858405 + ], + [ + 86.97506975069751, + 21.4960706442519 + ], + [ + 87.03267032670328, + 20.74288206576915 + ], + [ + 86.49986499864997, + 20.152179113206287 + ], + [ + 85.05985059850599, + 19.478540789080142 + ], + [ + 83.94023940239401, + 18.3022125597644 + ], + [ + 83.18783187831878, + 17.67088820072155 + ], + [ + 82.19422194221943, + 17.015868021232066 + ], + [ + 82.19062190621906, + 16.557184639729087 + ], + [ + 81.69381693816939, + 16.31007108364261 + ], + [ + 80.79020790207903, + 15.951248659736223 + ], + [ + 80.32580325803258, + 15.898779343032942 + ], + [ + 80.02340023400234, + 15.13712797153353 + ], + [ + 80.23220232202323, + 13.835550405571212 + ], + [ + 80.28620286202863, + 13.006196689938534 + ], + [ + 79.86139861398613, + 12.056671313469266 + ], + [ + 79.85779857798576, + 10.35734247572394 + ], + [ + 79.33939339393396, + 10.308258276227306 + ], + [ + 78.8857888578886, + 9.546606904727895 + ], + [ + 79.18819188191884, + 9.216557977078153 + ], + [ + 78.27738277382775, + 8.932208131718383 + ], + [ + 77.94257942579429, + 8.253492131782238 + ], + [ + 77.53937539375397, + 7.965757169215806 + ], + [ + 76.59256592565924, + 8.900049518255074 + ], + [ + 76.13176131761321, + 10.299795483210644 + ], + [ + 75.74655746557465, + 11.308560410796517 + ], + [ + 75.39735397353974, + 11.780784261126158 + ], + [ + 74.86454864548645, + 12.742157547818735 + ], + [ + 74.61614616146161, + 13.992958355681097 + ], + [ + 74.44334443344434, + 14.617512480310609 + ], + [ + 73.53253532535325, + 15.99017750761287 + ], + [ + 73.11853118531187, + 17.928157108428024 + ], + [ + 72.81972819728199, + 19.20773141254702 + ], + [ + 72.82332823328235, + 20.419603372532734 + ], + [ + 72.62892628926289, + 21.35558828017534 + ], + [ + 71.17451174511746, + 20.758115093199137 + ], + [ + 70.4689046890469, + 20.876594195432375 + ], + [ + 69.16569165691658, + 22.088466155418104 + ], + [ + 69.64449644496446, + 22.450673696531155 + ], + [ + 69.34929349293495, + 22.843347292504177 + ], + [ + 68.17568175681757, + 23.691319152773517 + ], + [ + 68.84168841688418, + 24.35987980108966 + ], + [ + 71.04491044910449, + 24.356494683883 + ], + [ + 70.84330843308433, + 25.214621895772325 + ], + [ + 70.28170281702819, + 25.722389476771923 + ], + [ + 70.17010170101702, + 26.492503641287996 + ], + [ + 69.5148951489515, + 26.941031671170975 + ], + [ + 70.61650616506165, + 27.988725446633495 + ], + [ + 71.77931779317794, + 27.912560309483553 + ], + [ + 72.82332823328235, + 28.961946643549396 + ], + [ + 73.44973449734499, + 29.97578924694527 + ], + [ + 74.42174421744218, + 30.979476498721155 + ], + [ + 74.40734407344075, + 31.692043670723933 + ], + [ + 75.25695256952571, + 32.270898713063474 + ], + [ + 74.45054450544507, + 32.765125825236424 + ], + [ + 74.10494104941051, + 33.44214926656923 + ], + [ + 73.74853748537487, + 34.31720206449188 + ], + [ + 74.24174241742418, + 34.74880450834155 + ], + [ + 75.75735757357575, + 34.50507606946174 + ], + [ + 76.87336873368736, + 34.654021226554946 + ], + [ + 77.83817838178385, + 35.49353029380762 + ] + ] + ] + }, + "countryRef": { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.5048272262875664, + "skewed": 0.6089799322904703, + "clumpy": 0.3843233422958525, + "sparse": 0.4819382905803449, + "striated": 0.33053227884333025, + "convex": 0.9242540633378129, + "skinny": 0.5042046136998064, + "stringy": 0.43895667105238734, + "monotonic": 0.015805236239271547, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 76.2033867523995, + -88.15719671701233 + ], + "drag": [ + 76.2033867523995, + -88.15719671701233 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 48 + }, + { + "attrs": { + "name": "Selected India (5 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.5\",\"payload\":{\"numVal\":0.5048272262875664},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.61\",\"payload\":{\"numVal\":0.6089799322904703},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.38\",\"payload\":{\"numVal\":0.3843233422958525},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.48\",\"payload\":{\"numVal\":0.4819382905803449},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.33\",\"payload\":{\"numVal\":0.33053227884333025},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.92\",\"payload\":{\"numVal\":0.9242540633378129},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.5\",\"payload\":{\"numVal\":0.5042046136998064},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.44\",\"payload\":{\"numVal\":0.43895667105238734},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.02\",\"payload\":{\"numVal\":0.015805236239271547},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Japan\",\"text\":\"Japan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = China\",\"text\":\"China\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = India\",\"text\":\"India\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 49 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected India (5 Countries)", + "timestamp": 1522409163483, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 156, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 109.47529475294755, + 18.19727392635781 + ], + [ + 108.65448654486545, + 18.507012150767565 + ], + [ + 108.6256862568626, + 19.368524479863567 + ], + [ + 109.1188911889119, + 19.820437626953208 + ], + [ + 110.21330213302133, + 20.101402355106316 + ], + [ + 110.78570785707859, + 20.07770653465967 + ], + [ + 111.00891008910088, + 19.695188290306632 + ], + [ + 110.56970569705697, + 19.255123053440315 + ], + [ + 110.33930339303396, + 18.677960569704098 + ], + [ + 109.47529475294755, + 18.19727392635781 + ] + ] + ], + [ + [ + [ + 130.639906399064, + 42.39578427819558 + ], + [ + 129.99549995499956, + 42.98479467215512 + ], + [ + 129.5958959589596, + 42.42455777445221 + ], + [ + 128.05148051480518, + 41.99464788920588 + ], + [ + 128.20988209882103, + 41.466569604966296 + ], + [ + 127.34227342273425, + 41.503805894239605 + ], + [ + 126.87066870668707, + 41.81692923585602 + ], + [ + 126.18306183061833, + 41.107747181059906 + ], + [ + 125.08145081450817, + 40.56951354520034 + ], + [ + 124.26424264242644, + 39.9280338345375 + ], + [ + 122.86742867428677, + 39.63860631336773 + ], + [ + 122.1330213302133, + 39.16976758024475 + ], + [ + 121.05301053010533, + 38.897265645108305 + ], + [ + 121.58581585815858, + 39.36102670242127 + ], + [ + 121.3770137701377, + 39.750315181187645 + ], + [ + 122.16902169021694, + 40.42226094671045 + ], + [ + 121.63981639816399, + 40.946954113743374 + ], + [ + 120.76860768607685, + 40.593209365646985 + ], + [ + 119.63819638196384, + 39.897567779677516 + ], + [ + 119.02259022590226, + 39.25270295180803 + ], + [ + 118.04338043380437, + 39.2036187523114 + ], + [ + 117.53217532175324, + 38.7381651363951 + ], + [ + 118.06138061380614, + 38.06114169506229 + ], + [ + 118.87858878588787, + 37.89696351053908 + ], + [ + 118.91098910989109, + 37.4484354806561 + ], + [ + 119.70299702997033, + 37.15562284227967 + ], + [ + 120.82260822608225, + 37.86988257288577 + ], + [ + 121.71181711817121, + 37.48059409411941 + ], + [ + 122.35622356223564, + 37.455205715069425 + ], + [ + 122.51822518225185, + 36.9305125480365 + ], + [ + 121.10341103411037, + 36.65124037848672 + ], + [ + 120.63540635406355, + 36.11131418402381 + ], + [ + 119.66339663396633, + 35.61031683743754 + ], + [ + 119.15219152191526, + 34.90959757565808 + ], + [ + 120.22860228602286, + 34.35951602957519 + ], + [ + 120.62100621006209, + 33.37613948103929 + ], + [ + 121.22941229412294, + 32.46046527663667 + ], + [ + 121.90981909819101, + 31.692043670723933 + ], + [ + 121.89181891818919, + 30.949010443861184 + ], + [ + 121.26541265412658, + 30.676508508724723 + ], + [ + 121.50301503015032, + 30.14335254867514 + ], + [ + 122.09342093420935, + 29.83192176566206 + ], + [ + 121.93861938619386, + 29.017801077459353 + ], + [ + 121.6830168301683, + 28.22568365109997 + ], + [ + 121.1250112501125, + 28.13597804512338 + ], + [ + 120.39420394203944, + 27.05274053899089 + ], + [ + 119.58419584195843, + 25.741007621408585 + ], + [ + 118.65538655386553, + 24.547753806059518 + ], + [ + 117.28017280172804, + 23.625309367243574 + ], + [ + 115.89055890558905, + 22.78241518278422 + ], + [ + 114.7637476374764, + 22.667321197757644 + ], + [ + 114.15174151741519, + 22.223870843684665 + ], + [ + 113.80613806138064, + 22.548842095524407 + ], + [ + 113.2409324093241, + 22.051229866144794 + ], + [ + 111.84411844118443, + 21.55023251955852 + ], + [ + 110.78570785707859, + 21.397902245258635 + ], + [ + 110.4437044370444, + 20.341745676779468 + ], + [ + 109.88929889298896, + 20.28250612566285 + ], + [ + 109.62649626496267, + 21.008613766492275 + ], + [ + 109.86409864098641, + 21.394517128051973 + ], + [ + 108.52128521285215, + 21.71441070408173 + ], + [ + 108.04968049680497, + 21.551925078161858 + ], + [ + 107.04167041670416, + 21.81257910307498 + ], + [ + 106.56646566465668, + 22.218793167874665 + ], + [ + 106.72486724867252, + 22.794263093007544 + ], + [ + 105.81045810458107, + 22.977059422167414 + ], + [ + 105.3280532805328, + 23.352807432107113 + ], + [ + 104.47844478444784, + 22.81965147205753 + ], + [ + 103.50283502835032, + 22.704557487030954 + ], + [ + 102.70722707227071, + 22.709635162840954 + ], + [ + 102.17082170821709, + 22.464214165357802 + ], + [ + 101.65241652416523, + 22.318654125471255 + ], + [ + 101.80361803618035, + 21.17448450961882 + ], + [ + 101.2708127081271, + 21.20156544727213 + ], + [ + 101.18081180811811, + 21.436831093135282 + ], + [ + 101.14841148411483, + 21.84981539234829 + ], + [ + 100.41760417604178, + 21.558695312575182 + ], + [ + 99.98199981999824, + 21.743184200338376 + ], + [ + 99.24039240392403, + 22.118932210278075 + ], + [ + 99.53199531995318, + 22.948285925910767 + ], + [ + 98.89838898388984, + 23.142930165293947 + ], + [ + 98.6607866078661, + 24.063682045506553 + ], + [ + 97.60597605976062, + 23.89781130238002 + ], + [ + 97.72477724777247, + 25.084294883315764 + ], + [ + 98.67158671586719, + 25.91872627475844 + ], + [ + 98.71118711187114, + 26.743002314581133 + ], + [ + 98.68238682386823, + 27.508038803287207 + ], + [ + 98.24678246782469, + 27.74668956635702 + ], + [ + 97.91197911979123, + 28.33569996031656 + ], + [ + 97.32877328773287, + 28.26122738176994 + ], + [ + 96.2487624876249, + 28.41186509746649 + ], + [ + 96.58716587165873, + 28.831619631092835 + ], + [ + 96.11916119161191, + 29.452788638515685 + ], + [ + 95.40635406354062, + 29.031341546286015 + ], + [ + 94.56754567545676, + 29.276762543769152 + ], + [ + 93.4119341193412, + 28.640360508916316 + ], + [ + 92.50472504725047, + 27.897327282053567 + ], + [ + 91.69831698316983, + 27.77207794540699 + ], + [ + 91.25911259112593, + 28.04119476333679 + ], + [ + 90.72990729907298, + 28.064890583783438 + ], + [ + 90.01710017100174, + 28.296771112439913 + ], + [ + 89.4770947709477, + 28.042887321940114 + ], + [ + 88.81468814688145, + 27.299854095077364 + ], + [ + 88.73188731887319, + 28.086893845626747 + ], + [ + 88.11988119881198, + 27.87701657881358 + ], + [ + 86.95346953469533, + 27.97349241920351 + ], + [ + 85.82305823058232, + 28.20368038925666 + ], + [ + 85.01305013050131, + 28.642053067519655 + ], + [ + 84.23544235442353, + 28.840082424109497 + ], + [ + 83.90063900639007, + 29.320769067455785 + ], + [ + 83.33543335433353, + 29.46294399013567 + ], + [ + 82.32742327423273, + 30.11457905241849 + ], + [ + 81.52461524615245, + 30.422624718224924 + ], + [ + 81.1106111061111, + 30.18397395515511 + ], + [ + 79.7209972099721, + 30.883000658331227 + ], + [ + 78.73818738187384, + 31.5160175759774 + ], + [ + 78.45738457384573, + 32.61787322674654 + ], + [ + 79.17739177391775, + 32.484161097083316 + ], + [ + 79.20979209792097, + 32.99362123668625 + ], + [ + 78.81018810188101, + 33.50646649349585 + ], + [ + 78.91098910989109, + 34.32227974030188 + ], + [ + 77.83817838178385, + 35.49353029380762 + ], + [ + 76.19296192961929, + 35.898051800003984 + ], + [ + 75.89775897758977, + 36.66647340591672 + ], + [ + 75.15975159751599, + 37.133619580436346 + ], + [ + 74.97974979749799, + 37.419661984399454 + ], + [ + 74.82854828548287, + 37.99005423372235 + ], + [ + 74.86454864548645, + 38.37934271248871 + ], + [ + 74.25614256142563, + 38.6061455653352 + ], + [ + 73.92853928539287, + 38.50628460773861 + ], + [ + 73.67653676536767, + 39.43042160515789 + ], + [ + 73.96093960939609, + 39.66060957521104 + ], + [ + 73.82053820538206, + 39.894182662470854 + ], + [ + 74.77814778147783, + 40.366406512800495 + ], + [ + 75.46935469354693, + 40.562743310787 + ], + [ + 76.5277652776528, + 40.42733862252044 + ], + [ + 76.90576905769058, + 41.06712577457995 + ], + [ + 78.18738187381877, + 41.18560487681319 + ], + [ + 78.54378543785441, + 41.58166358999287 + ], + [ + 80.12060120601205, + 42.12328234305912 + ], + [ + 80.26100261002608, + 42.350085195905606 + ], + [ + 80.18180181801819, + 42.9204774452285 + ], + [ + 80.86580865808656, + 43.18113147014162 + ], + [ + 79.96579965799657, + 44.91769659716027 + ], + [ + 81.94581945819459, + 45.31714042754663 + ], + [ + 82.46062460624609, + 45.53886560458312 + ], + [ + 83.18063180631805, + 47.32959260690839 + ], + [ + 85.16425164251643, + 47.001236237861974 + ], + [ + 85.72225722257224, + 47.453149384951615 + ], + [ + 85.76905769057691, + 48.455144078124164 + ], + [ + 86.59706597065974, + 48.549927359910754 + ], + [ + 87.36027360273602, + 49.21510289102025 + ], + [ + 87.7526775267753, + 49.2980382625835 + ], + [ + 88.01548015480154, + 48.59901155940739 + ], + [ + 88.85428854288546, + 48.06924071656448 + ], + [ + 90.27990279902798, + 47.69349270662477 + ], + [ + 90.97110971109714, + 46.88783481143872 + ], + [ + 90.58590585905858, + 45.71996937513964 + ], + [ + 90.9459094590946, + 45.28667437268663 + ], + [ + 92.13392133921343, + 45.115725953750115 + ], + [ + 93.48033480334806, + 44.97524358967357 + ], + [ + 94.68994689946902, + 44.35238202364738 + ], + [ + 95.30555305553054, + 44.240673155827466 + ], + [ + 95.76275762757626, + 43.31992127561486 + ], + [ + 96.34956349563498, + 42.725833205845305 + ], + [ + 97.45117451174514, + 42.74952902629195 + ], + [ + 99.51759517595178, + 42.524418732048815 + ], + [ + 100.84600846008459, + 42.663208537522024 + ], + [ + 101.83241832418327, + 42.514263380428815 + ], + [ + 103.3120331203312, + 41.90663484183263 + ], + [ + 104.52164521645216, + 41.90832740043595 + ], + [ + 104.96444964449648, + 41.59689661742286 + ], + [ + 106.13086130861308, + 42.13513025328244 + ], + [ + 107.74367743677436, + 42.482104766965506 + ], + [ + 109.24489244892447, + 42.5193410562388 + ], + [ + 110.41130411304113, + 42.871393245731866 + ], + [ + 111.13131131311314, + 43.40624176438479 + ], + [ + 111.82971829718298, + 43.74306092644784 + ], + [ + 111.66771667716677, + 44.073109854097595 + ], + [ + 111.34731347313476, + 44.45732065705397 + ], + [ + 111.87291872918729, + 45.10218548492347 + ], + [ + 112.43452434524346, + 45.01247987894686 + ], + [ + 113.46413464134645, + 44.80937284654701 + ], + [ + 114.46134461344616, + 45.33914368938994 + ], + [ + 115.98415984159845, + 45.726739609552965 + ], + [ + 116.71856718567187, + 46.388530023455786 + ], + [ + 117.42057420574207, + 46.672879868815556 + ], + [ + 118.8749887498875, + 46.80489943987547 + ], + [ + 119.66339663396633, + 46.693190572055556 + ], + [ + 119.77139771397714, + 47.04862787875527 + ], + [ + 118.86778867788678, + 47.747654581931386 + ], + [ + 118.0649806498065, + 48.06754815796114 + ], + [ + 117.29457294572944, + 47.69687782383144 + ], + [ + 116.30816308163082, + 47.852593215337976 + ], + [ + 115.74295742957429, + 47.727343878691414 + ], + [ + 115.48375483754836, + 48.13525050209441 + ], + [ + 116.19296192961929, + 49.13386007806031 + ], + [ + 116.67896678966792, + 49.88874121514638 + ], + [ + 117.8777787777878, + 49.51130064660336 + ], + [ + 119.28899288992892, + 50.14262500564618 + ], + [ + 119.27819278192783, + 50.58269024251251 + ], + [ + 120.18180181801819, + 51.643924486801694 + ], + [ + 120.73980739807399, + 51.96381806283142 + ], + [ + 120.72540725407254, + 52.51559216751767 + ], + [ + 120.17820178201782, + 52.75424293058748 + ], + [ + 121.00261002610029, + 53.25185515996708 + ], + [ + 122.24462244622447, + 53.43126637192029 + ], + [ + 123.57303573035733, + 53.45834730957358 + ], + [ + 125.06705067050672, + 53.160456995387165 + ], + [ + 125.94545945459458, + 52.793171778464114 + ], + [ + 126.56466564665647, + 51.78440685087824 + ], + [ + 126.93906939069393, + 51.35449696563191 + ], + [ + 127.28827288272885, + 50.74009819262238 + ], + [ + 127.65907659076589, + 49.760106761293144 + ], + [ + 129.3978939789398, + 49.44021318526339 + ], + [ + 130.58230582305822, + 48.72933857186396 + ], + [ + 130.98550985509854, + 47.789968547014695 + ], + [ + 132.50832508325084, + 47.78827598841136 + ], + [ + 133.37233372333725, + 48.18264214298773 + ], + [ + 135.02475024750248, + 48.47883989857081 + ], + [ + 134.49914499144995, + 47.57839872159818 + ], + [ + 134.1139411394114, + 47.212806063278464 + ], + [ + 133.76833768337684, + 46.11772064692266 + ], + [ + 133.09873098730986, + 45.14449945000675 + ], + [ + 131.88191881918823, + 45.32052554475328 + ], + [ + 131.02511025110255, + 44.968473355260215 + ], + [ + 131.28791287912878, + 44.11203870197423 + ], + [ + 131.1439114391144, + 42.9306327968485 + ], + [ + 130.63270632706326, + 42.903551859195176 + ], + [ + 130.639906399064, + 42.39578427819558 + ] + ] + ] + ] + }, + "countryRef": { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6946564429208211, + "skewed": 0.5270366117020491, + "clumpy": 0.4012377069548483, + "sparse": 0.38136340078424724, + "striated": 0.5303484391845628, + "convex": 0.2651029171987569, + "skinny": 0.5745486899029439, + "stringy": 0.7537315242607716, + "monotonic": 0.4234366795237936, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 101.98648753328654, + -87.4369258840433 + ], + "drag": [ + 101.98648753328654, + -87.4369258840433 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 50 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Iran (6 Countries)", + "timestamp": 1522409171033, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 364, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 53.92313923139233, + 37.1996293659663 + ], + [ + 54.801548015480165, + 37.392581046746145 + ], + [ + 55.51075510755109, + 37.96466585467236 + ], + [ + 56.18036180361804, + 37.93589235841573 + ], + [ + 56.619566195661974, + 38.12207380478225 + ], + [ + 57.32877328773287, + 38.02898308159898 + ], + [ + 58.437584375843755, + 37.522908059202706 + ], + [ + 59.233192331923334, + 37.41289174998613 + ], + [ + 60.3780037800378, + 36.527683600443495 + ], + [ + 61.12321123211234, + 36.49213986977351 + ], + [ + 61.20961209612096, + 35.64924568531417 + ], + [ + 60.80280802808028, + 34.40352255326181 + ], + [ + 60.52920529205292, + 33.675722353829045 + ], + [ + 60.96480964809649, + 33.52846975533916 + ], + [ + 60.53640536405365, + 32.98177332646293 + ], + [ + 60.86400864008641, + 32.18288566569022 + ], + [ + 60.943209432094335, + 31.54817618944071 + ], + [ + 61.69921699216994, + 31.378920329107515 + ], + [ + 61.7820178201782, + 30.73574805984134 + ], + [ + 60.8748087480875, + 29.828536648455383 + ], + [ + 61.36801368013681, + 29.30384348142246 + ], + [ + 61.77121771217713, + 28.699600060032935 + ], + [ + 62.728827288272896, + 28.259534823166618 + ], + [ + 62.754027540275416, + 27.37940434943397 + ], + [ + 63.2328323283233, + 27.216918723514098 + ], + [ + 63.315633156331586, + 26.756542783407795 + ], + [ + 61.87561875618758, + 26.24031240939152 + ], + [ + 61.49761497614978, + 25.07752464890244 + ], + [ + 59.6147961479615, + 25.380492638898858 + ], + [ + 58.52398523985241, + 25.610680608952023 + ], + [ + 57.39717397173973, + 25.739315062805247 + ], + [ + 56.972369723697255, + 26.96642005022096 + ], + [ + 56.493564935649374, + 27.144138703570817 + ], + [ + 55.723157231572316, + 26.964727491617623 + ], + [ + 54.71514715147151, + 26.480655731064672 + ], + [ + 53.494734947349485, + 26.812397217317738 + ], + [ + 52.48312483124832, + 27.580818823230473 + ], + [ + 51.52191521915219, + 27.865168668590258 + ], + [ + 50.85230852308524, + 28.81469404505951 + ], + [ + 50.11430114301143, + 30.14843022448514 + ], + [ + 49.57789577895781, + 29.98594459856527 + ], + [ + 48.94068940689408, + 30.317686084818334 + ], + [ + 48.56628566285664, + 29.92670504744865 + ], + [ + 48.015480154801566, + 30.453090773084895 + ], + [ + 48.00468004680047, + 30.984554174531155 + ], + [ + 47.68427684276844, + 30.984554174531155 + ], + [ + 47.84987849878499, + 31.708969256757257 + ], + [ + 47.33507335073352, + 32.46892806965333 + ], + [ + 46.111061110611104, + 33.0173170571329 + ], + [ + 45.416254162541634, + 33.96853499220549 + ], + [ + 45.65025650256504, + 34.74880450834155 + ], + [ + 46.15066150661508, + 35.09408646342128 + ], + [ + 46.07506075060752, + 35.67801918157082 + ], + [ + 45.419854198542, + 35.97760205436059 + ], + [ + 44.771847718477204, + 37.170855869709655 + ], + [ + 44.22464224642246, + 37.9714360890857 + ], + [ + 44.42264422644226, + 38.281174313495455 + ], + [ + 44.109441094410954, + 39.42872904655455 + ], + [ + 44.79344793447936, + 39.713078891914336 + ], + [ + 44.95184951849518, + 39.3356383233713 + ], + [ + 45.459454594545946, + 38.87356982466166 + ], + [ + 46.14346143461435, + 38.74155025360176 + ], + [ + 46.507065070650725, + 38.770323749858406 + ], + [ + 47.68427684276844, + 39.508279300911155 + ], + [ + 48.05868058680588, + 39.582751879457774 + ], + [ + 48.35388353883539, + 39.288246682478004 + ], + [ + 48.0118801188012, + 38.79401957030505 + ], + [ + 48.634686346863475, + 38.271018961875455 + ], + [ + 48.88308883088831, + 38.32010316137209 + ], + [ + 49.19989199892001, + 37.582147610319325 + ], + [ + 50.14670146701468, + 37.3739629021095 + ], + [ + 50.84150841508415, + 36.87296555552322 + ], + [ + 52.263522635226366, + 36.70032457798335 + ], + [ + 53.82593825938261, + 36.96436372010315 + ], + [ + 53.92313923139233, + 37.1996293659663 + ] + ] + ] + }, + "countryRef": { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.394746160834365, + "skewed": 0.382757128144686, + "clumpy": 0.30199573488944664, + "sparse": 0.9115867612444344, + "striated": 0.3574136637300924, + "convex": 0.5609470578081679, + "skinny": 0.6796628328594703, + "stringy": 0.8334963993929865, + "monotonic": 0.8100095662872291, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 49.84732817638162, + -87.77167966519048 + ], + "drag": [ + 49.84732817638162, + -87.77167966519048 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 51 + }, + { + "attrs": { + "name": "Selected Iran (6 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.39\",\"payload\":{\"numVal\":0.394746160834365},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.38\",\"payload\":{\"numVal\":0.382757128144686},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.3\",\"payload\":{\"numVal\":0.30199573488944664},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.91\",\"payload\":{\"numVal\":0.9115867612444344},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.36\",\"payload\":{\"numVal\":0.3574136637300924},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.56\",\"payload\":{\"numVal\":0.5609470578081679},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.68\",\"payload\":{\"numVal\":0.6796628328594703},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.83\",\"payload\":{\"numVal\":0.8334963993929865},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.81\",\"payload\":{\"numVal\":0.8100095662872291},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Japan\",\"text\":\"Japan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = China\",\"text\":\"China\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = India\",\"text\":\"India\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 52 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Iran (6 Countries)", + "timestamp": 1522409171033, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 356, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 77.83817838178385, + 35.49353029380762 + ], + [ + 78.91098910989109, + 34.32227974030188 + ], + [ + 78.81018810188101, + 33.50646649349585 + ], + [ + 79.20979209792097, + 32.99362123668625 + ], + [ + 79.17739177391775, + 32.484161097083316 + ], + [ + 78.45738457384573, + 32.61787322674654 + ], + [ + 78.73818738187384, + 31.5160175759774 + ], + [ + 79.7209972099721, + 30.883000658331227 + ], + [ + 81.1106111061111, + 30.18397395515511 + ], + [ + 80.4770047700477, + 29.73036824946213 + ], + [ + 80.08820088200883, + 28.794383341819525 + ], + [ + 81.05661056610569, + 28.415250214673165 + ], + [ + 81.9998199982, + 27.926100778310214 + ], + [ + 83.30303303033031, + 27.364171322003983 + ], + [ + 84.67464674646749, + 27.235536868150746 + ], + [ + 85.25065250652506, + 26.72607672854781 + ], + [ + 86.02466024660248, + 26.63129344676122 + ], + [ + 87.22707227072272, + 26.397720359501406 + ], + [ + 88.0586805868059, + 26.414645945534716 + ], + [ + 88.17388173881739, + 26.810704658714414 + ], + [ + 88.04428044280445, + 27.44541413496391 + ], + [ + 88.11988119881198, + 27.87701657881358 + ], + [ + 88.73188731887319, + 28.086893845626747 + ], + [ + 88.81468814688145, + 27.299854095077364 + ], + [ + 88.83628836288364, + 27.09843962128086 + ], + [ + 89.74349743497436, + 26.719306494134486 + ], + [ + 90.37350373503733, + 26.875021885641033 + ], + [ + 91.21591215912161, + 26.809012100111076 + ], + [ + 92.03312033120335, + 26.837785596367723 + ], + [ + 92.10512105121052, + 27.45218436937725 + ], + [ + 91.69831698316983, + 27.77207794540699 + ], + [ + 92.50472504725047, + 27.897327282053567 + ], + [ + 93.4119341193412, + 28.640360508916316 + ], + [ + 94.56754567545676, + 29.276762543769152 + ], + [ + 95.40635406354062, + 29.031341546286015 + ], + [ + 96.11916119161191, + 29.452788638515685 + ], + [ + 96.58716587165873, + 28.831619631092835 + ], + [ + 96.2487624876249, + 28.41186509746649 + ], + [ + 97.32877328773287, + 28.26122738176994 + ], + [ + 97.4007740077401, + 27.88209425462358 + ], + [ + 97.05157051570518, + 27.699297925463725 + ], + [ + 97.13437134371344, + 27.08320659385086 + ], + [ + 96.41796417964179, + 27.264310364407393 + ], + [ + 95.12555125551256, + 26.573746454247924 + ], + [ + 95.15435154351542, + 26.001661646321708 + ], + [ + 94.60354603546034, + 25.16215257906903 + ], + [ + 94.5531455314553, + 24.674695701309417 + ], + [ + 94.10674106741067, + 23.850419661486725 + ], + [ + 93.32553325533257, + 24.078915072936553 + ], + [ + 93.28593285932862, + 23.043069207697357 + ], + [ + 93.05913059130592, + 22.702864928427616 + ], + [ + 93.16713167131672, + 22.278032718991284 + ], + [ + 92.67392673926742, + 22.04107451452481 + ], + [ + 92.14472144721447, + 23.627001925846898 + ], + [ + 91.87111871118714, + 23.623616808640236 + ], + [ + 91.70551705517056, + 22.985522215184062 + ], + [ + 91.15831158311585, + 23.50344514780366 + ], + [ + 91.46791467914682, + 24.072144838523215 + ], + [ + 91.91431914319145, + 24.12969183103651 + ], + [ + 92.37512375123754, + 24.97597113270251 + ], + [ + 91.79911799117991, + 25.146919551639044 + ], + [ + 90.87390873908743, + 25.133379082812397 + ], + [ + 89.91989919899203, + 25.270476329682282 + ], + [ + 89.83349833498335, + 25.964425357048412 + ], + [ + 89.3546935469355, + 26.01520211514837 + ], + [ + 88.56268562685625, + 26.446804558998025 + ], + [ + 88.20988209882097, + 25.768088559061894 + ], + [ + 88.92988929889299, + 25.238317716218972 + ], + [ + 88.30708307083074, + 24.865954823485936 + ], + [ + 88.0838808388084, + 24.502054723769547 + ], + [ + 88.69948699486997, + 24.232937905839762 + ], + [ + 88.53028530285303, + 23.63038704305356 + ], + [ + 88.87588875888758, + 22.87889102317415 + ], + [ + 89.03069030690307, + 22.056307541954794 + ], + [ + 88.89028890288904, + 21.69071488363508 + ], + [ + 88.20988209882097, + 21.702562793858405 + ], + [ + 86.97506975069751, + 21.4960706442519 + ], + [ + 87.03267032670328, + 20.74288206576915 + ], + [ + 86.49986499864997, + 20.152179113206287 + ], + [ + 85.05985059850599, + 19.478540789080142 + ], + [ + 83.94023940239401, + 18.3022125597644 + ], + [ + 83.18783187831878, + 17.67088820072155 + ], + [ + 82.19422194221943, + 17.015868021232066 + ], + [ + 82.19062190621906, + 16.557184639729087 + ], + [ + 81.69381693816939, + 16.31007108364261 + ], + [ + 80.79020790207903, + 15.951248659736223 + ], + [ + 80.32580325803258, + 15.898779343032942 + ], + [ + 80.02340023400234, + 15.13712797153353 + ], + [ + 80.23220232202323, + 13.835550405571212 + ], + [ + 80.28620286202863, + 13.006196689938534 + ], + [ + 79.86139861398613, + 12.056671313469266 + ], + [ + 79.85779857798576, + 10.35734247572394 + ], + [ + 79.33939339393396, + 10.308258276227306 + ], + [ + 78.8857888578886, + 9.546606904727895 + ], + [ + 79.18819188191884, + 9.216557977078153 + ], + [ + 78.27738277382775, + 8.932208131718383 + ], + [ + 77.94257942579429, + 8.253492131782238 + ], + [ + 77.53937539375397, + 7.965757169215806 + ], + [ + 76.59256592565924, + 8.900049518255074 + ], + [ + 76.13176131761321, + 10.299795483210644 + ], + [ + 75.74655746557465, + 11.308560410796517 + ], + [ + 75.39735397353974, + 11.780784261126158 + ], + [ + 74.86454864548645, + 12.742157547818735 + ], + [ + 74.61614616146161, + 13.992958355681097 + ], + [ + 74.44334443344434, + 14.617512480310609 + ], + [ + 73.53253532535325, + 15.99017750761287 + ], + [ + 73.11853118531187, + 17.928157108428024 + ], + [ + 72.81972819728199, + 19.20773141254702 + ], + [ + 72.82332823328235, + 20.419603372532734 + ], + [ + 72.62892628926289, + 21.35558828017534 + ], + [ + 71.17451174511746, + 20.758115093199137 + ], + [ + 70.4689046890469, + 20.876594195432375 + ], + [ + 69.16569165691658, + 22.088466155418104 + ], + [ + 69.64449644496446, + 22.450673696531155 + ], + [ + 69.34929349293495, + 22.843347292504177 + ], + [ + 68.17568175681757, + 23.691319152773517 + ], + [ + 68.84168841688418, + 24.35987980108966 + ], + [ + 71.04491044910449, + 24.356494683883 + ], + [ + 70.84330843308433, + 25.214621895772325 + ], + [ + 70.28170281702819, + 25.722389476771923 + ], + [ + 70.17010170101702, + 26.492503641287996 + ], + [ + 69.5148951489515, + 26.941031671170975 + ], + [ + 70.61650616506165, + 27.988725446633495 + ], + [ + 71.77931779317794, + 27.912560309483553 + ], + [ + 72.82332823328235, + 28.961946643549396 + ], + [ + 73.44973449734499, + 29.97578924694527 + ], + [ + 74.42174421744218, + 30.979476498721155 + ], + [ + 74.40734407344075, + 31.692043670723933 + ], + [ + 75.25695256952571, + 32.270898713063474 + ], + [ + 74.45054450544507, + 32.765125825236424 + ], + [ + 74.10494104941051, + 33.44214926656923 + ], + [ + 73.74853748537487, + 34.31720206449188 + ], + [ + 74.24174241742418, + 34.74880450834155 + ], + [ + 75.75735757357575, + 34.50507606946174 + ], + [ + 76.87336873368736, + 34.654021226554946 + ], + [ + 77.83817838178385, + 35.49353029380762 + ] + ] + ] + }, + "countryRef": { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.5048272262875664, + "skewed": 0.6089799322904703, + "clumpy": 0.3843233422958525, + "sparse": 0.4819382905803449, + "striated": 0.33053227884333025, + "convex": 0.9242540633378129, + "skinny": 0.5042046136998064, + "stringy": 0.43895667105238734, + "monotonic": 0.015805236239271547, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 76.2033867523995, + -88.15719671701233 + ], + "drag": [ + 76.2033867523995, + -88.15719671701233 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 53 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Pakistan (7 Countries)", + "timestamp": 1522409183080, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 586, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.15975159751599, + 37.133619580436346 + ], + [ + 75.89775897758977, + 36.66647340591672 + ], + [ + 76.19296192961929, + 35.898051800003984 + ], + [ + 77.83817838178385, + 35.49353029380762 + ], + [ + 76.87336873368736, + 34.654021226554946 + ], + [ + 75.75735757357575, + 34.50507606946174 + ], + [ + 74.24174241742418, + 34.74880450834155 + ], + [ + 73.74853748537487, + 34.31720206449188 + ], + [ + 74.10494104941051, + 33.44214926656923 + ], + [ + 74.45054450544507, + 32.765125825236424 + ], + [ + 75.25695256952571, + 32.270898713063474 + ], + [ + 74.40734407344075, + 31.692043670723933 + ], + [ + 74.42174421744218, + 30.979476498721155 + ], + [ + 73.44973449734499, + 29.97578924694527 + ], + [ + 72.82332823328235, + 28.961946643549396 + ], + [ + 71.77931779317794, + 27.912560309483553 + ], + [ + 70.61650616506165, + 27.988725446633495 + ], + [ + 69.5148951489515, + 26.941031671170975 + ], + [ + 70.17010170101702, + 26.492503641287996 + ], + [ + 70.28170281702819, + 25.722389476771923 + ], + [ + 70.84330843308433, + 25.214621895772325 + ], + [ + 71.04491044910449, + 24.356494683883 + ], + [ + 68.84168841688418, + 24.35987980108966 + ], + [ + 68.17568175681757, + 23.691319152773517 + ], + [ + 67.44487444874449, + 23.945202943273316 + ], + [ + 67.14607146071461, + 24.662847791086094 + ], + [ + 66.37206372063721, + 25.42449916258549 + ], + [ + 64.52884528845289, + 25.23662515761565 + ], + [ + 62.90522905229054, + 25.218007012978987 + ], + [ + 61.49761497614978, + 25.07752464890244 + ], + [ + 61.87561875618758, + 26.24031240939152 + ], + [ + 63.315633156331586, + 26.756542783407795 + ], + [ + 63.2328323283233, + 27.216918723514098 + ], + [ + 62.754027540275416, + 27.37940434943397 + ], + [ + 62.728827288272896, + 28.259534823166618 + ], + [ + 61.77121771217713, + 28.699600060032935 + ], + [ + 61.36801368013681, + 29.30384348142246 + ], + [ + 60.8748087480875, + 29.828536648455383 + ], + [ + 62.54882548825489, + 29.319076508852447 + ], + [ + 63.549635496354966, + 29.46802166594567 + ], + [ + 64.14724147241472, + 29.34107977069577 + ], + [ + 64.34884348843488, + 29.5594198305256 + ], + [ + 65.04725047250474, + 29.471406783152332 + ], + [ + 66.3468634686347, + 29.887776199572002 + ], + [ + 66.3828638286383, + 30.739133177048004 + ], + [ + 66.93726937269375, + 31.304447750560897 + ], + [ + 67.68247682476826, + 31.302755191957573 + ], + [ + 67.7940779407794, + 31.58371992011068 + ], + [ + 68.55728557285573, + 31.714046932567243 + ], + [ + 68.9280892808928, + 31.62095620938399 + ], + [ + 69.3168931689317, + 31.9019209375371 + ], + [ + 69.2628926289263, + 32.50277924171996 + ], + [ + 69.68769687696877, + 33.105330104506166 + ], + [ + 70.3249032490325, + 33.359213895005965 + ], + [ + 69.92889928899291, + 34.01931175030545 + ], + [ + 70.88290882908831, + 33.98884569544548 + ], + [ + 71.15651156511566, + 34.34936067795519 + ], + [ + 71.11331113311135, + 34.73357148091155 + ], + [ + 71.61371613716139, + 35.153326014537896 + ], + [ + 71.49851498514985, + 35.65093824391751 + ], + [ + 71.26091260912611, + 36.074077894750516 + ], + [ + 71.84771847718477, + 36.51075801441017 + ], + [ + 72.92052920529207, + 36.72063528122334 + ], + [ + 74.0689406894069, + 36.83572926624991 + ], + [ + 74.57654576545767, + 37.02021815401311 + ], + [ + 75.15975159751599, + 37.133619580436346 + ] + ] + ] + }, + "countryRef": { + "country": "Pakistan", + "count": 216, + "this": { + "country": "Pakistan", + "year": 2009, + "map_id": 586, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 4227, + "child_mortality": 465546, + "fertility": 3.51, + "life_expect": 64.4, + "population": 41125163 + }, + "x": 4227, + "y": 64.4, + "size": 41125163, + "color": "Asia", + "map_id": 586 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Pakistan", + "count": 216, + "this": { + "country": "Pakistan", + "year": 2009, + "map_id": 586, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 4227, + "child_mortality": 465546, + "fertility": 3.51, + "life_expect": 64.4, + "population": 41125163 + }, + "x": 4227, + "y": 64.4, + "size": 41125163, + "color": "Asia", + "map_id": 586 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.10845160111338159, + "skewed": 0.1570063440094167, + "clumpy": 0.4496788880135987, + "sparse": 0.14142552754179172, + "striated": 0.9217385925554049, + "convex": 0.3612946125493306, + "skinny": 0.8135722503751182, + "stringy": 0.44950589112044725, + "monotonic": 0.643326290909179, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Pakistan", + "count": 216, + "this": { + "country": "Pakistan", + "year": 2009, + "map_id": 586, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 4227, + "child_mortality": 465546, + "fertility": 3.51, + "life_expect": 64.4, + "population": 41125163 + }, + "x": 4227, + "y": 64.4, + "size": 41125163, + "color": "Asia", + "map_id": 586 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 69.32789321082961, + -87.94296273995526 + ], + "drag": [ + 69.32789321082961, + -87.94296273995526 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 54 + }, + { + "attrs": { + "name": "Selected Pakistan (7 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.11\",\"payload\":{\"numVal\":0.10845160111338159},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.16\",\"payload\":{\"numVal\":0.1570063440094167},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.45\",\"payload\":{\"numVal\":0.4496788880135987},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.14\",\"payload\":{\"numVal\":0.14142552754179172},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.92\",\"payload\":{\"numVal\":0.9217385925554049},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.36\",\"payload\":{\"numVal\":0.3612946125493306},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.81\",\"payload\":{\"numVal\":0.8135722503751182},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.45\",\"payload\":{\"numVal\":0.44950589112044725},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.64\",\"payload\":{\"numVal\":0.643326290909179},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Japan\",\"text\":\"Japan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = China\",\"text\":\"China\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = India\",\"text\":\"India\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Pakistan\",\"text\":\"Pakistan\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 55 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Pakistan (7 Countries)", + "timestamp": 1522409183080, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 364, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 53.92313923139233, + 37.1996293659663 + ], + [ + 54.801548015480165, + 37.392581046746145 + ], + [ + 55.51075510755109, + 37.96466585467236 + ], + [ + 56.18036180361804, + 37.93589235841573 + ], + [ + 56.619566195661974, + 38.12207380478225 + ], + [ + 57.32877328773287, + 38.02898308159898 + ], + [ + 58.437584375843755, + 37.522908059202706 + ], + [ + 59.233192331923334, + 37.41289174998613 + ], + [ + 60.3780037800378, + 36.527683600443495 + ], + [ + 61.12321123211234, + 36.49213986977351 + ], + [ + 61.20961209612096, + 35.64924568531417 + ], + [ + 60.80280802808028, + 34.40352255326181 + ], + [ + 60.52920529205292, + 33.675722353829045 + ], + [ + 60.96480964809649, + 33.52846975533916 + ], + [ + 60.53640536405365, + 32.98177332646293 + ], + [ + 60.86400864008641, + 32.18288566569022 + ], + [ + 60.943209432094335, + 31.54817618944071 + ], + [ + 61.69921699216994, + 31.378920329107515 + ], + [ + 61.7820178201782, + 30.73574805984134 + ], + [ + 60.8748087480875, + 29.828536648455383 + ], + [ + 61.36801368013681, + 29.30384348142246 + ], + [ + 61.77121771217713, + 28.699600060032935 + ], + [ + 62.728827288272896, + 28.259534823166618 + ], + [ + 62.754027540275416, + 27.37940434943397 + ], + [ + 63.2328323283233, + 27.216918723514098 + ], + [ + 63.315633156331586, + 26.756542783407795 + ], + [ + 61.87561875618758, + 26.24031240939152 + ], + [ + 61.49761497614978, + 25.07752464890244 + ], + [ + 59.6147961479615, + 25.380492638898858 + ], + [ + 58.52398523985241, + 25.610680608952023 + ], + [ + 57.39717397173973, + 25.739315062805247 + ], + [ + 56.972369723697255, + 26.96642005022096 + ], + [ + 56.493564935649374, + 27.144138703570817 + ], + [ + 55.723157231572316, + 26.964727491617623 + ], + [ + 54.71514715147151, + 26.480655731064672 + ], + [ + 53.494734947349485, + 26.812397217317738 + ], + [ + 52.48312483124832, + 27.580818823230473 + ], + [ + 51.52191521915219, + 27.865168668590258 + ], + [ + 50.85230852308524, + 28.81469404505951 + ], + [ + 50.11430114301143, + 30.14843022448514 + ], + [ + 49.57789577895781, + 29.98594459856527 + ], + [ + 48.94068940689408, + 30.317686084818334 + ], + [ + 48.56628566285664, + 29.92670504744865 + ], + [ + 48.015480154801566, + 30.453090773084895 + ], + [ + 48.00468004680047, + 30.984554174531155 + ], + [ + 47.68427684276844, + 30.984554174531155 + ], + [ + 47.84987849878499, + 31.708969256757257 + ], + [ + 47.33507335073352, + 32.46892806965333 + ], + [ + 46.111061110611104, + 33.0173170571329 + ], + [ + 45.416254162541634, + 33.96853499220549 + ], + [ + 45.65025650256504, + 34.74880450834155 + ], + [ + 46.15066150661508, + 35.09408646342128 + ], + [ + 46.07506075060752, + 35.67801918157082 + ], + [ + 45.419854198542, + 35.97760205436059 + ], + [ + 44.771847718477204, + 37.170855869709655 + ], + [ + 44.22464224642246, + 37.9714360890857 + ], + [ + 44.42264422644226, + 38.281174313495455 + ], + [ + 44.109441094410954, + 39.42872904655455 + ], + [ + 44.79344793447936, + 39.713078891914336 + ], + [ + 44.95184951849518, + 39.3356383233713 + ], + [ + 45.459454594545946, + 38.87356982466166 + ], + [ + 46.14346143461435, + 38.74155025360176 + ], + [ + 46.507065070650725, + 38.770323749858406 + ], + [ + 47.68427684276844, + 39.508279300911155 + ], + [ + 48.05868058680588, + 39.582751879457774 + ], + [ + 48.35388353883539, + 39.288246682478004 + ], + [ + 48.0118801188012, + 38.79401957030505 + ], + [ + 48.634686346863475, + 38.271018961875455 + ], + [ + 48.88308883088831, + 38.32010316137209 + ], + [ + 49.19989199892001, + 37.582147610319325 + ], + [ + 50.14670146701468, + 37.3739629021095 + ], + [ + 50.84150841508415, + 36.87296555552322 + ], + [ + 52.263522635226366, + 36.70032457798335 + ], + [ + 53.82593825938261, + 36.96436372010315 + ], + [ + 53.92313923139233, + 37.1996293659663 + ] + ] + ] + }, + "countryRef": { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.394746160834365, + "skewed": 0.382757128144686, + "clumpy": 0.30199573488944664, + "sparse": 0.9115867612444344, + "striated": 0.3574136637300924, + "convex": 0.5609470578081679, + "skinny": 0.6796628328594703, + "stringy": 0.8334963993929865, + "monotonic": 0.8100095662872291, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 49.84732817638162, + -87.77167966519048 + ], + "drag": [ + 49.84732817638162, + -87.77167966519048 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 56 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Bangladesh (8 Countries)", + "timestamp": 1522409189859, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 50, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 92.67392673926742, + 22.04107451452481 + ], + [ + 92.65232652326523, + 21.32342966671203 + ], + [ + 92.30312303123031, + 21.475759941011916 + ], + [ + 92.36792367923681, + 20.67010204582587 + ], + [ + 92.08352083520839, + 21.19141009565213 + ], + [ + 92.02592025920262, + 21.700870235255067 + ], + [ + 91.8351183511835, + 22.183249437204694 + ], + [ + 91.41751417514178, + 22.76548959675091 + ], + [ + 90.4959049590496, + 22.804418444627544 + ], + [ + 90.58590585905858, + 22.39312670401786 + ], + [ + 90.27270272702725, + 21.83627492352163 + ], + [ + 89.8478984789848, + 22.03938195592147 + ], + [ + 89.70029700297005, + 21.856585626761614 + ], + [ + 89.41949419494193, + 21.966601935978204 + ], + [ + 89.03069030690307, + 22.056307541954794 + ], + [ + 88.87588875888758, + 22.87889102317415 + ], + [ + 88.53028530285303, + 23.63038704305356 + ], + [ + 88.69948699486997, + 24.232937905839762 + ], + [ + 88.0838808388084, + 24.502054723769547 + ], + [ + 88.30708307083074, + 24.865954823485936 + ], + [ + 88.92988929889299, + 25.238317716218972 + ], + [ + 88.20988209882097, + 25.768088559061894 + ], + [ + 88.56268562685625, + 26.446804558998025 + ], + [ + 89.3546935469355, + 26.01520211514837 + ], + [ + 89.83349833498335, + 25.964425357048412 + ], + [ + 89.91989919899203, + 25.270476329682282 + ], + [ + 90.87390873908743, + 25.133379082812397 + ], + [ + 91.79911799117991, + 25.146919551639044 + ], + [ + 92.37512375123754, + 24.97597113270251 + ], + [ + 91.91431914319145, + 24.12969183103651 + ], + [ + 91.46791467914682, + 24.072144838523215 + ], + [ + 91.15831158311585, + 23.50344514780366 + ], + [ + 91.70551705517056, + 22.985522215184062 + ], + [ + 91.87111871118714, + 23.623616808640236 + ], + [ + 92.14472144721447, + 23.627001925846898 + ], + [ + 92.67392673926742, + 22.04107451452481 + ] + ] + ] + }, + "countryRef": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 2009, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 2355, + "child_mortality": 169711, + "fertility": 2.32, + "life_expect": 68.5, + "population": 43065452 + }, + "x": 2355, + "y": 68.5, + "size": 43065452, + "color": "Asia", + "map_id": 50 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 2009, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 2355, + "child_mortality": 169711, + "fertility": 2.32, + "life_expect": 68.5, + "population": 43065452 + }, + "x": 2355, + "y": 68.5, + "size": 43065452, + "color": "Asia", + "map_id": 50 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.2507633320513316, + "skewed": 0.7650211440067678, + "clumpy": 0.08383850036971507, + "sparse": 0.4115747450290732, + "striated": 0.7816830074865679, + "convex": 0.5563048180915513, + "skinny": 0.17538716736701399, + "stringy": 0.2635137904003577, + "monotonic": 0.12161306464329313, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Pakistan", + "count": 216, + "this": { + "country": "Pakistan", + "year": 2009, + "map_id": 586, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 4227, + "child_mortality": 465546, + "fertility": 3.51, + "life_expect": 64.4, + "population": 41125163 + }, + "x": 4227, + "y": 64.4, + "size": 41125163, + "color": "Asia", + "map_id": 586 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 2009, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 2355, + "child_mortality": 169711, + "fertility": 2.32, + "life_expect": 68.5, + "population": 43065452 + }, + "x": 2355, + "y": 68.5, + "size": 43065452, + "color": "Asia", + "map_id": 50 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 89.38141604040842, + -88.08200425827819 + ], + "drag": [ + 89.38141604040842, + -88.08200425827819 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 57 + }, + { + "attrs": { + "name": "Selected Bangladesh (8 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.25\",\"payload\":{\"numVal\":0.2507633320513316},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.77\",\"payload\":{\"numVal\":0.7650211440067678},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.08\",\"payload\":{\"numVal\":0.08383850036971507},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.41\",\"payload\":{\"numVal\":0.4115747450290732},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.78\",\"payload\":{\"numVal\":0.7816830074865679},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.56\",\"payload\":{\"numVal\":0.5563048180915513},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.18\",\"payload\":{\"numVal\":0.17538716736701399},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.26\",\"payload\":{\"numVal\":0.2635137904003577},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.12\",\"payload\":{\"numVal\":0.12161306464329313},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Japan\",\"text\":\"Japan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = China\",\"text\":\"China\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = India\",\"text\":\"India\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Pakistan\",\"text\":\"Pakistan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Bangladesh\",\"text\":\"Bangladesh\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 58 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Bangladesh (8 Countries)", + "timestamp": 1522409189859, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 586, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 75.15975159751599, + 37.133619580436346 + ], + [ + 75.89775897758977, + 36.66647340591672 + ], + [ + 76.19296192961929, + 35.898051800003984 + ], + [ + 77.83817838178385, + 35.49353029380762 + ], + [ + 76.87336873368736, + 34.654021226554946 + ], + [ + 75.75735757357575, + 34.50507606946174 + ], + [ + 74.24174241742418, + 34.74880450834155 + ], + [ + 73.74853748537487, + 34.31720206449188 + ], + [ + 74.10494104941051, + 33.44214926656923 + ], + [ + 74.45054450544507, + 32.765125825236424 + ], + [ + 75.25695256952571, + 32.270898713063474 + ], + [ + 74.40734407344075, + 31.692043670723933 + ], + [ + 74.42174421744218, + 30.979476498721155 + ], + [ + 73.44973449734499, + 29.97578924694527 + ], + [ + 72.82332823328235, + 28.961946643549396 + ], + [ + 71.77931779317794, + 27.912560309483553 + ], + [ + 70.61650616506165, + 27.988725446633495 + ], + [ + 69.5148951489515, + 26.941031671170975 + ], + [ + 70.17010170101702, + 26.492503641287996 + ], + [ + 70.28170281702819, + 25.722389476771923 + ], + [ + 70.84330843308433, + 25.214621895772325 + ], + [ + 71.04491044910449, + 24.356494683883 + ], + [ + 68.84168841688418, + 24.35987980108966 + ], + [ + 68.17568175681757, + 23.691319152773517 + ], + [ + 67.44487444874449, + 23.945202943273316 + ], + [ + 67.14607146071461, + 24.662847791086094 + ], + [ + 66.37206372063721, + 25.42449916258549 + ], + [ + 64.52884528845289, + 25.23662515761565 + ], + [ + 62.90522905229054, + 25.218007012978987 + ], + [ + 61.49761497614978, + 25.07752464890244 + ], + [ + 61.87561875618758, + 26.24031240939152 + ], + [ + 63.315633156331586, + 26.756542783407795 + ], + [ + 63.2328323283233, + 27.216918723514098 + ], + [ + 62.754027540275416, + 27.37940434943397 + ], + [ + 62.728827288272896, + 28.259534823166618 + ], + [ + 61.77121771217713, + 28.699600060032935 + ], + [ + 61.36801368013681, + 29.30384348142246 + ], + [ + 60.8748087480875, + 29.828536648455383 + ], + [ + 62.54882548825489, + 29.319076508852447 + ], + [ + 63.549635496354966, + 29.46802166594567 + ], + [ + 64.14724147241472, + 29.34107977069577 + ], + [ + 64.34884348843488, + 29.5594198305256 + ], + [ + 65.04725047250474, + 29.471406783152332 + ], + [ + 66.3468634686347, + 29.887776199572002 + ], + [ + 66.3828638286383, + 30.739133177048004 + ], + [ + 66.93726937269375, + 31.304447750560897 + ], + [ + 67.68247682476826, + 31.302755191957573 + ], + [ + 67.7940779407794, + 31.58371992011068 + ], + [ + 68.55728557285573, + 31.714046932567243 + ], + [ + 68.9280892808928, + 31.62095620938399 + ], + [ + 69.3168931689317, + 31.9019209375371 + ], + [ + 69.2628926289263, + 32.50277924171996 + ], + [ + 69.68769687696877, + 33.105330104506166 + ], + [ + 70.3249032490325, + 33.359213895005965 + ], + [ + 69.92889928899291, + 34.01931175030545 + ], + [ + 70.88290882908831, + 33.98884569544548 + ], + [ + 71.15651156511566, + 34.34936067795519 + ], + [ + 71.11331113311135, + 34.73357148091155 + ], + [ + 71.61371613716139, + 35.153326014537896 + ], + [ + 71.49851498514985, + 35.65093824391751 + ], + [ + 71.26091260912611, + 36.074077894750516 + ], + [ + 71.84771847718477, + 36.51075801441017 + ], + [ + 72.92052920529207, + 36.72063528122334 + ], + [ + 74.0689406894069, + 36.83572926624991 + ], + [ + 74.57654576545767, + 37.02021815401311 + ], + [ + 75.15975159751599, + 37.133619580436346 + ] + ] + ] + }, + "countryRef": { + "country": "Pakistan", + "count": 216, + "this": { + "country": "Pakistan", + "year": 2009, + "map_id": 586, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 4227, + "child_mortality": 465546, + "fertility": 3.51, + "life_expect": 64.4, + "population": 41125163 + }, + "x": 4227, + "y": 64.4, + "size": 41125163, + "color": "Asia", + "map_id": 586 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Pakistan", + "count": 216, + "this": { + "country": "Pakistan", + "year": 2009, + "map_id": 586, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 4227, + "child_mortality": 465546, + "fertility": 3.51, + "life_expect": 64.4, + "population": 41125163 + }, + "x": 4227, + "y": 64.4, + "size": 41125163, + "color": "Asia", + "map_id": 586 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.10845160111338159, + "skewed": 0.1570063440094167, + "clumpy": 0.4496788880135987, + "sparse": 0.14142552754179172, + "striated": 0.9217385925554049, + "convex": 0.3612946125493306, + "skinny": 0.8135722503751182, + "stringy": 0.44950589112044725, + "monotonic": 0.643326290909179, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Pakistan", + "count": 216, + "this": { + "country": "Pakistan", + "year": 2009, + "map_id": 586, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 4227, + "child_mortality": 465546, + "fertility": 3.51, + "life_expect": 64.4, + "population": 41125163 + }, + "x": 4227, + "y": 64.4, + "size": 41125163, + "color": "Asia", + "map_id": 586 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 69.32789321082961, + -87.94296273995526 + ], + "drag": [ + 69.32789321082961, + -87.94296273995526 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 59 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Indonesia (9 Countries)", + "timestamp": 1522409197709, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 360, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 120.29340293402936, + -10.258021312859967 + ], + [ + 118.96858968589686, + -9.557302051080512 + ], + [ + 119.90099900999013, + -9.360965253093994 + ], + [ + 120.42660426604266, + -9.665625801693764 + ], + [ + 120.77580775807758, + -9.97028635029352 + ], + [ + 120.71460714607144, + -10.239403168223305 + ], + [ + 120.29340293402936, + -10.258021312859967 + ] + ] + ], + [ + [ + [ + 124.969849698497, + -8.892126519971029 + ], + [ + 125.07065070650708, + -9.090155876560871 + ], + [ + 125.0886508865089, + -9.393123866557303 + ], + [ + 124.43704437044374, + -10.139542210626729 + ], + [ + 123.58023580235806, + -10.35957482905988 + ], + [ + 123.46143461434616, + -10.239403168223305 + ], + [ + 123.55143551435515, + -9.899198888953578 + ], + [ + 123.97983979839802, + -9.289877791754051 + ], + [ + 124.969849698497, + -8.892126519971029 + ] + ] + ], + [ + [ + [ + 117.27657276572768, + -9.041071677064252 + ], + [ + 116.740167401674, + -9.03260888404759 + ], + [ + 117.08217082170825, + -8.457138958914697 + ], + [ + 117.63297632976332, + -8.44867616589805 + ], + [ + 117.89937899378992, + -8.094931417801646 + ], + [ + 118.25938259382593, + -8.362355677128107 + ], + [ + 118.87858878588787, + -8.281112864168179 + ], + [ + 119.12699126991271, + -8.70594507360451 + ], + [ + 117.97137971379715, + -8.907359547401015 + ], + [ + 117.27657276572768, + -9.041071677064252 + ] + ] + ], + [ + [ + [ + 121.25461254612549, + -8.934440485054324 + ], + [ + 119.92259922599226, + -8.810883707011087 + ], + [ + 119.92259922599226, + -8.445291048691374 + ], + [ + 120.71460714607144, + -8.237106340481546 + ], + [ + 121.34101341013411, + -8.536689213271302 + ], + [ + 122.00702007020072, + -8.460524076121374 + ], + [ + 122.90342903429035, + -8.094931417801646 + ], + [ + 122.7558275582756, + -8.650090639694554 + ], + [ + 121.25461254612549, + -8.934440485054324 + ] + ] + ], + [ + [ + [ + 114.5657456574566, + -8.751644155894468 + ], + [ + 113.46413464134645, + -8.34881520830146 + ], + [ + 112.56052560525609, + -8.37589614595477 + ], + [ + 111.52371523715237, + -8.301423567408165 + ], + [ + 110.5877058770588, + -8.12201235545497 + ], + [ + 109.42849428494287, + -7.741186669705257 + ], + [ + 108.6940869408694, + -7.641325712108667 + ], + [ + 108.27648276482768, + -7.766575048755243 + ], + [ + 106.4548645486455, + -7.355283308145559 + ], + [ + 106.2820628206282, + -6.925373422899227 + ], + [ + 105.36405364053644, + -6.850900844352623 + ], + [ + 106.05166051660518, + -5.896297792073369 + ], + [ + 107.26487264872651, + -5.955537343189988 + ], + [ + 108.07128071280715, + -6.3465183805596865 + ], + [ + 108.48528485284857, + -6.422683517709629 + ], + [ + 108.62208622086223, + -6.778120824409342 + ], + [ + 110.54090540905412, + -6.877981782005932 + ], + [ + 110.76050760507604, + -6.464997482792924 + ], + [ + 112.61452614526144, + -6.945684126139213 + ], + [ + 112.97812978129781, + -7.593934071215372 + ], + [ + 114.47934479344792, + -7.776730400375229 + ], + [ + 115.7069570695707, + -8.37081847014477 + ], + [ + 114.5657456574566, + -8.751644155894468 + ] + ] + ], + [ + [ + [ + 134.2111421114211, + -6.894907368039256 + ], + [ + 134.1139411394114, + -6.141718789556506 + ], + [ + 134.29034290342906, + -5.7828963656501315 + ], + [ + 134.49914499144995, + -5.444384644983728 + ], + [ + 134.7259472594726, + -5.73719728336016 + ], + [ + 134.7259472594726, + -6.214498809499787 + ], + [ + 134.2111421114211, + -6.894907368039256 + ] + ] + ], + [ + [ + [ + 126.87426874268743, + -3.790754889528344 + ], + [ + 126.18306183061833, + -3.6079585603684876 + ], + [ + 125.9886598865989, + -3.178048675122156 + ], + [ + 127.00027000270006, + -3.128964475625537 + ], + [ + 127.2486724867249, + -3.4590134032752786 + ], + [ + 126.87426874268743, + -3.790754889528344 + ] + ] + ], + [ + [ + [ + 130.83430834308342, + -3.8584572336616247 + ], + [ + 129.9918999189992, + -3.445472934448617 + ], + [ + 129.1566915669157, + -3.3625375628853504 + ], + [ + 128.59148591485916, + -3.428547348415293 + ], + [ + 127.90027900279006, + -3.3930036177453218 + ], + [ + 128.13428134281344, + -2.8429220716624286 + ], + [ + 129.37269372693726, + -2.8023006651824574 + ], + [ + 130.4707047070471, + -3.0934207449555657 + ], + [ + 130.83430834308342, + -3.8584572336616247 + ] + ] + ], + [ + [ + [ + 141.00081000810007, + -2.600886191385939 + ], + [ + 141.0188101881019, + -5.85906150280006 + ], + [ + 141.03321033210335, + -9.11723681421418 + ], + [ + 140.1440014400144, + -8.296345891598165 + ], + [ + 139.12879128791292, + -8.096623976404985 + ], + [ + 138.88038880388802, + -8.38097382176477 + ], + [ + 137.61317613176135, + -8.41143987662474 + ], + [ + 138.0379803798038, + -7.597319188422048 + ], + [ + 138.66798667986683, + -7.319739577475588 + ], + [ + 138.4087840878409, + -6.233116954136435 + ], + [ + 137.92637926379263, + -5.393607886883757 + ], + [ + 135.98955989559897, + -4.547328585217755 + ], + [ + 135.1651516515165, + -4.462700655051151 + ], + [ + 133.6639366393664, + -3.538563657631883 + ], + [ + 133.36873368733688, + -4.024327976788172 + ], + [ + 132.98352983529838, + -4.112341024161424 + ], + [ + 132.75672756727568, + -3.746748365841711 + ], + [ + 132.7531275312753, + -3.3117608047853935 + ], + [ + 131.98991989919898, + -2.820918809819105 + ], + [ + 133.06633066330664, + -2.460403827309392 + ], + [ + 133.77913779137793, + -2.4790219719460396 + ], + [ + 133.69633696336962, + -2.2149828298262406 + ], + [ + 132.23112231122315, + -2.2132902712229168 + ], + [ + 131.8351183511835, + -1.6175096428500524 + ], + [ + 130.94230942309423, + -1.433020755086858 + ], + [ + 130.52110521105215, + -0.9371010843105836 + ], + [ + 131.86751867518677, + -0.6950652040340941 + ], + [ + 132.3787237872379, + -0.3700939521943525 + ], + [ + 133.98433984339846, + -0.7796931342006985 + ], + [ + 134.1427414274143, + -1.1520560269337494 + ], + [ + 134.42354423544236, + -2.76844949311581 + ], + [ + 135.45675456754566, + -3.3676152386953504 + ], + [ + 136.2919629196292, + -2.306380994406169 + ], + [ + 137.44037440374404, + -1.7038301316199806 + ], + [ + 138.32958329583295, + -1.7021375730166426 + ], + [ + 139.18639186391863, + -2.050804645303046 + ], + [ + 139.92799927999283, + -2.409627069209421 + ], + [ + 141.00081000810007, + -2.600886191385939 + ] + ] + ], + [ + [ + [ + 119.79659796597969, + -5.6728800564335415 + ], + [ + 119.36819368193682, + -5.380067418057109 + ], + [ + 119.6525965259653, + -4.459315537844489 + ], + [ + 119.49779497794981, + -3.49455713394525 + ], + [ + 119.07659076590767, + -3.487786899531912 + ], + [ + 118.7669876698767, + -2.8023006651824574 + ], + [ + 119.18099180991811, + -2.14728048569296 + ], + [ + 119.3249932499325, + -1.3534705007302534 + ], + [ + 119.82539825398254, + 0.1545992148385693 + ], + [ + 120.03420034200343, + 0.5658909554482534 + ], + [ + 120.88740887408875, + 1.308924182311003 + ], + [ + 121.6686166861669, + 1.0144189853312326 + ], + [ + 122.92862928629285, + 0.8756291798580094 + ], + [ + 124.07704077040773, + 0.9179431449413045 + ], + [ + 125.06705067050672, + 1.6440507857707445 + ], + [ + 125.23985239852402, + 1.4206330501309168 + ], + [ + 124.43704437044374, + 0.4271011499750301 + ], + [ + 123.68463684636845, + 0.23584202779851182 + ], + [ + 122.72342723427238, + 0.43048626718169203 + ], + [ + 121.05661056610569, + 0.3814020676850589 + ], + [ + 120.18180181801819, + 0.23753458640183567 + ], + [ + 120.04140041400416, + -0.5190391092875757 + ], + [ + 120.93420934209342, + -1.4093249346402104 + ], + [ + 121.47421474214741, + -0.9557192289472312 + ], + [ + 123.3390333903339, + -0.6155149496774897 + ], + [ + 123.259832598326, + -1.0758908897838069 + ], + [ + 122.82422824228246, + -0.9303308498972456 + ], + [ + 122.38862388623886, + -1.5176486852534623 + ], + [ + 121.50661506615069, + -1.9052446054164847 + ], + [ + 122.45342453424536, + -3.186511468138818 + ], + [ + 122.27342273422738, + -3.530100864615221 + ], + [ + 123.16983169831701, + -4.684425832087655 + ], + [ + 123.16263162631628, + -5.341138570180476 + ], + [ + 122.62982629826297, + -5.633951208556908 + ], + [ + 122.23742237422374, + -5.283591577667181 + ], + [ + 122.71982719827201, + -4.464393213654489 + ], + [ + 121.7370173701737, + -4.851989133817526 + ], + [ + 121.48861488614887, + -4.574409522871065 + ], + [ + 121.61821618216186, + -4.188506161311366 + ], + [ + 120.89820898208984, + -3.602880884558502 + ], + [ + 120.97380973809737, + -2.6279671290392628 + ], + [ + 120.30420304203045, + -2.9309351190356807 + ], + [ + 120.39060390603908, + -4.097107996731438 + ], + [ + 120.43020430204302, + -5.529012575150318 + ], + [ + 119.79659796597969, + -5.6728800564335415 + ] + ] + ], + [ + [ + [ + 128.09828098280985, + -0.8998647950372742 + ], + [ + 127.69507695076953, + -0.2668478773911005 + ], + [ + 127.39987399874002, + 1.0110338681245707 + ], + [ + 127.60147601476018, + 1.8099215288972772 + ], + [ + 127.93267932679328, + 2.173821628613652 + ], + [ + 128.0046800468005, + 1.6288177583407446 + ], + [ + 128.59508595085953, + 1.5408047109674925 + ], + [ + 128.68868688686888, + 1.1328980875644703 + ], + [ + 128.63468634686348, + 0.2578452896418213 + ], + [ + 128.11988119881198, + 0.3560136886350733 + ], + [ + 127.96867968679686, + -0.25161484996111483 + ], + [ + 128.3790837908379, + -0.7796931342006985 + ], + [ + 128.09828098280985, + -0.8998647950372742 + ] + ] + ], + [ + [ + [ + 109.66249662496625, + 2.0062583268837955 + ], + [ + 109.83169831698319, + 1.3376976785676504 + ], + [ + 110.51570515705157, + 0.7723831050547574 + ], + [ + 111.160111601116, + 0.9771826960579233 + ], + [ + 111.79731797317976, + 0.9044026761146569 + ], + [ + 112.38052380523806, + 1.4104776985109169 + ], + [ + 112.85932859328597, + 1.4984907458841832 + ], + [ + 113.80613806138064, + 1.2175260177310747 + ], + [ + 114.619746197462, + 1.4307884017509025 + ], + [ + 115.13455134551344, + 2.8220715736898256 + ], + [ + 115.519755197552, + 3.1690460873728767 + ], + [ + 115.86535865358655, + 4.306445468811987 + ], + [ + 117.01377013770139, + 4.306445468811987 + ], + [ + 117.88137881378816, + 4.137189608478792 + ], + [ + 117.31257312573126, + 3.2350558729028336 + ], + [ + 118.04698046980474, + 2.287223055036904 + ], + [ + 117.87417874178743, + 1.826847114930601 + ], + [ + 118.99738997389977, + 0.9027101175113188 + ], + [ + 117.8129781297813, + 0.7842310152780811 + ], + [ + 117.47817478174784, + 0.10212989813527429 + ], + [ + 117.52137521375215, + -0.803388954647346 + ], + [ + 116.56016560165602, + -1.4871826303934768 + ], + [ + 116.53496534965353, + -2.4840996477560395 + ], + [ + 116.14976149761497, + -4.012480066564848 + ], + [ + 116.00216002160022, + -3.6570427598651207 + ], + [ + 114.86454864548648, + -4.107263348351438 + ], + [ + 114.46854468544689, + -3.4962496925485738 + ], + [ + 113.7557375573756, + -3.438702700035293 + ], + [ + 113.25533255332556, + -3.118809124005537 + ], + [ + 112.06732067320672, + -3.477631547911926 + ], + [ + 111.7037170371704, + -2.9952523459622995 + ], + [ + 111.04851048510488, + -3.0494142212689326 + ], + [ + 110.22410224102242, + -2.934320236242357 + ], + [ + 110.06930069300694, + -1.5921212638000668 + ], + [ + 109.57249572495726, + -1.3145416528536202 + ], + [ + 109.09009090090905, + -0.45979955817095686 + ], + [ + 108.95328953289533, + 0.41525323975170636 + ], + [ + 109.06849068490686, + 1.3427753543776362 + ], + [ + 109.66249662496625, + 2.0062583268837955 + ] + ] + ], + [ + [ + [ + 104.70884708847092, + -5.872601971626722 + ], + [ + 103.86643866438664, + -5.036478021580706 + ], + [ + 102.5848258482585, + -4.220664774774676 + ], + [ + 102.15642156421563, + -3.6147287947818256 + ], + [ + 101.40041400414003, + -2.8006081065791193 + ], + [ + 100.90360903609036, + -2.050804645303046 + ], + [ + 100.14040140401403, + -0.651058680347461 + ], + [ + 99.26199261992622, + 0.1833727110952168 + ], + [ + 98.97038970389707, + 1.0431924815878801 + ], + [ + 98.59958599585997, + 1.823461997723939 + ], + [ + 97.69957699576997, + 2.4530937981634366 + ], + [ + 97.17757177571775, + 3.309528451449438 + ], + [ + 96.42516425164251, + 3.8680727905490073 + ], + [ + 95.38115381153813, + 4.97162099992147 + ], + [ + 95.2947529475295, + 5.479388580921082 + ], + [ + 95.93555935559357, + 5.438767174441111 + ], + [ + 97.48357483574836, + 5.245815493661254 + ], + [ + 98.36918369183695, + 4.2692091795386915 + ], + [ + 99.14319143191432, + 3.5904931796025465 + ], + [ + 99.6939969399694, + 3.1741237631828767 + ], + [ + 100.64080640806407, + 2.0993490500670475 + ], + [ + 101.65961659616596, + 2.084116022637062 + ], + [ + 102.49842498424988, + 1.398629788287593 + ], + [ + 103.07803078030781, + 0.5608132796382534 + ], + [ + 103.83763837638378, + 0.10382245673861235 + ], + [ + 103.43803438034382, + -0.7119907900674178 + ], + [ + 104.01044010440103, + -1.0589653037504831 + ], + [ + 104.37044370443704, + -1.0843536828004687 + ], + [ + 104.53964539645398, + -1.781687827373247 + ], + [ + 104.8888488884889, + -2.3402321664728163 + ], + [ + 105.62325623256231, + -2.4282452138460826 + ], + [ + 106.10926109261095, + -3.0612621314922563 + ], + [ + 105.85725857258575, + -4.30529270494128 + ], + [ + 105.8176581765818, + -5.852291268386736 + ], + [ + 104.70884708847092, + -5.872601971626722 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 2009, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 8108, + "child_mortality": 158869, + "fertility": 2.46, + "life_expect": 69.6, + "population": 79036888 + }, + "x": 8108, + "y": 69.6, + "size": 79036888, + "color": "Asia", + "map_id": 360 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 2009, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 8108, + "child_mortality": 158869, + "fertility": 2.46, + "life_expect": 69.6, + "population": 79036888 + }, + "x": 8108, + "y": 69.6, + "size": 79036888, + "color": "Asia", + "map_id": 360 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7500638965788338, + "skewed": 0.10049823800171942, + "clumpy": 0.7744092247542651, + "sparse": 0.33340683880233146, + "striated": 0.14751099166693526, + "convex": 0.5061260051478824, + "skinny": 0.7761389932244944, + "stringy": 0.05495198058904327, + "monotonic": 0.6185159781457661, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Pakistan", + "count": 216, + "this": { + "country": "Pakistan", + "year": 2009, + "map_id": 586, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 4227, + "child_mortality": 465546, + "fertility": 3.51, + "life_expect": 64.4, + "population": 41125163 + }, + "x": 4227, + "y": 64.4, + "size": 41125163, + "color": "Asia", + "map_id": 586 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 2009, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 2355, + "child_mortality": 169711, + "fertility": 2.32, + "life_expect": 68.5, + "population": 43065452 + }, + "x": 2355, + "y": 68.5, + "size": 43065452, + "color": "Asia", + "map_id": 50 + }, + { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 2009, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 8108, + "child_mortality": 158869, + "fertility": 2.46, + "life_expect": 69.6, + "population": 79036888 + }, + "x": 8108, + "y": 69.6, + "size": 79036888, + "color": "Asia", + "map_id": 360 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 109.43493886998723, + -88.93673384752877 + ], + "drag": [ + 109.43493886998723, + -88.93673384752877 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 60 + }, + { + "attrs": { + "name": "Selected Indonesia (9 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.75\",\"payload\":{\"numVal\":0.7500638965788338},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.1\",\"payload\":{\"numVal\":0.10049823800171942},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.77\",\"payload\":{\"numVal\":0.7744092247542651},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.33\",\"payload\":{\"numVal\":0.33340683880233146},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.15\",\"payload\":{\"numVal\":0.14751099166693526},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.51\",\"payload\":{\"numVal\":0.5061260051478824},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.78\",\"payload\":{\"numVal\":0.7761389932244944},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.05\",\"payload\":{\"numVal\":0.05495198058904327},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.62\",\"payload\":{\"numVal\":0.6185159781457661},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Japan\",\"text\":\"Japan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = China\",\"text\":\"China\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = India\",\"text\":\"India\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Pakistan\",\"text\":\"Pakistan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Bangladesh\",\"text\":\"Bangladesh\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Indonesia\",\"text\":\"Indonesia\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 61 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Indonesia (9 Countries)", + "timestamp": 1522409197709, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 50, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 92.67392673926742, + 22.04107451452481 + ], + [ + 92.65232652326523, + 21.32342966671203 + ], + [ + 92.30312303123031, + 21.475759941011916 + ], + [ + 92.36792367923681, + 20.67010204582587 + ], + [ + 92.08352083520839, + 21.19141009565213 + ], + [ + 92.02592025920262, + 21.700870235255067 + ], + [ + 91.8351183511835, + 22.183249437204694 + ], + [ + 91.41751417514178, + 22.76548959675091 + ], + [ + 90.4959049590496, + 22.804418444627544 + ], + [ + 90.58590585905858, + 22.39312670401786 + ], + [ + 90.27270272702725, + 21.83627492352163 + ], + [ + 89.8478984789848, + 22.03938195592147 + ], + [ + 89.70029700297005, + 21.856585626761614 + ], + [ + 89.41949419494193, + 21.966601935978204 + ], + [ + 89.03069030690307, + 22.056307541954794 + ], + [ + 88.87588875888758, + 22.87889102317415 + ], + [ + 88.53028530285303, + 23.63038704305356 + ], + [ + 88.69948699486997, + 24.232937905839762 + ], + [ + 88.0838808388084, + 24.502054723769547 + ], + [ + 88.30708307083074, + 24.865954823485936 + ], + [ + 88.92988929889299, + 25.238317716218972 + ], + [ + 88.20988209882097, + 25.768088559061894 + ], + [ + 88.56268562685625, + 26.446804558998025 + ], + [ + 89.3546935469355, + 26.01520211514837 + ], + [ + 89.83349833498335, + 25.964425357048412 + ], + [ + 89.91989919899203, + 25.270476329682282 + ], + [ + 90.87390873908743, + 25.133379082812397 + ], + [ + 91.79911799117991, + 25.146919551639044 + ], + [ + 92.37512375123754, + 24.97597113270251 + ], + [ + 91.91431914319145, + 24.12969183103651 + ], + [ + 91.46791467914682, + 24.072144838523215 + ], + [ + 91.15831158311585, + 23.50344514780366 + ], + [ + 91.70551705517056, + 22.985522215184062 + ], + [ + 91.87111871118714, + 23.623616808640236 + ], + [ + 92.14472144721447, + 23.627001925846898 + ], + [ + 92.67392673926742, + 22.04107451452481 + ] + ] + ] + }, + "countryRef": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 2009, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 2355, + "child_mortality": 169711, + "fertility": 2.32, + "life_expect": 68.5, + "population": 43065452 + }, + "x": 2355, + "y": 68.5, + "size": 43065452, + "color": "Asia", + "map_id": 50 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 2009, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 2355, + "child_mortality": 169711, + "fertility": 2.32, + "life_expect": 68.5, + "population": 43065452 + }, + "x": 2355, + "y": 68.5, + "size": 43065452, + "color": "Asia", + "map_id": 50 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.2507633320513316, + "skewed": 0.7650211440067678, + "clumpy": 0.08383850036971507, + "sparse": 0.4115747450290732, + "striated": 0.7816830074865679, + "convex": 0.5563048180915513, + "skinny": 0.17538716736701399, + "stringy": 0.2635137904003577, + "monotonic": 0.12161306464329313, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Pakistan", + "count": 216, + "this": { + "country": "Pakistan", + "year": 2009, + "map_id": 586, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 4227, + "child_mortality": 465546, + "fertility": 3.51, + "life_expect": 64.4, + "population": 41125163 + }, + "x": 4227, + "y": 64.4, + "size": 41125163, + "color": "Asia", + "map_id": 586 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 2009, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 2355, + "child_mortality": 169711, + "fertility": 2.32, + "life_expect": 68.5, + "population": 43065452 + }, + "x": 2355, + "y": 68.5, + "size": 43065452, + "color": "Asia", + "map_id": 50 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 89.38141604040842, + -88.08200425827819 + ], + "drag": [ + 89.38141604040842, + -88.08200425827819 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 62 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409226047, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 2009, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 8108, + "child_mortality": 158869, + "fertility": 2.46, + "life_expect": 69.6, + "population": 79036888 + }, + "x": 8108, + "y": 69.6, + "size": 79036888, + "color": "Asia", + "map_id": 360 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.23475266898857594, + "skewed": 0.8881036208135458, + "clumpy": 0.7398388415421613, + "sparse": 0.5669752934976791, + "striated": 0.7231761492124922, + "convex": 0.5283101635551817, + "skinny": 0.5114015001209966, + "stringy": 0.8039958657955733, + "monotonic": 0.5004883802355493, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 9.740282517223996, + -89.46131980828439 + ], + "drag": [ + 9.740282517223996, + -89.46131980828439 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 63 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1948\",\"payload\":{\"numVal\":1948},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.23\",\"payload\":{\"numVal\":0.23475266898857594},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.89\",\"payload\":{\"numVal\":0.8881036208135458},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.74\",\"payload\":{\"numVal\":0.7398388415421613},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.57\",\"payload\":{\"numVal\":0.5669752934976791},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.72\",\"payload\":{\"numVal\":0.7231761492124922},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.53\",\"payload\":{\"numVal\":0.5283101635551817},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.51\",\"payload\":{\"numVal\":0.5114015001209966},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.8\",\"payload\":{\"numVal\":0.8039958657955733},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.5\",\"payload\":{\"numVal\":0.5004883802355493},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 64 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409226047, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 360, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 120.29340293402936, + -10.258021312859967 + ], + [ + 118.96858968589686, + -9.557302051080512 + ], + [ + 119.90099900999013, + -9.360965253093994 + ], + [ + 120.42660426604266, + -9.665625801693764 + ], + [ + 120.77580775807758, + -9.97028635029352 + ], + [ + 120.71460714607144, + -10.239403168223305 + ], + [ + 120.29340293402936, + -10.258021312859967 + ] + ] + ], + [ + [ + [ + 124.969849698497, + -8.892126519971029 + ], + [ + 125.07065070650708, + -9.090155876560871 + ], + [ + 125.0886508865089, + -9.393123866557303 + ], + [ + 124.43704437044374, + -10.139542210626729 + ], + [ + 123.58023580235806, + -10.35957482905988 + ], + [ + 123.46143461434616, + -10.239403168223305 + ], + [ + 123.55143551435515, + -9.899198888953578 + ], + [ + 123.97983979839802, + -9.289877791754051 + ], + [ + 124.969849698497, + -8.892126519971029 + ] + ] + ], + [ + [ + [ + 117.27657276572768, + -9.041071677064252 + ], + [ + 116.740167401674, + -9.03260888404759 + ], + [ + 117.08217082170825, + -8.457138958914697 + ], + [ + 117.63297632976332, + -8.44867616589805 + ], + [ + 117.89937899378992, + -8.094931417801646 + ], + [ + 118.25938259382593, + -8.362355677128107 + ], + [ + 118.87858878588787, + -8.281112864168179 + ], + [ + 119.12699126991271, + -8.70594507360451 + ], + [ + 117.97137971379715, + -8.907359547401015 + ], + [ + 117.27657276572768, + -9.041071677064252 + ] + ] + ], + [ + [ + [ + 121.25461254612549, + -8.934440485054324 + ], + [ + 119.92259922599226, + -8.810883707011087 + ], + [ + 119.92259922599226, + -8.445291048691374 + ], + [ + 120.71460714607144, + -8.237106340481546 + ], + [ + 121.34101341013411, + -8.536689213271302 + ], + [ + 122.00702007020072, + -8.460524076121374 + ], + [ + 122.90342903429035, + -8.094931417801646 + ], + [ + 122.7558275582756, + -8.650090639694554 + ], + [ + 121.25461254612549, + -8.934440485054324 + ] + ] + ], + [ + [ + [ + 114.5657456574566, + -8.751644155894468 + ], + [ + 113.46413464134645, + -8.34881520830146 + ], + [ + 112.56052560525609, + -8.37589614595477 + ], + [ + 111.52371523715237, + -8.301423567408165 + ], + [ + 110.5877058770588, + -8.12201235545497 + ], + [ + 109.42849428494287, + -7.741186669705257 + ], + [ + 108.6940869408694, + -7.641325712108667 + ], + [ + 108.27648276482768, + -7.766575048755243 + ], + [ + 106.4548645486455, + -7.355283308145559 + ], + [ + 106.2820628206282, + -6.925373422899227 + ], + [ + 105.36405364053644, + -6.850900844352623 + ], + [ + 106.05166051660518, + -5.896297792073369 + ], + [ + 107.26487264872651, + -5.955537343189988 + ], + [ + 108.07128071280715, + -6.3465183805596865 + ], + [ + 108.48528485284857, + -6.422683517709629 + ], + [ + 108.62208622086223, + -6.778120824409342 + ], + [ + 110.54090540905412, + -6.877981782005932 + ], + [ + 110.76050760507604, + -6.464997482792924 + ], + [ + 112.61452614526144, + -6.945684126139213 + ], + [ + 112.97812978129781, + -7.593934071215372 + ], + [ + 114.47934479344792, + -7.776730400375229 + ], + [ + 115.7069570695707, + -8.37081847014477 + ], + [ + 114.5657456574566, + -8.751644155894468 + ] + ] + ], + [ + [ + [ + 134.2111421114211, + -6.894907368039256 + ], + [ + 134.1139411394114, + -6.141718789556506 + ], + [ + 134.29034290342906, + -5.7828963656501315 + ], + [ + 134.49914499144995, + -5.444384644983728 + ], + [ + 134.7259472594726, + -5.73719728336016 + ], + [ + 134.7259472594726, + -6.214498809499787 + ], + [ + 134.2111421114211, + -6.894907368039256 + ] + ] + ], + [ + [ + [ + 126.87426874268743, + -3.790754889528344 + ], + [ + 126.18306183061833, + -3.6079585603684876 + ], + [ + 125.9886598865989, + -3.178048675122156 + ], + [ + 127.00027000270006, + -3.128964475625537 + ], + [ + 127.2486724867249, + -3.4590134032752786 + ], + [ + 126.87426874268743, + -3.790754889528344 + ] + ] + ], + [ + [ + [ + 130.83430834308342, + -3.8584572336616247 + ], + [ + 129.9918999189992, + -3.445472934448617 + ], + [ + 129.1566915669157, + -3.3625375628853504 + ], + [ + 128.59148591485916, + -3.428547348415293 + ], + [ + 127.90027900279006, + -3.3930036177453218 + ], + [ + 128.13428134281344, + -2.8429220716624286 + ], + [ + 129.37269372693726, + -2.8023006651824574 + ], + [ + 130.4707047070471, + -3.0934207449555657 + ], + [ + 130.83430834308342, + -3.8584572336616247 + ] + ] + ], + [ + [ + [ + 141.00081000810007, + -2.600886191385939 + ], + [ + 141.0188101881019, + -5.85906150280006 + ], + [ + 141.03321033210335, + -9.11723681421418 + ], + [ + 140.1440014400144, + -8.296345891598165 + ], + [ + 139.12879128791292, + -8.096623976404985 + ], + [ + 138.88038880388802, + -8.38097382176477 + ], + [ + 137.61317613176135, + -8.41143987662474 + ], + [ + 138.0379803798038, + -7.597319188422048 + ], + [ + 138.66798667986683, + -7.319739577475588 + ], + [ + 138.4087840878409, + -6.233116954136435 + ], + [ + 137.92637926379263, + -5.393607886883757 + ], + [ + 135.98955989559897, + -4.547328585217755 + ], + [ + 135.1651516515165, + -4.462700655051151 + ], + [ + 133.6639366393664, + -3.538563657631883 + ], + [ + 133.36873368733688, + -4.024327976788172 + ], + [ + 132.98352983529838, + -4.112341024161424 + ], + [ + 132.75672756727568, + -3.746748365841711 + ], + [ + 132.7531275312753, + -3.3117608047853935 + ], + [ + 131.98991989919898, + -2.820918809819105 + ], + [ + 133.06633066330664, + -2.460403827309392 + ], + [ + 133.77913779137793, + -2.4790219719460396 + ], + [ + 133.69633696336962, + -2.2149828298262406 + ], + [ + 132.23112231122315, + -2.2132902712229168 + ], + [ + 131.8351183511835, + -1.6175096428500524 + ], + [ + 130.94230942309423, + -1.433020755086858 + ], + [ + 130.52110521105215, + -0.9371010843105836 + ], + [ + 131.86751867518677, + -0.6950652040340941 + ], + [ + 132.3787237872379, + -0.3700939521943525 + ], + [ + 133.98433984339846, + -0.7796931342006985 + ], + [ + 134.1427414274143, + -1.1520560269337494 + ], + [ + 134.42354423544236, + -2.76844949311581 + ], + [ + 135.45675456754566, + -3.3676152386953504 + ], + [ + 136.2919629196292, + -2.306380994406169 + ], + [ + 137.44037440374404, + -1.7038301316199806 + ], + [ + 138.32958329583295, + -1.7021375730166426 + ], + [ + 139.18639186391863, + -2.050804645303046 + ], + [ + 139.92799927999283, + -2.409627069209421 + ], + [ + 141.00081000810007, + -2.600886191385939 + ] + ] + ], + [ + [ + [ + 119.79659796597969, + -5.6728800564335415 + ], + [ + 119.36819368193682, + -5.380067418057109 + ], + [ + 119.6525965259653, + -4.459315537844489 + ], + [ + 119.49779497794981, + -3.49455713394525 + ], + [ + 119.07659076590767, + -3.487786899531912 + ], + [ + 118.7669876698767, + -2.8023006651824574 + ], + [ + 119.18099180991811, + -2.14728048569296 + ], + [ + 119.3249932499325, + -1.3534705007302534 + ], + [ + 119.82539825398254, + 0.1545992148385693 + ], + [ + 120.03420034200343, + 0.5658909554482534 + ], + [ + 120.88740887408875, + 1.308924182311003 + ], + [ + 121.6686166861669, + 1.0144189853312326 + ], + [ + 122.92862928629285, + 0.8756291798580094 + ], + [ + 124.07704077040773, + 0.9179431449413045 + ], + [ + 125.06705067050672, + 1.6440507857707445 + ], + [ + 125.23985239852402, + 1.4206330501309168 + ], + [ + 124.43704437044374, + 0.4271011499750301 + ], + [ + 123.68463684636845, + 0.23584202779851182 + ], + [ + 122.72342723427238, + 0.43048626718169203 + ], + [ + 121.05661056610569, + 0.3814020676850589 + ], + [ + 120.18180181801819, + 0.23753458640183567 + ], + [ + 120.04140041400416, + -0.5190391092875757 + ], + [ + 120.93420934209342, + -1.4093249346402104 + ], + [ + 121.47421474214741, + -0.9557192289472312 + ], + [ + 123.3390333903339, + -0.6155149496774897 + ], + [ + 123.259832598326, + -1.0758908897838069 + ], + [ + 122.82422824228246, + -0.9303308498972456 + ], + [ + 122.38862388623886, + -1.5176486852534623 + ], + [ + 121.50661506615069, + -1.9052446054164847 + ], + [ + 122.45342453424536, + -3.186511468138818 + ], + [ + 122.27342273422738, + -3.530100864615221 + ], + [ + 123.16983169831701, + -4.684425832087655 + ], + [ + 123.16263162631628, + -5.341138570180476 + ], + [ + 122.62982629826297, + -5.633951208556908 + ], + [ + 122.23742237422374, + -5.283591577667181 + ], + [ + 122.71982719827201, + -4.464393213654489 + ], + [ + 121.7370173701737, + -4.851989133817526 + ], + [ + 121.48861488614887, + -4.574409522871065 + ], + [ + 121.61821618216186, + -4.188506161311366 + ], + [ + 120.89820898208984, + -3.602880884558502 + ], + [ + 120.97380973809737, + -2.6279671290392628 + ], + [ + 120.30420304203045, + -2.9309351190356807 + ], + [ + 120.39060390603908, + -4.097107996731438 + ], + [ + 120.43020430204302, + -5.529012575150318 + ], + [ + 119.79659796597969, + -5.6728800564335415 + ] + ] + ], + [ + [ + [ + 128.09828098280985, + -0.8998647950372742 + ], + [ + 127.69507695076953, + -0.2668478773911005 + ], + [ + 127.39987399874002, + 1.0110338681245707 + ], + [ + 127.60147601476018, + 1.8099215288972772 + ], + [ + 127.93267932679328, + 2.173821628613652 + ], + [ + 128.0046800468005, + 1.6288177583407446 + ], + [ + 128.59508595085953, + 1.5408047109674925 + ], + [ + 128.68868688686888, + 1.1328980875644703 + ], + [ + 128.63468634686348, + 0.2578452896418213 + ], + [ + 128.11988119881198, + 0.3560136886350733 + ], + [ + 127.96867968679686, + -0.25161484996111483 + ], + [ + 128.3790837908379, + -0.7796931342006985 + ], + [ + 128.09828098280985, + -0.8998647950372742 + ] + ] + ], + [ + [ + [ + 109.66249662496625, + 2.0062583268837955 + ], + [ + 109.83169831698319, + 1.3376976785676504 + ], + [ + 110.51570515705157, + 0.7723831050547574 + ], + [ + 111.160111601116, + 0.9771826960579233 + ], + [ + 111.79731797317976, + 0.9044026761146569 + ], + [ + 112.38052380523806, + 1.4104776985109169 + ], + [ + 112.85932859328597, + 1.4984907458841832 + ], + [ + 113.80613806138064, + 1.2175260177310747 + ], + [ + 114.619746197462, + 1.4307884017509025 + ], + [ + 115.13455134551344, + 2.8220715736898256 + ], + [ + 115.519755197552, + 3.1690460873728767 + ], + [ + 115.86535865358655, + 4.306445468811987 + ], + [ + 117.01377013770139, + 4.306445468811987 + ], + [ + 117.88137881378816, + 4.137189608478792 + ], + [ + 117.31257312573126, + 3.2350558729028336 + ], + [ + 118.04698046980474, + 2.287223055036904 + ], + [ + 117.87417874178743, + 1.826847114930601 + ], + [ + 118.99738997389977, + 0.9027101175113188 + ], + [ + 117.8129781297813, + 0.7842310152780811 + ], + [ + 117.47817478174784, + 0.10212989813527429 + ], + [ + 117.52137521375215, + -0.803388954647346 + ], + [ + 116.56016560165602, + -1.4871826303934768 + ], + [ + 116.53496534965353, + -2.4840996477560395 + ], + [ + 116.14976149761497, + -4.012480066564848 + ], + [ + 116.00216002160022, + -3.6570427598651207 + ], + [ + 114.86454864548648, + -4.107263348351438 + ], + [ + 114.46854468544689, + -3.4962496925485738 + ], + [ + 113.7557375573756, + -3.438702700035293 + ], + [ + 113.25533255332556, + -3.118809124005537 + ], + [ + 112.06732067320672, + -3.477631547911926 + ], + [ + 111.7037170371704, + -2.9952523459622995 + ], + [ + 111.04851048510488, + -3.0494142212689326 + ], + [ + 110.22410224102242, + -2.934320236242357 + ], + [ + 110.06930069300694, + -1.5921212638000668 + ], + [ + 109.57249572495726, + -1.3145416528536202 + ], + [ + 109.09009090090905, + -0.45979955817095686 + ], + [ + 108.95328953289533, + 0.41525323975170636 + ], + [ + 109.06849068490686, + 1.3427753543776362 + ], + [ + 109.66249662496625, + 2.0062583268837955 + ] + ] + ], + [ + [ + [ + 104.70884708847092, + -5.872601971626722 + ], + [ + 103.86643866438664, + -5.036478021580706 + ], + [ + 102.5848258482585, + -4.220664774774676 + ], + [ + 102.15642156421563, + -3.6147287947818256 + ], + [ + 101.40041400414003, + -2.8006081065791193 + ], + [ + 100.90360903609036, + -2.050804645303046 + ], + [ + 100.14040140401403, + -0.651058680347461 + ], + [ + 99.26199261992622, + 0.1833727110952168 + ], + [ + 98.97038970389707, + 1.0431924815878801 + ], + [ + 98.59958599585997, + 1.823461997723939 + ], + [ + 97.69957699576997, + 2.4530937981634366 + ], + [ + 97.17757177571775, + 3.309528451449438 + ], + [ + 96.42516425164251, + 3.8680727905490073 + ], + [ + 95.38115381153813, + 4.97162099992147 + ], + [ + 95.2947529475295, + 5.479388580921082 + ], + [ + 95.93555935559357, + 5.438767174441111 + ], + [ + 97.48357483574836, + 5.245815493661254 + ], + [ + 98.36918369183695, + 4.2692091795386915 + ], + [ + 99.14319143191432, + 3.5904931796025465 + ], + [ + 99.6939969399694, + 3.1741237631828767 + ], + [ + 100.64080640806407, + 2.0993490500670475 + ], + [ + 101.65961659616596, + 2.084116022637062 + ], + [ + 102.49842498424988, + 1.398629788287593 + ], + [ + 103.07803078030781, + 0.5608132796382534 + ], + [ + 103.83763837638378, + 0.10382245673861235 + ], + [ + 103.43803438034382, + -0.7119907900674178 + ], + [ + 104.01044010440103, + -1.0589653037504831 + ], + [ + 104.37044370443704, + -1.0843536828004687 + ], + [ + 104.53964539645398, + -1.781687827373247 + ], + [ + 104.8888488884889, + -2.3402321664728163 + ], + [ + 105.62325623256231, + -2.4282452138460826 + ], + [ + 106.10926109261095, + -3.0612621314922563 + ], + [ + 105.85725857258575, + -4.30529270494128 + ], + [ + 105.8176581765818, + -5.852291268386736 + ], + [ + 104.70884708847092, + -5.872601971626722 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 2009, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 8108, + "child_mortality": 158869, + "fertility": 2.46, + "life_expect": 69.6, + "population": 79036888 + }, + "x": 8108, + "y": 69.6, + "size": 79036888, + "color": "Asia", + "map_id": 360 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 2009, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 8108, + "child_mortality": 158869, + "fertility": 2.46, + "life_expect": 69.6, + "population": 79036888 + }, + "x": 8108, + "y": 69.6, + "size": 79036888, + "color": "Asia", + "map_id": 360 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7500638965788338, + "skewed": 0.10049823800171942, + "clumpy": 0.7744092247542651, + "sparse": 0.33340683880233146, + "striated": 0.14751099166693526, + "convex": 0.5061260051478824, + "skinny": 0.7761389932244944, + "stringy": 0.05495198058904327, + "monotonic": 0.6185159781457661, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2009, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 48558, + "child_mortality": 30845, + "fertility": 2, + "life_expect": 78.3, + "population": 173569227 + }, + "x": 48558, + "y": 78.3, + "size": 173569227, + "color": "America", + "map_id": 840 + }, + { + "country": "Japan", + "count": 216, + "this": { + "country": "Japan", + "year": 2009, + "map_id": 392, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 32880, + "child_mortality": 3580, + "fertility": 1.36, + "life_expect": 82.8, + "population": 89175240 + }, + "x": 32880, + "y": 82.8, + "size": 89175240, + "color": "Asia", + "map_id": 392 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + { + "country": "China", + "count": 216, + "this": { + "country": "China", + "year": 2009, + "map_id": 156, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 8565, + "child_mortality": 274052, + "fertility": 1.54, + "life_expect": 75.6, + "population": 606308196 + }, + "x": 8565, + "y": 75.6, + "size": 606308196, + "color": "Asia", + "map_id": 156 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 2009, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 4177, + "child_mortality": 1685035, + "fertility": 2.6, + "life_expect": 64.7, + "population": 416022371 + }, + "x": 4177, + "y": 64.7, + "size": 416022371, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 2009, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 16123, + "child_mortality": 27467, + "fertility": 1.89, + "life_expect": 77.5, + "population": 19733829 + }, + "x": 16123, + "y": 77.5, + "size": 19733829, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Pakistan", + "count": 216, + "this": { + "country": "Pakistan", + "year": 2009, + "map_id": 586, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 4227, + "child_mortality": 465546, + "fertility": 3.51, + "life_expect": 64.4, + "population": 41125163 + }, + "x": 4227, + "y": 64.4, + "size": 41125163, + "color": "Asia", + "map_id": 586 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 2009, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 2355, + "child_mortality": 169711, + "fertility": 2.32, + "life_expect": 68.5, + "population": 43065452 + }, + "x": 2355, + "y": 68.5, + "size": 43065452, + "color": "Asia", + "map_id": 50 + }, + { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 2009, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 8108, + "child_mortality": 158869, + "fertility": 2.46, + "life_expect": 69.6, + "population": 79036888 + }, + "x": 8108, + "y": 69.6, + "size": 79036888, + "color": "Asia", + "map_id": 360 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 109.43493886998723, + -88.93673384752877 + ], + "drag": [ + 109.43493886998723, + -88.93673384752877 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 65 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1989", + "timestamp": 1522409235111, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 2009, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 8108, + "child_mortality": 158869, + "fertility": 2.46, + "life_expect": 69.6, + "population": 79036888 + }, + "x": 8108, + "y": 69.6, + "size": 79036888, + "color": "Asia", + "map_id": 360 + }, + "currentYear": 1989, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.23719560424896247, + "skewed": 0.17788323475479628, + "clumpy": 0.81636401816808, + "sparse": 0.907721693886818, + "striated": 0.7036148357752192, + "convex": 0.41017655981579226, + "skinny": 0.7808641511611825, + "stringy": 0.35020728742581264, + "monotonic": 0.6093784027547191, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 9.740282517223996, + -89.46131980828439 + ], + "drag": [ + 9.740282517223996, + -89.46131980828439 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 66 + }, + { + "attrs": { + "name": "Selected Year 1989", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1989\",\"payload\":{\"numVal\":1989},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.24\",\"payload\":{\"numVal\":0.23719560424896247},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.18\",\"payload\":{\"numVal\":0.17788323475479628},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.82\",\"payload\":{\"numVal\":0.81636401816808},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.91\",\"payload\":{\"numVal\":0.907721693886818},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.7\",\"payload\":{\"numVal\":0.7036148357752192},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.41\",\"payload\":{\"numVal\":0.41017655981579226},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.78\",\"payload\":{\"numVal\":0.7808641511611825},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.35\",\"payload\":{\"numVal\":0.35020728742581264},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.61\",\"payload\":{\"numVal\":0.6093784027547191},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 67 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1989", + "timestamp": 1522409235111, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 2009, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 8108, + "child_mortality": 158869, + "fertility": 2.46, + "life_expect": 69.6, + "population": 79036888 + }, + "x": 8108, + "y": 69.6, + "size": 79036888, + "color": "Asia", + "map_id": 360 + }, + "currentYear": 1948, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.23475266898857594, + "skewed": 0.8881036208135458, + "clumpy": 0.7398388415421613, + "sparse": 0.5669752934976791, + "striated": 0.7231761492124922, + "convex": 0.5283101635551817, + "skinny": 0.5114015001209966, + "stringy": 0.8039958657955733, + "monotonic": 0.5004883802355493, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 9.740282517223996, + -89.46131980828439 + ], + "drag": [ + 9.740282517223996, + -89.46131980828439 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 68 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Mexico (1 Countries)", + "timestamp": 1522409259838, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 484, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.52677526775267, + 24.992896718735835 + ], + [ + -97.70317703177031, + 24.271866753716395 + ], + [ + -97.77517775177752, + 22.93305289848078 + ], + [ + -97.87237872378724, + 22.44390346211783 + ], + [ + -97.69957699576996, + 21.898899591844923 + ], + [ + -97.38997389973899, + 21.411442714085297 + ], + [ + -97.18837188371883, + 20.636250873759238 + ], + [ + -96.5259652596526, + 19.89152508829315 + ], + [ + -96.2919629196292, + 19.321132838970257 + ], + [ + -95.89955899558996, + 18.828598285400645 + ], + [ + -94.83754837548375, + 18.562866584677522 + ], + [ + -94.42714427144271, + 18.144804609654514 + ], + [ + -93.54873548735488, + 18.4240767792043 + ], + [ + -92.78552785527854, + 18.525630295404213 + ], + [ + -92.03672036720367, + 18.705041507357407 + ], + [ + -91.40671406714067, + 18.87598992629394 + ], + [ + -90.7731077310773, + 19.283896549696962 + ], + [ + -90.53190531905318, + 19.867829267846503 + ], + [ + -90.45270452704527, + 20.70733833509918 + ], + [ + -90.279902799028, + 21.000150973475613 + ], + [ + -89.6030960309603, + 21.262497556992074 + ], + [ + -88.54468544685446, + 21.494378085648563 + ], + [ + -87.6590765907659, + 21.458834354978592 + ], + [ + -87.05067050670506, + 21.543462285145196 + ], + [ + -86.8130681306813, + 21.331892459728692 + ], + [ + -86.84546845468455, + 20.849513257779066 + ], + [ + -87.38187381873819, + 20.25542518800954 + ], + [ + -87.61947619476194, + 19.646104090810013 + ], + [ + -87.43587435874359, + 19.47177055466682 + ], + [ + -87.58707587075871, + 19.04016811081715 + ], + [ + -87.83547835478355, + 18.25989859468109 + ], + [ + -88.09108091080911, + 18.517167502387565 + ], + [ + -88.29988299882999, + 18.50024191635424 + ], + [ + -88.49068490684907, + 18.48670144752758 + ], + [ + -88.8470884708847, + 17.882458026138053 + ], + [ + -89.03069030690307, + 18.00093712837129 + ], + [ + -89.14949149491494, + 17.955238046081334 + ], + [ + -89.14229142291423, + 17.80798544759145 + ], + [ + -90.06750067500674, + 17.819833357814773 + ], + [ + -90.99990999909998, + 17.818140799211434 + ], + [ + -91.00351003510035, + 17.25451878430188 + ], + [ + -91.45351453514535, + 17.25282622569854 + ], + [ + -91.08271082710827, + 16.917699622238814 + ], + [ + -90.71190711907118, + 16.68751165218565 + ], + [ + -90.60030600306003, + 16.47086415095916 + ], + [ + -90.43830438304383, + 16.409932041239202 + ], + [ + -90.46350463504635, + 16.069727761969474 + ], + [ + -91.74871748717487, + 16.066342644762813 + ], + [ + -92.22752227522275, + 15.252221956560106 + ], + [ + -92.08712087120871, + 15.06434795159025 + ], + [ + -92.20232202322023, + 14.830774864330436 + ], + [ + -92.22752227522275, + 14.539654784557328 + ], + [ + -93.35793357933579, + 15.616122056276495 + ], + [ + -93.87633876338764, + 15.939400749512899 + ], + [ + -94.68994689946899, + 16.201747333029374 + ], + [ + -95.25155251552515, + 16.128967313086093 + ], + [ + -96.05436054360543, + 15.751526744543057 + ], + [ + -96.55836558365583, + 15.65335834554979 + ], + [ + -97.26397263972639, + 15.91739748766959 + ], + [ + -98.01278012780128, + 16.10696405124277 + ], + [ + -98.94878948789487, + 16.56564743274575 + ], + [ + -99.69759697596976, + 16.70612979682231 + ], + [ + -100.8280082800828, + 17.171583412738613 + ], + [ + -101.66681666816667, + 17.64888493887824 + ], + [ + -101.91881918819188, + 17.9163091982047 + ], + [ + -102.47682476824768, + 17.97554874932132 + ], + [ + -103.49923499234993, + 18.2920572081444 + ], + [ + -103.91683916839168, + 18.74904803104404 + ], + [ + -104.99324993249932, + 19.31605516316027 + ], + [ + -105.49365493654936, + 19.947379522203107 + ], + [ + -105.73125731257312, + 20.434836399962734 + ], + [ + -105.39645396453965, + 20.531312240352648 + ], + [ + -105.50085500855008, + 20.817354644315756 + ], + [ + -105.27045270452705, + 21.076316110625555 + ], + [ + -105.26685266852668, + 21.421598065705282 + ], + [ + -105.60165601656016, + 21.8718186541916 + ], + [ + -105.69165691656916, + 22.269569925974622 + ], + [ + -106.030060300603, + 22.773952389767572 + ], + [ + -106.90846908469085, + 23.76748428992346 + ], + [ + -107.91647916479164, + 24.549446364662842 + ], + [ + -108.40248402484025, + 25.17230793068903 + ], + [ + -109.25929259292593, + 25.580214554092038 + ], + [ + -109.44289442894429, + 25.82563555157519 + ], + [ + -109.29169291692916, + 26.443419441791363 + ], + [ + -109.80289802898028, + 26.67699252905119 + ], + [ + -110.39330393303933, + 27.162756848207465 + ], + [ + -110.64170641706417, + 27.860090992780258 + ], + [ + -111.1781117811178, + 27.9413338057402 + ], + [ + -111.76131761317613, + 28.467719531376446 + ], + [ + -112.22932229322294, + 28.955176409136072 + ], + [ + -112.27252272522725, + 29.266607192149166 + ], + [ + -112.8089280892809, + 30.02148832923524 + ], + [ + -113.16533165331653, + 30.786524817941313 + ], + [ + -113.14733147331474, + 31.170735620897673 + ], + [ + -113.87093870938709, + 31.566794334077358 + ], + [ + -114.20574205742057, + 31.524480368994062 + ], + [ + -114.77814778147781, + 31.800367421337185 + ], + [ + -114.93654936549365, + 31.3941533565375 + ], + [ + -114.7709477094771, + 30.913466713191212 + ], + [ + -114.67374673746737, + 30.1619706933118 + ], + [ + -114.33174331743317, + 29.750678952702117 + ], + [ + -113.590135901359, + 29.061807601145986 + ], + [ + -113.42453424534246, + 28.826541955282835 + ], + [ + -113.27333273332734, + 28.755454493942892 + ], + [ + -113.14013140131401, + 28.41186509746649 + ], + [ + -112.96372963729637, + 28.42540556629315 + ], + [ + -112.7621276212762, + 27.780540738423653 + ], + [ + -112.45612456124562, + 27.526656947923854 + ], + [ + -112.24372243722436, + 27.171219641224127 + ], + [ + -111.61731617316173, + 26.66345206022453 + ], + [ + -111.28611286112861, + 25.732544828391923 + ], + [ + -110.98730987309872, + 25.29417215012893 + ], + [ + -110.710107101071, + 24.825333417005965 + ], + [ + -110.65610656106561, + 24.298947691369705 + ], + [ + -110.17370173701737, + 24.26509651930307 + ], + [ + -109.77049770497705, + 23.811490813610092 + ], + [ + -109.41049410494105, + 23.364655342330437 + ], + [ + -109.43209432094321, + 23.185244130377242 + ], + [ + -109.85329853298532, + 22.817958913454206 + ], + [ + -110.02970029700296, + 22.82303658926419 + ], + [ + -110.2961029610296, + 23.430665127860394 + ], + [ + -110.94770947709476, + 24.001057377183272 + ], + [ + -111.67131671316713, + 24.485129137736223 + ], + [ + -112.18252182521825, + 24.739012928236036 + ], + [ + -112.15012150121501, + 25.470198244875462 + ], + [ + -112.30132301323013, + 26.011816997941708 + ], + [ + -112.77652776527765, + 26.321555222351463 + ], + [ + -113.4641346413464, + 26.76839069363112 + ], + [ + -113.59733597335973, + 26.63975623977788 + ], + [ + -113.84933849338493, + 26.900410264691004 + ], + [ + -114.4649446494465, + 27.142446144967494 + ], + [ + -115.05535055350553, + 27.722993745910372 + ], + [ + -114.98334983349834, + 27.797466324456977 + ], + [ + -114.56934569345694, + 27.74161189054702 + ], + [ + -114.19854198541985, + 28.115667341883395 + ], + [ + -114.16254162541625, + 28.565887930369712 + ], + [ + -114.9329493294933, + 29.280147660975814 + ], + [ + -115.51975519755197, + 29.556034713318937 + ], + [ + -115.8869588695887, + 30.18058883794845 + ], + [ + -116.25776257762578, + 30.83730157604127 + ], + [ + -116.72216722167221, + 31.636189236813976 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -97.14157141571415, + 25.869642075261808 + ] + ] + ] + }, + "countryRef": { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + }, + "currentYear": 1989, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.31104039819081564, + "skewed": 0.40928136800057113, + "clumpy": 0.382054198122431, + "sparse": 0.2087661192401491, + "striated": 0.09037317668584421, + "convex": 0.7175533636101561, + "skinny": 0.017460717152140592, + "stringy": 0.20353012037199258, + "monotonic": 0.5254600304556738, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -101.98648753328654, + -88.19368056153952 + ], + "drag": [ + -101.98648753328654, + -88.19368056153952 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 69 + }, + { + "attrs": { + "name": "Selected Mexico (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1989\",\"payload\":{\"numVal\":1989},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.31\",\"payload\":{\"numVal\":0.31104039819081564},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.41\",\"payload\":{\"numVal\":0.40928136800057113},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.38\",\"payload\":{\"numVal\":0.382054198122431},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.21\",\"payload\":{\"numVal\":0.2087661192401491},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.09\",\"payload\":{\"numVal\":0.09037317668584421},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.72\",\"payload\":{\"numVal\":0.7175533636101561},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.02\",\"payload\":{\"numVal\":0.017460717152140592},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.2\",\"payload\":{\"numVal\":0.20353012037199258},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.53\",\"payload\":{\"numVal\":0.5254600304556738},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 70 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Mexico (1 Countries)", + "timestamp": 1522409259838, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 2009, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 8108, + "child_mortality": 158869, + "fertility": 2.46, + "life_expect": 69.6, + "population": 79036888 + }, + "x": 8108, + "y": 69.6, + "size": 79036888, + "color": "Asia", + "map_id": 360 + }, + "currentYear": 1989, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.23719560424896247, + "skewed": 0.17788323475479628, + "clumpy": 0.81636401816808, + "sparse": 0.907721693886818, + "striated": 0.7036148357752192, + "convex": 0.41017655981579226, + "skinny": 0.7808641511611825, + "stringy": 0.35020728742581264, + "monotonic": 0.6093784027547191, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 9.740282517223996, + -89.46131980828439 + ], + "drag": [ + 9.740282517223996, + -89.46131980828439 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 71 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Argentina (2 Countries)", + "timestamp": 1522409263088, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 32, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -66.95886958869588, + -54.897561917138425 + ], + [ + -67.56367563675636, + -54.87048097948511 + ], + [ + -68.63288632886328, + -54.868788420881785 + ], + [ + -68.63288632886328, + -52.63630362308686 + ], + [ + -68.25128251282513, + -53.100064680399825 + ], + [ + -67.75087750877509, + -53.84986814167591 + ], + [ + -66.45126451264512, + -54.45072644585878 + ], + [ + -65.05085050850508, + -54.699532560548576 + ], + [ + -65.50085500855008, + -55.20052990713485 + ], + [ + -66.45126451264512, + -55.24961410663148 + ], + [ + -66.95886958869588, + -54.897561917138425 + ] + ] + ], + [ + [ + [ + -62.685626856268556, + -22.24979901746726 + ], + [ + -60.84600846008459, + -23.88142551107932 + ], + [ + -60.02880028800287, + -24.03206322677587 + ], + [ + -58.80838808388083, + -24.771711336431956 + ], + [ + -57.77877778777787, + -25.162692373801654 + ], + [ + -57.63477634776348, + -25.60445016927131 + ], + [ + -58.61758617586176, + -27.124367795063456 + ], + [ + -57.60957609576096, + -27.395177171596572 + ], + [ + -56.48636486364863, + -27.549200004499788 + ], + [ + -55.69435694356943, + -27.388406937183248 + ], + [ + -54.78714787147871, + -26.621677889873844 + ], + [ + -54.62514625146251, + -25.73985485753787 + ], + [ + -54.12834128341282, + -25.546903176758022 + ], + [ + -53.627936279362785, + -26.12406566049423 + ], + [ + -53.649536495364956, + -26.922953321266945 + ], + [ + -54.491944919449196, + -27.474727425953184 + ], + [ + -55.161551615516146, + -27.88263404935619 + ], + [ + -56.291962919629185, + -28.852470129065438 + ], + [ + -57.6239762397624, + -30.216672363351037 + ], + [ + -57.8759787597876, + -31.01725258272708 + ], + [ + -58.14238142381423, + -32.04463565494961 + ], + [ + -58.13158131581315, + -33.03986011370883 + ], + [ + -58.35118351183512, + -33.26327784934866 + ], + [ + -58.42678426784268, + -33.90983523582149 + ], + [ + -58.49518495184951, + -34.43114328564774 + ], + [ + -57.22437224372243, + -35.287577938933744 + ], + [ + -57.361173611736106, + -35.978141849093205 + ], + [ + -56.73836738367383, + -36.41312941014953 + ], + [ + -56.78876788767887, + -36.90227884651248 + ], + [ + -57.749977499775, + -38.183545709234814 + ], + [ + -59.23319233192332, + -38.72008678649106 + ], + [ + -61.23841238412383, + -38.9282714947009 + ], + [ + -62.33642336423364, + -38.82841053710431 + ], + [ + -62.1240212402124, + -39.424191165477176 + ], + [ + -62.329223292232925, + -40.172302068149925 + ], + [ + -62.145621456214556, + -40.67668453194287 + ], + [ + -62.746827468274674, + -41.028736721435926 + ], + [ + -63.76923769237692, + -41.16752652690915 + ], + [ + -64.73044730447305, + -40.80193386858944 + ], + [ + -65.11925119251192, + -41.0642804521059 + ], + [ + -64.97884978849788, + -42.057812352261784 + ], + [ + -64.3020430204302, + -42.359087783654886 + ], + [ + -63.75483754837548, + -42.04427188343513 + ], + [ + -63.459634596345964, + -42.56388737465806 + ], + [ + -64.37764377643776, + -42.873625599067815 + ], + [ + -65.18045180451804, + -43.494794606490665 + ], + [ + -65.3280532805328, + -44.50186697547321 + ], + [ + -65.56565565655656, + -45.03671549412613 + ], + [ + -66.50886508865088, + -45.04010061133279 + ], + [ + -67.29367293672937, + -45.55125330953906 + ], + [ + -67.58167581675816, + -46.30105677081514 + ], + [ + -66.59886598865988, + -47.0339346460579 + ], + [ + -65.64125641256412, + -47.23534911985441 + ], + [ + -65.98685986859869, + -48.13409773822371 + ], + [ + -67.16767167671676, + -48.69771975313327 + ], + [ + -67.81567815678156, + -49.86897030663902 + ], + [ + -68.73008730087301, + -50.26502901981871 + ], + [ + -69.13689136891368, + -50.732175194338346 + ], + [ + -68.81648816488165, + -51.7714061767842 + ], + [ + -68.15048150481505, + -52.350261219123745 + ], + [ + -68.57168571685716, + -52.29948446102379 + ], + [ + -69.49689496894969, + -52.14207651091391 + ], + [ + -71.9161191611916, + -52.00836438125068 + ], + [ + -72.330123301233, + -51.42612422170447 + ], + [ + -72.30852308523085, + -50.67632076042839 + ], + [ + -72.97452974529745, + -50.74063798735501 + ], + [ + -73.32733327333273, + -50.37843044624196 + ], + [ + -73.41373413734136, + -49.31888876055611 + ], + [ + -72.64692646926468, + -48.878823523689796 + ], + [ + -72.330123301233, + -48.24411404744029 + ], + [ + -72.44892448924489, + -47.73803902504402 + ], + [ + -71.9161191611916, + -46.884989488964685 + ], + [ + -71.55251552515524, + -45.56140866115905 + ], + [ + -71.66051660516605, + -44.97409082580284 + ], + [ + -71.22131221312213, + -44.78452426222966 + ], + [ + -71.32931329313293, + -44.407083693686616 + ], + [ + -71.79371793717937, + -44.20736177849344 + ], + [ + -71.46251462514624, + -43.787607244867104 + ], + [ + -71.9161191611916, + -43.408474117720736 + ], + [ + -72.15012150121501, + -42.2541491502483 + ], + [ + -71.74691746917469, + -42.05104211784846 + ], + [ + -71.9161191611916, + -40.832399923449415 + ], + [ + -71.68211682116821, + -39.80840196843354 + ], + [ + -71.4121141211412, + -38.91642358447758 + ], + [ + -70.81450814508145, + -38.552523484761196 + ], + [ + -71.11691116911169, + -37.577609729241956 + ], + [ + -71.12051120511205, + -36.658550407632674 + ], + [ + -70.36450364503645, + -36.005222786746515 + ], + [ + -70.38970389703897, + -35.1690988367005 + ], + [ + -69.81729817298172, + -34.19418508118127 + ], + [ + -69.81369813698137, + -33.27343320096865 + ], + [ + -70.07290072900729, + -33.09063687180879 + ], + [ + -70.53370533705336, + -31.36422709641014 + ], + [ + -69.9180991809918, + -30.336844024187613 + ], + [ + -70.01530015300153, + -29.368700503081698 + ], + [ + -69.65529655296552, + -28.45979653309241 + ], + [ + -69.0000900009, + -27.520426508243148 + ], + [ + -68.29448294482944, + -26.899257500820298 + ], + [ + -68.59328593285933, + -26.50658390484727 + ], + [ + -68.38448384483844, + -26.18499777021419 + ], + [ + -68.41688416884169, + -24.517827545932157 + ], + [ + -67.32967329673296, + -24.025292992362544 + ], + [ + -66.9840698406984, + -22.986062009916687 + ], + [ + -67.10647106471065, + -22.73556333662355 + ], + [ + -66.27486274862748, + -21.831737042444253 + ], + [ + -64.96444964449644, + -22.075465481324066 + ], + [ + -64.37764377643776, + -22.79818800494683 + ], + [ + -63.98523985239852, + -21.99422266836413 + ], + [ + -62.847628476284754, + -22.034844074844095 + ], + [ + -62.685626856268556, + -22.24979901746726 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + }, + "currentYear": 1989, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9299697353382339, + "skewed": 0.010129005356997567, + "clumpy": 0.9297456923304899, + "sparse": 0.9792609095950815, + "striated": 0.26763575754958113, + "convex": 0.4411080148306634, + "skinny": 0.31072520732615505, + "stringy": 0.0846621646089527, + "monotonic": 0.7259087807777282, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + }, + { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -64.1712730546522, + -89.38653704990112 + ], + "drag": [ + -64.1712730546522, + -89.38653704990112 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 72 + }, + { + "attrs": { + "name": "Selected Argentina (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1989\",\"payload\":{\"numVal\":1989},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.93\",\"payload\":{\"numVal\":0.9299697353382339},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.01\",\"payload\":{\"numVal\":0.010129005356997567},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.93\",\"payload\":{\"numVal\":0.9297456923304899},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.98\",\"payload\":{\"numVal\":0.9792609095950815},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.27\",\"payload\":{\"numVal\":0.26763575754958113},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.44\",\"payload\":{\"numVal\":0.4411080148306634},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.31\",\"payload\":{\"numVal\":0.31072520732615505},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.08\",\"payload\":{\"numVal\":0.0846621646089527},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.73\",\"payload\":{\"numVal\":0.7259087807777282},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Argentina\",\"text\":\"Argentina\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 73 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Argentina (2 Countries)", + "timestamp": 1522409263088, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 484, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.52677526775267, + 24.992896718735835 + ], + [ + -97.70317703177031, + 24.271866753716395 + ], + [ + -97.77517775177752, + 22.93305289848078 + ], + [ + -97.87237872378724, + 22.44390346211783 + ], + [ + -97.69957699576996, + 21.898899591844923 + ], + [ + -97.38997389973899, + 21.411442714085297 + ], + [ + -97.18837188371883, + 20.636250873759238 + ], + [ + -96.5259652596526, + 19.89152508829315 + ], + [ + -96.2919629196292, + 19.321132838970257 + ], + [ + -95.89955899558996, + 18.828598285400645 + ], + [ + -94.83754837548375, + 18.562866584677522 + ], + [ + -94.42714427144271, + 18.144804609654514 + ], + [ + -93.54873548735488, + 18.4240767792043 + ], + [ + -92.78552785527854, + 18.525630295404213 + ], + [ + -92.03672036720367, + 18.705041507357407 + ], + [ + -91.40671406714067, + 18.87598992629394 + ], + [ + -90.7731077310773, + 19.283896549696962 + ], + [ + -90.53190531905318, + 19.867829267846503 + ], + [ + -90.45270452704527, + 20.70733833509918 + ], + [ + -90.279902799028, + 21.000150973475613 + ], + [ + -89.6030960309603, + 21.262497556992074 + ], + [ + -88.54468544685446, + 21.494378085648563 + ], + [ + -87.6590765907659, + 21.458834354978592 + ], + [ + -87.05067050670506, + 21.543462285145196 + ], + [ + -86.8130681306813, + 21.331892459728692 + ], + [ + -86.84546845468455, + 20.849513257779066 + ], + [ + -87.38187381873819, + 20.25542518800954 + ], + [ + -87.61947619476194, + 19.646104090810013 + ], + [ + -87.43587435874359, + 19.47177055466682 + ], + [ + -87.58707587075871, + 19.04016811081715 + ], + [ + -87.83547835478355, + 18.25989859468109 + ], + [ + -88.09108091080911, + 18.517167502387565 + ], + [ + -88.29988299882999, + 18.50024191635424 + ], + [ + -88.49068490684907, + 18.48670144752758 + ], + [ + -88.8470884708847, + 17.882458026138053 + ], + [ + -89.03069030690307, + 18.00093712837129 + ], + [ + -89.14949149491494, + 17.955238046081334 + ], + [ + -89.14229142291423, + 17.80798544759145 + ], + [ + -90.06750067500674, + 17.819833357814773 + ], + [ + -90.99990999909998, + 17.818140799211434 + ], + [ + -91.00351003510035, + 17.25451878430188 + ], + [ + -91.45351453514535, + 17.25282622569854 + ], + [ + -91.08271082710827, + 16.917699622238814 + ], + [ + -90.71190711907118, + 16.68751165218565 + ], + [ + -90.60030600306003, + 16.47086415095916 + ], + [ + -90.43830438304383, + 16.409932041239202 + ], + [ + -90.46350463504635, + 16.069727761969474 + ], + [ + -91.74871748717487, + 16.066342644762813 + ], + [ + -92.22752227522275, + 15.252221956560106 + ], + [ + -92.08712087120871, + 15.06434795159025 + ], + [ + -92.20232202322023, + 14.830774864330436 + ], + [ + -92.22752227522275, + 14.539654784557328 + ], + [ + -93.35793357933579, + 15.616122056276495 + ], + [ + -93.87633876338764, + 15.939400749512899 + ], + [ + -94.68994689946899, + 16.201747333029374 + ], + [ + -95.25155251552515, + 16.128967313086093 + ], + [ + -96.05436054360543, + 15.751526744543057 + ], + [ + -96.55836558365583, + 15.65335834554979 + ], + [ + -97.26397263972639, + 15.91739748766959 + ], + [ + -98.01278012780128, + 16.10696405124277 + ], + [ + -98.94878948789487, + 16.56564743274575 + ], + [ + -99.69759697596976, + 16.70612979682231 + ], + [ + -100.8280082800828, + 17.171583412738613 + ], + [ + -101.66681666816667, + 17.64888493887824 + ], + [ + -101.91881918819188, + 17.9163091982047 + ], + [ + -102.47682476824768, + 17.97554874932132 + ], + [ + -103.49923499234993, + 18.2920572081444 + ], + [ + -103.91683916839168, + 18.74904803104404 + ], + [ + -104.99324993249932, + 19.31605516316027 + ], + [ + -105.49365493654936, + 19.947379522203107 + ], + [ + -105.73125731257312, + 20.434836399962734 + ], + [ + -105.39645396453965, + 20.531312240352648 + ], + [ + -105.50085500855008, + 20.817354644315756 + ], + [ + -105.27045270452705, + 21.076316110625555 + ], + [ + -105.26685266852668, + 21.421598065705282 + ], + [ + -105.60165601656016, + 21.8718186541916 + ], + [ + -105.69165691656916, + 22.269569925974622 + ], + [ + -106.030060300603, + 22.773952389767572 + ], + [ + -106.90846908469085, + 23.76748428992346 + ], + [ + -107.91647916479164, + 24.549446364662842 + ], + [ + -108.40248402484025, + 25.17230793068903 + ], + [ + -109.25929259292593, + 25.580214554092038 + ], + [ + -109.44289442894429, + 25.82563555157519 + ], + [ + -109.29169291692916, + 26.443419441791363 + ], + [ + -109.80289802898028, + 26.67699252905119 + ], + [ + -110.39330393303933, + 27.162756848207465 + ], + [ + -110.64170641706417, + 27.860090992780258 + ], + [ + -111.1781117811178, + 27.9413338057402 + ], + [ + -111.76131761317613, + 28.467719531376446 + ], + [ + -112.22932229322294, + 28.955176409136072 + ], + [ + -112.27252272522725, + 29.266607192149166 + ], + [ + -112.8089280892809, + 30.02148832923524 + ], + [ + -113.16533165331653, + 30.786524817941313 + ], + [ + -113.14733147331474, + 31.170735620897673 + ], + [ + -113.87093870938709, + 31.566794334077358 + ], + [ + -114.20574205742057, + 31.524480368994062 + ], + [ + -114.77814778147781, + 31.800367421337185 + ], + [ + -114.93654936549365, + 31.3941533565375 + ], + [ + -114.7709477094771, + 30.913466713191212 + ], + [ + -114.67374673746737, + 30.1619706933118 + ], + [ + -114.33174331743317, + 29.750678952702117 + ], + [ + -113.590135901359, + 29.061807601145986 + ], + [ + -113.42453424534246, + 28.826541955282835 + ], + [ + -113.27333273332734, + 28.755454493942892 + ], + [ + -113.14013140131401, + 28.41186509746649 + ], + [ + -112.96372963729637, + 28.42540556629315 + ], + [ + -112.7621276212762, + 27.780540738423653 + ], + [ + -112.45612456124562, + 27.526656947923854 + ], + [ + -112.24372243722436, + 27.171219641224127 + ], + [ + -111.61731617316173, + 26.66345206022453 + ], + [ + -111.28611286112861, + 25.732544828391923 + ], + [ + -110.98730987309872, + 25.29417215012893 + ], + [ + -110.710107101071, + 24.825333417005965 + ], + [ + -110.65610656106561, + 24.298947691369705 + ], + [ + -110.17370173701737, + 24.26509651930307 + ], + [ + -109.77049770497705, + 23.811490813610092 + ], + [ + -109.41049410494105, + 23.364655342330437 + ], + [ + -109.43209432094321, + 23.185244130377242 + ], + [ + -109.85329853298532, + 22.817958913454206 + ], + [ + -110.02970029700296, + 22.82303658926419 + ], + [ + -110.2961029610296, + 23.430665127860394 + ], + [ + -110.94770947709476, + 24.001057377183272 + ], + [ + -111.67131671316713, + 24.485129137736223 + ], + [ + -112.18252182521825, + 24.739012928236036 + ], + [ + -112.15012150121501, + 25.470198244875462 + ], + [ + -112.30132301323013, + 26.011816997941708 + ], + [ + -112.77652776527765, + 26.321555222351463 + ], + [ + -113.4641346413464, + 26.76839069363112 + ], + [ + -113.59733597335973, + 26.63975623977788 + ], + [ + -113.84933849338493, + 26.900410264691004 + ], + [ + -114.4649446494465, + 27.142446144967494 + ], + [ + -115.05535055350553, + 27.722993745910372 + ], + [ + -114.98334983349834, + 27.797466324456977 + ], + [ + -114.56934569345694, + 27.74161189054702 + ], + [ + -114.19854198541985, + 28.115667341883395 + ], + [ + -114.16254162541625, + 28.565887930369712 + ], + [ + -114.9329493294933, + 29.280147660975814 + ], + [ + -115.51975519755197, + 29.556034713318937 + ], + [ + -115.8869588695887, + 30.18058883794845 + ], + [ + -116.25776257762578, + 30.83730157604127 + ], + [ + -116.72216722167221, + 31.636189236813976 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -97.14157141571415, + 25.869642075261808 + ] + ] + ] + }, + "countryRef": { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + }, + "currentYear": 1989, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.31104039819081564, + "skewed": 0.40928136800057113, + "clumpy": 0.382054198122431, + "sparse": 0.2087661192401491, + "striated": 0.09037317668584421, + "convex": 0.7175533636101561, + "skinny": 0.017460717152140592, + "stringy": 0.20353012037199258, + "monotonic": 0.5254600304556738, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -101.98648753328654, + -88.19368056153952 + ], + "drag": [ + -101.98648753328654, + -88.19368056153952 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 74 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Malaysia (3 Countries)", + "timestamp": 1522409269333, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 458, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 102.14202142021423, + 6.222421807783832 + ], + [ + 102.37242372423725, + 6.1276385259972415 + ], + [ + 102.96282962829628, + 5.525087663211039 + ], + [ + 103.38043380433805, + 4.85483445629157 + ], + [ + 103.43803438034382, + 4.181196132165425 + ], + [ + 103.33363333633338, + 3.725897867869108 + ], + [ + 103.4308343083431, + 3.3823084713927187 + ], + [ + 103.50283502835032, + 2.79160551882984 + ], + [ + 103.8556385563856, + 2.5157184664867316 + ], + [ + 104.24804248042483, + 1.6305103169440827 + ], + [ + 104.23004230042301, + 1.2936911548810173 + ], + [ + 103.52083520835208, + 1.2259888107477366 + ], + [ + 102.57402574025741, + 1.967329479007148 + ], + [ + 101.389613896139, + 2.7611394639698688 + ], + [ + 101.27441274412746, + 3.270599603572805 + ], + [ + 100.69480694806947, + 3.93916025188895 + ], + [ + 100.5580055800558, + 4.766821408918304 + ], + [ + 100.1980019800198, + 5.311825279191211 + ], + [ + 100.3060030600306, + 6.041318037227299 + ], + [ + 100.08640086400862, + 6.464457688060307 + ], + [ + 100.25920259202593, + 6.642176341410163 + ], + [ + 101.07641076410766, + 6.205496221750508 + ], + [ + 101.15561155611556, + 5.690958406337572 + ], + [ + 101.81441814418145, + 5.8111300671741475 + ], + [ + 102.14202142021423, + 6.222421807783832 + ] + ] + ], + [ + [ + [ + 117.88137881378816, + 4.137189608478792 + ], + [ + 117.01377013770139, + 4.306445468811987 + ], + [ + 115.86535865358655, + 4.306445468811987 + ], + [ + 115.519755197552, + 3.1690460873728767 + ], + [ + 115.13455134551344, + 2.8220715736898256 + ], + [ + 114.619746197462, + 1.4307884017509025 + ], + [ + 113.80613806138064, + 1.2175260177310747 + ], + [ + 112.85932859328597, + 1.4984907458841832 + ], + [ + 112.38052380523806, + 1.4104776985109169 + ], + [ + 111.79731797317976, + 0.9044026761146569 + ], + [ + 111.160111601116, + 0.9771826960579233 + ], + [ + 110.51570515705157, + 0.7723831050547574 + ], + [ + 109.83169831698319, + 1.3376976785676504 + ], + [ + 109.66249662496625, + 2.0062583268837955 + ], + [ + 110.39690396903973, + 1.66436148901073 + ], + [ + 111.16731167311673, + 1.8505429353772485 + ], + [ + 111.36891368913689, + 2.69682223704325 + ], + [ + 111.79731797317976, + 2.88638880061643 + ], + [ + 112.99612996129963, + 3.103036301842934 + ], + [ + 113.71253712537128, + 3.8934611695989787 + ], + [ + 114.2057420574206, + 4.526478087245152 + ], + [ + 114.65934659346595, + 4.006862596022231 + ], + [ + 114.86814868148684, + 4.348759433895296 + ], + [ + 115.3469534695347, + 4.316600820431987 + ], + [ + 115.40455404554046, + 4.95469541388816 + ], + [ + 115.45135451354514, + 5.447229967457773 + ], + [ + 116.2217622176222, + 6.142871553427227 + ], + [ + 116.7257672576726, + 6.92483362816661 + ], + [ + 117.12897128971292, + 6.928218745373272 + ], + [ + 117.64377643776442, + 6.422143722977012 + ], + [ + 117.69057690576909, + 5.98715616192068 + ], + [ + 118.34938349383492, + 5.7078839923708955 + ], + [ + 119.18099180991811, + 5.408301119581125 + ], + [ + 119.10899108991089, + 5.015627523608103 + ], + [ + 118.43938439384397, + 4.966543324111484 + ], + [ + 118.61938619386194, + 4.477393887748519 + ], + [ + 117.88137881378816, + 4.137189608478792 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Malaysia", + "count": 216, + "this": { + "country": "Malaysia", + "year": 2009, + "map_id": 458, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 19320, + "child_mortality": 3466, + "fertility": 2.02, + "life_expect": 74.3, + "population": 7204671 + }, + "x": 19320, + "y": 74.3, + "size": 7204671, + "color": "Asia", + "map_id": 458 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Malaysia", + "count": 216, + "this": { + "country": "Malaysia", + "year": 2009, + "map_id": 458, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 19320, + "child_mortality": 3466, + "fertility": 2.02, + "life_expect": 74.3, + "population": 7204671 + }, + "x": 19320, + "y": 74.3, + "size": 7204671, + "color": "Asia", + "map_id": 458 + }, + "currentYear": 1989, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.1519885266892691, + "skewed": 0.53892591415838, + "clumpy": 0.715158225578876, + "sparse": 0.6312490829954263, + "striated": 0.9371980875847539, + "convex": 0.9854252104118579, + "skinny": 0.4664723038120062, + "stringy": 0.7759338781267175, + "monotonic": 0.4110016244117667, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + }, + { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + }, + { + "country": "Malaysia", + "count": 216, + "this": { + "country": "Malaysia", + "year": 2009, + "map_id": 458, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 19320, + "child_mortality": 3466, + "fertility": 2.02, + "life_expect": 74.3, + "population": 7204671 + }, + "x": 19320, + "y": 74.3, + "size": 7204671, + "color": "Asia", + "map_id": 458 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 102.55944532841735, + -88.68829152390464 + ], + "drag": [ + 102.55944532841735, + -88.68829152390464 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 75 + }, + { + "attrs": { + "name": "Selected Malaysia (3 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1989\",\"payload\":{\"numVal\":1989},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.15\",\"payload\":{\"numVal\":0.1519885266892691},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.54\",\"payload\":{\"numVal\":0.53892591415838},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.72\",\"payload\":{\"numVal\":0.715158225578876},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.63\",\"payload\":{\"numVal\":0.6312490829954263},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.94\",\"payload\":{\"numVal\":0.9371980875847539},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.99\",\"payload\":{\"numVal\":0.9854252104118579},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.47\",\"payload\":{\"numVal\":0.4664723038120062},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.78\",\"payload\":{\"numVal\":0.7759338781267175},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.41\",\"payload\":{\"numVal\":0.4110016244117667},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Argentina\",\"text\":\"Argentina\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Malaysia\",\"text\":\"Malaysia\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 76 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Malaysia (3 Countries)", + "timestamp": 1522409269333, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 32, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -66.95886958869588, + -54.897561917138425 + ], + [ + -67.56367563675636, + -54.87048097948511 + ], + [ + -68.63288632886328, + -54.868788420881785 + ], + [ + -68.63288632886328, + -52.63630362308686 + ], + [ + -68.25128251282513, + -53.100064680399825 + ], + [ + -67.75087750877509, + -53.84986814167591 + ], + [ + -66.45126451264512, + -54.45072644585878 + ], + [ + -65.05085050850508, + -54.699532560548576 + ], + [ + -65.50085500855008, + -55.20052990713485 + ], + [ + -66.45126451264512, + -55.24961410663148 + ], + [ + -66.95886958869588, + -54.897561917138425 + ] + ] + ], + [ + [ + [ + -62.685626856268556, + -22.24979901746726 + ], + [ + -60.84600846008459, + -23.88142551107932 + ], + [ + -60.02880028800287, + -24.03206322677587 + ], + [ + -58.80838808388083, + -24.771711336431956 + ], + [ + -57.77877778777787, + -25.162692373801654 + ], + [ + -57.63477634776348, + -25.60445016927131 + ], + [ + -58.61758617586176, + -27.124367795063456 + ], + [ + -57.60957609576096, + -27.395177171596572 + ], + [ + -56.48636486364863, + -27.549200004499788 + ], + [ + -55.69435694356943, + -27.388406937183248 + ], + [ + -54.78714787147871, + -26.621677889873844 + ], + [ + -54.62514625146251, + -25.73985485753787 + ], + [ + -54.12834128341282, + -25.546903176758022 + ], + [ + -53.627936279362785, + -26.12406566049423 + ], + [ + -53.649536495364956, + -26.922953321266945 + ], + [ + -54.491944919449196, + -27.474727425953184 + ], + [ + -55.161551615516146, + -27.88263404935619 + ], + [ + -56.291962919629185, + -28.852470129065438 + ], + [ + -57.6239762397624, + -30.216672363351037 + ], + [ + -57.8759787597876, + -31.01725258272708 + ], + [ + -58.14238142381423, + -32.04463565494961 + ], + [ + -58.13158131581315, + -33.03986011370883 + ], + [ + -58.35118351183512, + -33.26327784934866 + ], + [ + -58.42678426784268, + -33.90983523582149 + ], + [ + -58.49518495184951, + -34.43114328564774 + ], + [ + -57.22437224372243, + -35.287577938933744 + ], + [ + -57.361173611736106, + -35.978141849093205 + ], + [ + -56.73836738367383, + -36.41312941014953 + ], + [ + -56.78876788767887, + -36.90227884651248 + ], + [ + -57.749977499775, + -38.183545709234814 + ], + [ + -59.23319233192332, + -38.72008678649106 + ], + [ + -61.23841238412383, + -38.9282714947009 + ], + [ + -62.33642336423364, + -38.82841053710431 + ], + [ + -62.1240212402124, + -39.424191165477176 + ], + [ + -62.329223292232925, + -40.172302068149925 + ], + [ + -62.145621456214556, + -40.67668453194287 + ], + [ + -62.746827468274674, + -41.028736721435926 + ], + [ + -63.76923769237692, + -41.16752652690915 + ], + [ + -64.73044730447305, + -40.80193386858944 + ], + [ + -65.11925119251192, + -41.0642804521059 + ], + [ + -64.97884978849788, + -42.057812352261784 + ], + [ + -64.3020430204302, + -42.359087783654886 + ], + [ + -63.75483754837548, + -42.04427188343513 + ], + [ + -63.459634596345964, + -42.56388737465806 + ], + [ + -64.37764377643776, + -42.873625599067815 + ], + [ + -65.18045180451804, + -43.494794606490665 + ], + [ + -65.3280532805328, + -44.50186697547321 + ], + [ + -65.56565565655656, + -45.03671549412613 + ], + [ + -66.50886508865088, + -45.04010061133279 + ], + [ + -67.29367293672937, + -45.55125330953906 + ], + [ + -67.58167581675816, + -46.30105677081514 + ], + [ + -66.59886598865988, + -47.0339346460579 + ], + [ + -65.64125641256412, + -47.23534911985441 + ], + [ + -65.98685986859869, + -48.13409773822371 + ], + [ + -67.16767167671676, + -48.69771975313327 + ], + [ + -67.81567815678156, + -49.86897030663902 + ], + [ + -68.73008730087301, + -50.26502901981871 + ], + [ + -69.13689136891368, + -50.732175194338346 + ], + [ + -68.81648816488165, + -51.7714061767842 + ], + [ + -68.15048150481505, + -52.350261219123745 + ], + [ + -68.57168571685716, + -52.29948446102379 + ], + [ + -69.49689496894969, + -52.14207651091391 + ], + [ + -71.9161191611916, + -52.00836438125068 + ], + [ + -72.330123301233, + -51.42612422170447 + ], + [ + -72.30852308523085, + -50.67632076042839 + ], + [ + -72.97452974529745, + -50.74063798735501 + ], + [ + -73.32733327333273, + -50.37843044624196 + ], + [ + -73.41373413734136, + -49.31888876055611 + ], + [ + -72.64692646926468, + -48.878823523689796 + ], + [ + -72.330123301233, + -48.24411404744029 + ], + [ + -72.44892448924489, + -47.73803902504402 + ], + [ + -71.9161191611916, + -46.884989488964685 + ], + [ + -71.55251552515524, + -45.56140866115905 + ], + [ + -71.66051660516605, + -44.97409082580284 + ], + [ + -71.22131221312213, + -44.78452426222966 + ], + [ + -71.32931329313293, + -44.407083693686616 + ], + [ + -71.79371793717937, + -44.20736177849344 + ], + [ + -71.46251462514624, + -43.787607244867104 + ], + [ + -71.9161191611916, + -43.408474117720736 + ], + [ + -72.15012150121501, + -42.2541491502483 + ], + [ + -71.74691746917469, + -42.05104211784846 + ], + [ + -71.9161191611916, + -40.832399923449415 + ], + [ + -71.68211682116821, + -39.80840196843354 + ], + [ + -71.4121141211412, + -38.91642358447758 + ], + [ + -70.81450814508145, + -38.552523484761196 + ], + [ + -71.11691116911169, + -37.577609729241956 + ], + [ + -71.12051120511205, + -36.658550407632674 + ], + [ + -70.36450364503645, + -36.005222786746515 + ], + [ + -70.38970389703897, + -35.1690988367005 + ], + [ + -69.81729817298172, + -34.19418508118127 + ], + [ + -69.81369813698137, + -33.27343320096865 + ], + [ + -70.07290072900729, + -33.09063687180879 + ], + [ + -70.53370533705336, + -31.36422709641014 + ], + [ + -69.9180991809918, + -30.336844024187613 + ], + [ + -70.01530015300153, + -29.368700503081698 + ], + [ + -69.65529655296552, + -28.45979653309241 + ], + [ + -69.0000900009, + -27.520426508243148 + ], + [ + -68.29448294482944, + -26.899257500820298 + ], + [ + -68.59328593285933, + -26.50658390484727 + ], + [ + -68.38448384483844, + -26.18499777021419 + ], + [ + -68.41688416884169, + -24.517827545932157 + ], + [ + -67.32967329673296, + -24.025292992362544 + ], + [ + -66.9840698406984, + -22.986062009916687 + ], + [ + -67.10647106471065, + -22.73556333662355 + ], + [ + -66.27486274862748, + -21.831737042444253 + ], + [ + -64.96444964449644, + -22.075465481324066 + ], + [ + -64.37764377643776, + -22.79818800494683 + ], + [ + -63.98523985239852, + -21.99422266836413 + ], + [ + -62.847628476284754, + -22.034844074844095 + ], + [ + -62.685626856268556, + -22.24979901746726 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + }, + "currentYear": 1989, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9299697353382339, + "skewed": 0.010129005356997567, + "clumpy": 0.9297456923304899, + "sparse": 0.9792609095950815, + "striated": 0.26763575754958113, + "convex": 0.4411080148306634, + "skinny": 0.31072520732615505, + "stringy": 0.0846621646089527, + "monotonic": 0.7259087807777282, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + }, + { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -64.1712730546522, + -89.38653704990112 + ], + "drag": [ + -64.1712730546522, + -89.38653704990112 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 77 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Brazil (4 Countries)", + "timestamp": 1522409277659, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 76, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -57.6239762397624, + -30.216672363351037 + ], + [ + -56.291962919629185, + -28.852470129065438 + ], + [ + -55.161551615516146, + -27.88263404935619 + ], + [ + -54.491944919449196, + -27.474727425953184 + ], + [ + -53.649536495364956, + -26.922953321266945 + ], + [ + -53.627936279362785, + -26.12406566049423 + ], + [ + -54.12834128341282, + -25.546903176758022 + ], + [ + -54.62514625146251, + -25.73985485753787 + ], + [ + -54.430744307443064, + -25.162692373801654 + ], + [ + -54.293942939429385, + -24.570296862635452 + ], + [ + -54.293942939429385, + -24.020215316552544 + ], + [ + -54.653946539465394, + -23.83911154599602 + ], + [ + -55.02835028350283, + -24.00159717191589 + ], + [ + -55.399153991539904, + -23.957590648229264 + ], + [ + -55.51795517955179, + -23.571687286669565 + ], + [ + -55.61155611556116, + -22.656013082266945 + ], + [ + -55.798757987579876, + -22.356430209477182 + ], + [ + -56.47196471964719, + -22.08562083294406 + ], + [ + -56.88236882368824, + -22.28195763093057 + ], + [ + -57.93717937179372, + -22.090698508754052 + ], + [ + -57.872378723787236, + -20.733266508881783 + ], + [ + -58.16758167581675, + -20.176414728385552 + ], + [ + -57.85437854378543, + -19.969922578779048 + ], + [ + -57.95157951579516, + -19.399530329456155 + ], + [ + -57.67437674376744, + -18.96115765119316 + ], + [ + -57.4979749797498, + -18.17411790064378 + ], + [ + -57.73557735577356, + -17.55294889322093 + ], + [ + -58.27918279182792, + -17.27198416506782 + ], + [ + -58.387183871838715, + -16.87761801049146 + ], + [ + -58.23958239582396, + -16.298762968151905 + ], + [ + -60.158401584015834, + -16.25814156167195 + ], + [ + -60.54360543605435, + -15.093661242579515 + ], + [ + -60.2520025200252, + -15.076735656546205 + ], + [ + -60.26280262802628, + -14.645133212696535 + ], + [ + -60.460804608046075, + -14.354013132923427 + ], + [ + -60.5040050400504, + -13.775158090583886 + ], + [ + -61.08361083610836, + -13.478960335000778 + ], + [ + -61.71361713617135, + -13.489115686620778 + ], + [ + -62.127621276212764, + -13.19799560684767 + ], + [ + -62.80442804428044, + -12.999966250257827 + ], + [ + -63.196831968319685, + -12.627603357524777 + ], + [ + -64.31644316443165, + -12.461732614398244 + ], + [ + -65.40365403654036, + -11.56636911323561 + ], + [ + -65.32085320853209, + -10.896115906316126 + ], + [ + -65.44325443254432, + -10.511905103359766 + ], + [ + -65.33885338853388, + -9.762101642083678 + ], + [ + -66.64566645666456, + -9.931357502416887 + ], + [ + -67.17487174871748, + -10.307105512356586 + ], + [ + -68.04968049680497, + -10.711627018552946 + ], + [ + -68.27288272882728, + -11.014595008549378 + ], + [ + -68.78768787687876, + -11.036598270392687 + ], + [ + -69.52929529295292, + -10.951970340226083 + ], + [ + -70.09450094500944, + -11.124611317765954 + ], + [ + -70.5481054810548, + -11.009517332739378 + ], + [ + -70.48330483304832, + -9.489599706947232 + ], + [ + -71.3041130411304, + -10.078610100906772 + ], + [ + -72.18612186121861, + -10.053221721856787 + ], + [ + -72.56412564125641, + -9.520065761807203 + ], + [ + -73.22653226532265, + -9.462518769293922 + ], + [ + -73.01413014130141, + -9.03260888404759 + ], + [ + -73.57213572135721, + -8.424980345451388 + ], + [ + -73.98613986139861, + -7.524539168478768 + ], + [ + -73.72333723337233, + -7.341742839318911 + ], + [ + -73.72333723337233, + -6.918603188485903 + ], + [ + -73.11853118531185, + -6.629175667316133 + ], + [ + -73.21933219332193, + -6.089249472853226 + ], + [ + -72.96372963729637, + -5.740582400566822 + ], + [ + -72.89172891728917, + -5.275128784650519 + ], + [ + -71.74691746917469, + -4.5947202261110505 + ], + [ + -70.92970929709297, + -4.401768545331208 + ], + [ + -70.79650796507964, + -4.251130829634661 + ], + [ + -69.89289892898928, + -4.298522470527956 + ], + [ + -69.44289442894429, + -1.5565775331300955 + ], + [ + -69.42129421294213, + -1.123282530677102 + ], + [ + -69.5760957609576, + -0.549505164147547 + ], + [ + -70.01890018900188, + -0.18560506443115798 + ], + [ + -70.01530015300153, + 0.5421951350016059 + ], + [ + -69.45369453694536, + 0.7063733195248005 + ], + [ + -69.2520925209252, + 0.6031272447215485 + ], + [ + -69.21969219692197, + 0.9856454890745852 + ], + [ + -69.80289802898028, + 1.0888915638778371 + ], + [ + -69.81729817298172, + 1.715138247110687 + ], + [ + -67.86967869678696, + 1.6931349852673634 + ], + [ + -67.53847538475384, + 2.036724381743767 + ], + [ + -67.26127261272612, + 1.7202159229206728 + ], + [ + -67.06327063270632, + 1.1295129703578084 + ], + [ + -66.8760687606876, + 1.253069748401046 + ], + [ + -66.32526325263252, + 0.7249914641614623 + ], + [ + -65.54765547655477, + 0.7893086910880669 + ], + [ + -65.35325353253532, + 1.095661798291161 + ], + [ + -64.61164611646116, + 1.3292348855509886 + ], + [ + -64.19764197641976, + 1.4934130700741974 + ], + [ + -64.08244082440824, + 1.916552720907191 + ], + [ + -63.36963369633696, + 2.2009025662669757 + ], + [ + -63.423634236342366, + 2.4107798330801415 + ], + [ + -64.26964269642696, + 2.49710032185007 + ], + [ + -64.410044100441, + 3.1267321222895816 + ], + [ + -64.36684366843669, + 3.7969853292090505 + ], + [ + -64.81684816848168, + 4.0559467955188495 + ], + [ + -64.62964629646297, + 4.149037518702116 + ], + [ + -63.888038880388805, + 4.020403064848878 + ], + [ + -63.09243092430924, + 3.769904391555741 + ], + [ + -62.80442804428044, + 4.006862596022231 + ], + [ + -62.08442084420844, + 4.162577987528778 + ], + [ + -60.96840968409684, + 4.536633438865152 + ], + [ + -60.60120601206012, + 4.917459124614851 + ], + [ + -60.73440734407343, + 5.200116411371297 + ], + [ + -60.21240212402124, + 5.244122935057931 + ], + [ + -59.981999819998194, + 5.013934965004779 + ], + [ + -60.11160111601116, + 4.575562286741786 + ], + [ + -59.76599765997659, + 4.4232320124419005 + ], + [ + -59.53919539195391, + 3.9594709551289355 + ], + [ + -59.81639816398163, + 3.6057262070325464 + ], + [ + -59.97479974799748, + 2.756061788159869 + ], + [ + -59.719197191971915, + 2.2499867657635946 + ], + [ + -59.64719647196472, + 1.7862257084506297 + ], + [ + -59.03159031590316, + 1.3173869753276648 + ], + [ + -58.538385383853836, + 1.2683027758310317 + ], + [ + -58.43038430384303, + 1.46463957381755 + ], + [ + -58.11358113581136, + 1.506953538900845 + ], + [ + -57.659976599766, + 1.6829796336473777 + ], + [ + -57.335973359733586, + 1.9487113343705005 + ], + [ + -56.78156781567816, + 1.864083404203896 + ], + [ + -56.540365403654036, + 1.8996271348738674 + ], + [ + -55.99675996759967, + 1.818384321913939 + ], + [ + -55.90675906759067, + 2.021491354313781 + ], + [ + -56.07236072360723, + 2.2212132695069613 + ], + [ + -55.97155971559715, + 2.5106407906767316 + ], + [ + -55.56835568355683, + 2.4209351847001273 + ], + [ + -55.096750967509664, + 2.5241812595033792 + ], + [ + -54.52434524345243, + 2.3126114340868895 + ], + [ + -54.088740887408875, + 2.1061192844803855 + ], + [ + -53.779137791377906, + 2.376928661013494 + ], + [ + -53.55593555935559, + 2.334614695930199 + ], + [ + -53.41913419134191, + 2.0536499677770905 + ], + [ + -52.94032940329403, + 2.124737429117033 + ], + [ + -52.555125551255514, + 2.503870556263408 + ], + [ + -52.24912249122491, + 3.2418261073161574 + ], + [ + -51.658716587165856, + 4.15580775311544 + ], + [ + -51.31671316713167, + 4.203199394008735 + ], + [ + -51.06831068310683, + 3.6497327307191796 + ], + [ + -50.510305103051024, + 1.9013196934772054 + ], + [ + -49.973899738997375, + 1.7371415089539965 + ], + [ + -49.948699486994855, + 1.046577598794542 + ], + [ + -50.69750697506976, + 0.22230155897185 + ], + [ + -50.38790387903879, + -0.0789738724212441 + ], + [ + -48.62028620286202, + -0.2346892639277911 + ], + [ + -48.584285842858435, + -1.2383765157036777 + ], + [ + -47.82467824678247, + -0.5816637776108564 + ], + [ + -46.56826568265683, + -0.9404862015172455 + ], + [ + -44.905049050490504, + -1.5514998573200955 + ], + [ + -44.419044190441895, + -2.137125134072974 + ], + [ + -44.58104581045811, + -2.6905917973625435 + ], + [ + -43.41823418234182, + -2.3825461315561114 + ], + [ + -41.47421474214741, + -2.912316974399033 + ], + [ + -39.980199801998026, + -2.8733881265224 + ], + [ + -38.50058500585004, + -3.701049283551754 + ], + [ + -37.222572225722246, + -4.82152307895754 + ], + [ + -36.452164521645216, + -5.1092580415239865 + ], + [ + -35.5989559895599, + -5.149879448003958 + ], + [ + -35.235352353523524, + -5.464695348223714 + ], + [ + -34.8969489694897, + -6.737499417929385 + ], + [ + -34.73134731347312, + -7.343435397922235 + ], + [ + -35.127351273512744, + -8.99706515337762 + ], + [ + -35.638556385563845, + -9.64870021566044 + ], + [ + -37.046170461704605, + -11.03998338759935 + ], + [ + -37.683376833768335, + -12.170612534625135 + ], + [ + -38.42498424984248, + -13.03889509813446 + ], + [ + -38.673386733867346, + -13.057513242771108 + ], + [ + -38.9541895418954, + -13.793776235220534 + ], + [ + -38.88218882188821, + -15.66743860910907 + ], + [ + -39.15939159391593, + -17.2076669381412 + ], + [ + -39.267392673926736, + -17.867764793440685 + ], + [ + -39.584195841958405, + -18.262130948017045 + ], + [ + -39.760597605976045, + -19.599252244649335 + ], + [ + -40.775807758077576, + -20.904214927818316 + ], + [ + -40.94500945009449, + -21.936675675850843 + ], + [ + -41.755017550175495, + -22.369970678303837 + ], + [ + -41.989019890198904, + -22.9708289824867 + ], + [ + -43.07623076230763, + -22.967443865280032 + ], + [ + -44.64944649446494, + -23.3516546682364 + ], + [ + -45.35145351453514, + -23.796797580912717 + ], + [ + -46.47106471064711, + -24.089610219289156 + ], + [ + -47.64827648276483, + -24.8851127628552 + ], + [ + -48.49428494284942, + -25.876952104407763 + ], + [ + -48.641886418864175, + -26.623370448477175 + ], + [ + -48.47628476284763, + -27.175144553163413 + ], + [ + -48.659886598865995, + -28.185602039352624 + ], + [ + -48.886688866888676, + -28.674751475715574 + ], + [ + -49.588695886958874, + -29.22483302179848 + ], + [ + -50.69750697506976, + -30.985093969263772 + ], + [ + -51.575915759157596, + -31.777211395623155 + ], + [ + -52.25632256322562, + -32.24605012874612 + ], + [ + -52.71352713527135, + -33.19726806381871 + ], + [ + -53.372333723337235, + -33.7676603131416 + ], + [ + -53.649536495364956, + -33.202345739628704 + ], + [ + -53.21033210332102, + -32.72842933069574 + ], + [ + -53.786337863378634, + -32.04802077215627 + ], + [ + -54.571145711457106, + -31.49455410886671 + ], + [ + -55.600756007560065, + -30.853074398203873 + ], + [ + -55.97155971559715, + -30.88354045306385 + ], + [ + -56.97596975969759, + -30.110041171341123 + ], + [ + -57.6239762397624, + -30.216672363351037 + ] + ] + ] + }, + "countryRef": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + "currentYear": 1989, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.3719523791728072, + "skewed": 0.4935538758830753, + "clumpy": 0.9850946265855351, + "sparse": 0.7764801797617538, + "striated": 0.4866462561609377, + "convex": 0.23136573776167535, + "skinny": 0.9171864220657253, + "stringy": 0.8087254371108792, + "monotonic": 0.24783700370486206, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + }, + { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + }, + { + "country": "Malaysia", + "count": 216, + "this": { + "country": "Malaysia", + "year": 2009, + "map_id": 458, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 19320, + "child_mortality": 3466, + "fertility": 2.02, + "life_expect": 74.3, + "population": 7204671 + }, + "x": 19320, + "y": 74.3, + "size": 7204671, + "color": "Asia", + "map_id": 458 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -48.12845479098915, + -88.91525571687681 + ], + "drag": [ + -48.12845479098915, + -88.91525571687681 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 78 + }, + { + "attrs": { + "name": "Selected Brazil (4 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1989\",\"payload\":{\"numVal\":1989},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.37\",\"payload\":{\"numVal\":0.3719523791728072},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.49\",\"payload\":{\"numVal\":0.4935538758830753},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.99\",\"payload\":{\"numVal\":0.9850946265855351},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.78\",\"payload\":{\"numVal\":0.7764801797617538},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.49\",\"payload\":{\"numVal\":0.4866462561609377},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.23\",\"payload\":{\"numVal\":0.23136573776167535},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.92\",\"payload\":{\"numVal\":0.9171864220657253},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.81\",\"payload\":{\"numVal\":0.8087254371108792},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.25\",\"payload\":{\"numVal\":0.24783700370486206},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Argentina\",\"text\":\"Argentina\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Malaysia\",\"text\":\"Malaysia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 79 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Brazil (4 Countries)", + "timestamp": 1522409277659, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 458, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 102.14202142021423, + 6.222421807783832 + ], + [ + 102.37242372423725, + 6.1276385259972415 + ], + [ + 102.96282962829628, + 5.525087663211039 + ], + [ + 103.38043380433805, + 4.85483445629157 + ], + [ + 103.43803438034382, + 4.181196132165425 + ], + [ + 103.33363333633338, + 3.725897867869108 + ], + [ + 103.4308343083431, + 3.3823084713927187 + ], + [ + 103.50283502835032, + 2.79160551882984 + ], + [ + 103.8556385563856, + 2.5157184664867316 + ], + [ + 104.24804248042483, + 1.6305103169440827 + ], + [ + 104.23004230042301, + 1.2936911548810173 + ], + [ + 103.52083520835208, + 1.2259888107477366 + ], + [ + 102.57402574025741, + 1.967329479007148 + ], + [ + 101.389613896139, + 2.7611394639698688 + ], + [ + 101.27441274412746, + 3.270599603572805 + ], + [ + 100.69480694806947, + 3.93916025188895 + ], + [ + 100.5580055800558, + 4.766821408918304 + ], + [ + 100.1980019800198, + 5.311825279191211 + ], + [ + 100.3060030600306, + 6.041318037227299 + ], + [ + 100.08640086400862, + 6.464457688060307 + ], + [ + 100.25920259202593, + 6.642176341410163 + ], + [ + 101.07641076410766, + 6.205496221750508 + ], + [ + 101.15561155611556, + 5.690958406337572 + ], + [ + 101.81441814418145, + 5.8111300671741475 + ], + [ + 102.14202142021423, + 6.222421807783832 + ] + ] + ], + [ + [ + [ + 117.88137881378816, + 4.137189608478792 + ], + [ + 117.01377013770139, + 4.306445468811987 + ], + [ + 115.86535865358655, + 4.306445468811987 + ], + [ + 115.519755197552, + 3.1690460873728767 + ], + [ + 115.13455134551344, + 2.8220715736898256 + ], + [ + 114.619746197462, + 1.4307884017509025 + ], + [ + 113.80613806138064, + 1.2175260177310747 + ], + [ + 112.85932859328597, + 1.4984907458841832 + ], + [ + 112.38052380523806, + 1.4104776985109169 + ], + [ + 111.79731797317976, + 0.9044026761146569 + ], + [ + 111.160111601116, + 0.9771826960579233 + ], + [ + 110.51570515705157, + 0.7723831050547574 + ], + [ + 109.83169831698319, + 1.3376976785676504 + ], + [ + 109.66249662496625, + 2.0062583268837955 + ], + [ + 110.39690396903973, + 1.66436148901073 + ], + [ + 111.16731167311673, + 1.8505429353772485 + ], + [ + 111.36891368913689, + 2.69682223704325 + ], + [ + 111.79731797317976, + 2.88638880061643 + ], + [ + 112.99612996129963, + 3.103036301842934 + ], + [ + 113.71253712537128, + 3.8934611695989787 + ], + [ + 114.2057420574206, + 4.526478087245152 + ], + [ + 114.65934659346595, + 4.006862596022231 + ], + [ + 114.86814868148684, + 4.348759433895296 + ], + [ + 115.3469534695347, + 4.316600820431987 + ], + [ + 115.40455404554046, + 4.95469541388816 + ], + [ + 115.45135451354514, + 5.447229967457773 + ], + [ + 116.2217622176222, + 6.142871553427227 + ], + [ + 116.7257672576726, + 6.92483362816661 + ], + [ + 117.12897128971292, + 6.928218745373272 + ], + [ + 117.64377643776442, + 6.422143722977012 + ], + [ + 117.69057690576909, + 5.98715616192068 + ], + [ + 118.34938349383492, + 5.7078839923708955 + ], + [ + 119.18099180991811, + 5.408301119581125 + ], + [ + 119.10899108991089, + 5.015627523608103 + ], + [ + 118.43938439384397, + 4.966543324111484 + ], + [ + 118.61938619386194, + 4.477393887748519 + ], + [ + 117.88137881378816, + 4.137189608478792 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Malaysia", + "count": 216, + "this": { + "country": "Malaysia", + "year": 2009, + "map_id": 458, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 19320, + "child_mortality": 3466, + "fertility": 2.02, + "life_expect": 74.3, + "population": 7204671 + }, + "x": 19320, + "y": 74.3, + "size": 7204671, + "color": "Asia", + "map_id": 458 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Malaysia", + "count": 216, + "this": { + "country": "Malaysia", + "year": 2009, + "map_id": 458, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 19320, + "child_mortality": 3466, + "fertility": 2.02, + "life_expect": 74.3, + "population": 7204671 + }, + "x": 19320, + "y": 74.3, + "size": 7204671, + "color": "Asia", + "map_id": 458 + }, + "currentYear": 1989, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.1519885266892691, + "skewed": 0.53892591415838, + "clumpy": 0.715158225578876, + "sparse": 0.6312490829954263, + "striated": 0.9371980875847539, + "convex": 0.9854252104118579, + "skinny": 0.4664723038120062, + "stringy": 0.7759338781267175, + "monotonic": 0.4110016244117667, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + }, + { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + }, + { + "country": "Malaysia", + "count": 216, + "this": { + "country": "Malaysia", + "year": 2009, + "map_id": 458, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 19320, + "child_mortality": 3466, + "fertility": 2.02, + "life_expect": 74.3, + "population": 7204671 + }, + "x": 19320, + "y": 74.3, + "size": 7204671, + "color": "Asia", + "map_id": 458 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 102.55944532841735, + -88.68829152390464 + ], + "drag": [ + 102.55944532841735, + -88.68829152390464 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 80 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1998", + "timestamp": 1522409285441, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + "currentYear": 1998, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.07551534632842549, + "skewed": 0.5764662354246226, + "clumpy": 0.5399605536318139, + "sparse": 0.8826668851786454, + "striated": 0.46121026584817804, + "convex": 0.8181016448904137, + "skinny": 0.48080647053031567, + "stringy": 0.35141105753977775, + "monotonic": 0.7445768839749161, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + }, + { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + }, + { + "country": "Malaysia", + "count": 216, + "this": { + "country": "Malaysia", + "year": 2009, + "map_id": 458, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 19320, + "child_mortality": 3466, + "fertility": 2.02, + "life_expect": 74.3, + "population": 7204671 + }, + "x": 19320, + "y": 74.3, + "size": 7204671, + "color": "Asia", + "map_id": 458 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -48.12845479098915, + -88.91525571687681 + ], + "drag": [ + -48.12845479098915, + -88.91525571687681 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 81 + }, + { + "attrs": { + "name": "Selected Year 1998", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1998\",\"payload\":{\"numVal\":1998},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.08\",\"payload\":{\"numVal\":0.07551534632842549},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.58\",\"payload\":{\"numVal\":0.5764662354246226},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.54\",\"payload\":{\"numVal\":0.5399605536318139},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.88\",\"payload\":{\"numVal\":0.8826668851786454},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.46\",\"payload\":{\"numVal\":0.46121026584817804},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.82\",\"payload\":{\"numVal\":0.8181016448904137},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.48\",\"payload\":{\"numVal\":0.48080647053031567},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.35\",\"payload\":{\"numVal\":0.35141105753977775},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.74\",\"payload\":{\"numVal\":0.7445768839749161},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Argentina\",\"text\":\"Argentina\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Malaysia\",\"text\":\"Malaysia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 82 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1998", + "timestamp": 1522409285442, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 76, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -57.6239762397624, + -30.216672363351037 + ], + [ + -56.291962919629185, + -28.852470129065438 + ], + [ + -55.161551615516146, + -27.88263404935619 + ], + [ + -54.491944919449196, + -27.474727425953184 + ], + [ + -53.649536495364956, + -26.922953321266945 + ], + [ + -53.627936279362785, + -26.12406566049423 + ], + [ + -54.12834128341282, + -25.546903176758022 + ], + [ + -54.62514625146251, + -25.73985485753787 + ], + [ + -54.430744307443064, + -25.162692373801654 + ], + [ + -54.293942939429385, + -24.570296862635452 + ], + [ + -54.293942939429385, + -24.020215316552544 + ], + [ + -54.653946539465394, + -23.83911154599602 + ], + [ + -55.02835028350283, + -24.00159717191589 + ], + [ + -55.399153991539904, + -23.957590648229264 + ], + [ + -55.51795517955179, + -23.571687286669565 + ], + [ + -55.61155611556116, + -22.656013082266945 + ], + [ + -55.798757987579876, + -22.356430209477182 + ], + [ + -56.47196471964719, + -22.08562083294406 + ], + [ + -56.88236882368824, + -22.28195763093057 + ], + [ + -57.93717937179372, + -22.090698508754052 + ], + [ + -57.872378723787236, + -20.733266508881783 + ], + [ + -58.16758167581675, + -20.176414728385552 + ], + [ + -57.85437854378543, + -19.969922578779048 + ], + [ + -57.95157951579516, + -19.399530329456155 + ], + [ + -57.67437674376744, + -18.96115765119316 + ], + [ + -57.4979749797498, + -18.17411790064378 + ], + [ + -57.73557735577356, + -17.55294889322093 + ], + [ + -58.27918279182792, + -17.27198416506782 + ], + [ + -58.387183871838715, + -16.87761801049146 + ], + [ + -58.23958239582396, + -16.298762968151905 + ], + [ + -60.158401584015834, + -16.25814156167195 + ], + [ + -60.54360543605435, + -15.093661242579515 + ], + [ + -60.2520025200252, + -15.076735656546205 + ], + [ + -60.26280262802628, + -14.645133212696535 + ], + [ + -60.460804608046075, + -14.354013132923427 + ], + [ + -60.5040050400504, + -13.775158090583886 + ], + [ + -61.08361083610836, + -13.478960335000778 + ], + [ + -61.71361713617135, + -13.489115686620778 + ], + [ + -62.127621276212764, + -13.19799560684767 + ], + [ + -62.80442804428044, + -12.999966250257827 + ], + [ + -63.196831968319685, + -12.627603357524777 + ], + [ + -64.31644316443165, + -12.461732614398244 + ], + [ + -65.40365403654036, + -11.56636911323561 + ], + [ + -65.32085320853209, + -10.896115906316126 + ], + [ + -65.44325443254432, + -10.511905103359766 + ], + [ + -65.33885338853388, + -9.762101642083678 + ], + [ + -66.64566645666456, + -9.931357502416887 + ], + [ + -67.17487174871748, + -10.307105512356586 + ], + [ + -68.04968049680497, + -10.711627018552946 + ], + [ + -68.27288272882728, + -11.014595008549378 + ], + [ + -68.78768787687876, + -11.036598270392687 + ], + [ + -69.52929529295292, + -10.951970340226083 + ], + [ + -70.09450094500944, + -11.124611317765954 + ], + [ + -70.5481054810548, + -11.009517332739378 + ], + [ + -70.48330483304832, + -9.489599706947232 + ], + [ + -71.3041130411304, + -10.078610100906772 + ], + [ + -72.18612186121861, + -10.053221721856787 + ], + [ + -72.56412564125641, + -9.520065761807203 + ], + [ + -73.22653226532265, + -9.462518769293922 + ], + [ + -73.01413014130141, + -9.03260888404759 + ], + [ + -73.57213572135721, + -8.424980345451388 + ], + [ + -73.98613986139861, + -7.524539168478768 + ], + [ + -73.72333723337233, + -7.341742839318911 + ], + [ + -73.72333723337233, + -6.918603188485903 + ], + [ + -73.11853118531185, + -6.629175667316133 + ], + [ + -73.21933219332193, + -6.089249472853226 + ], + [ + -72.96372963729637, + -5.740582400566822 + ], + [ + -72.89172891728917, + -5.275128784650519 + ], + [ + -71.74691746917469, + -4.5947202261110505 + ], + [ + -70.92970929709297, + -4.401768545331208 + ], + [ + -70.79650796507964, + -4.251130829634661 + ], + [ + -69.89289892898928, + -4.298522470527956 + ], + [ + -69.44289442894429, + -1.5565775331300955 + ], + [ + -69.42129421294213, + -1.123282530677102 + ], + [ + -69.5760957609576, + -0.549505164147547 + ], + [ + -70.01890018900188, + -0.18560506443115798 + ], + [ + -70.01530015300153, + 0.5421951350016059 + ], + [ + -69.45369453694536, + 0.7063733195248005 + ], + [ + -69.2520925209252, + 0.6031272447215485 + ], + [ + -69.21969219692197, + 0.9856454890745852 + ], + [ + -69.80289802898028, + 1.0888915638778371 + ], + [ + -69.81729817298172, + 1.715138247110687 + ], + [ + -67.86967869678696, + 1.6931349852673634 + ], + [ + -67.53847538475384, + 2.036724381743767 + ], + [ + -67.26127261272612, + 1.7202159229206728 + ], + [ + -67.06327063270632, + 1.1295129703578084 + ], + [ + -66.8760687606876, + 1.253069748401046 + ], + [ + -66.32526325263252, + 0.7249914641614623 + ], + [ + -65.54765547655477, + 0.7893086910880669 + ], + [ + -65.35325353253532, + 1.095661798291161 + ], + [ + -64.61164611646116, + 1.3292348855509886 + ], + [ + -64.19764197641976, + 1.4934130700741974 + ], + [ + -64.08244082440824, + 1.916552720907191 + ], + [ + -63.36963369633696, + 2.2009025662669757 + ], + [ + -63.423634236342366, + 2.4107798330801415 + ], + [ + -64.26964269642696, + 2.49710032185007 + ], + [ + -64.410044100441, + 3.1267321222895816 + ], + [ + -64.36684366843669, + 3.7969853292090505 + ], + [ + -64.81684816848168, + 4.0559467955188495 + ], + [ + -64.62964629646297, + 4.149037518702116 + ], + [ + -63.888038880388805, + 4.020403064848878 + ], + [ + -63.09243092430924, + 3.769904391555741 + ], + [ + -62.80442804428044, + 4.006862596022231 + ], + [ + -62.08442084420844, + 4.162577987528778 + ], + [ + -60.96840968409684, + 4.536633438865152 + ], + [ + -60.60120601206012, + 4.917459124614851 + ], + [ + -60.73440734407343, + 5.200116411371297 + ], + [ + -60.21240212402124, + 5.244122935057931 + ], + [ + -59.981999819998194, + 5.013934965004779 + ], + [ + -60.11160111601116, + 4.575562286741786 + ], + [ + -59.76599765997659, + 4.4232320124419005 + ], + [ + -59.53919539195391, + 3.9594709551289355 + ], + [ + -59.81639816398163, + 3.6057262070325464 + ], + [ + -59.97479974799748, + 2.756061788159869 + ], + [ + -59.719197191971915, + 2.2499867657635946 + ], + [ + -59.64719647196472, + 1.7862257084506297 + ], + [ + -59.03159031590316, + 1.3173869753276648 + ], + [ + -58.538385383853836, + 1.2683027758310317 + ], + [ + -58.43038430384303, + 1.46463957381755 + ], + [ + -58.11358113581136, + 1.506953538900845 + ], + [ + -57.659976599766, + 1.6829796336473777 + ], + [ + -57.335973359733586, + 1.9487113343705005 + ], + [ + -56.78156781567816, + 1.864083404203896 + ], + [ + -56.540365403654036, + 1.8996271348738674 + ], + [ + -55.99675996759967, + 1.818384321913939 + ], + [ + -55.90675906759067, + 2.021491354313781 + ], + [ + -56.07236072360723, + 2.2212132695069613 + ], + [ + -55.97155971559715, + 2.5106407906767316 + ], + [ + -55.56835568355683, + 2.4209351847001273 + ], + [ + -55.096750967509664, + 2.5241812595033792 + ], + [ + -54.52434524345243, + 2.3126114340868895 + ], + [ + -54.088740887408875, + 2.1061192844803855 + ], + [ + -53.779137791377906, + 2.376928661013494 + ], + [ + -53.55593555935559, + 2.334614695930199 + ], + [ + -53.41913419134191, + 2.0536499677770905 + ], + [ + -52.94032940329403, + 2.124737429117033 + ], + [ + -52.555125551255514, + 2.503870556263408 + ], + [ + -52.24912249122491, + 3.2418261073161574 + ], + [ + -51.658716587165856, + 4.15580775311544 + ], + [ + -51.31671316713167, + 4.203199394008735 + ], + [ + -51.06831068310683, + 3.6497327307191796 + ], + [ + -50.510305103051024, + 1.9013196934772054 + ], + [ + -49.973899738997375, + 1.7371415089539965 + ], + [ + -49.948699486994855, + 1.046577598794542 + ], + [ + -50.69750697506976, + 0.22230155897185 + ], + [ + -50.38790387903879, + -0.0789738724212441 + ], + [ + -48.62028620286202, + -0.2346892639277911 + ], + [ + -48.584285842858435, + -1.2383765157036777 + ], + [ + -47.82467824678247, + -0.5816637776108564 + ], + [ + -46.56826568265683, + -0.9404862015172455 + ], + [ + -44.905049050490504, + -1.5514998573200955 + ], + [ + -44.419044190441895, + -2.137125134072974 + ], + [ + -44.58104581045811, + -2.6905917973625435 + ], + [ + -43.41823418234182, + -2.3825461315561114 + ], + [ + -41.47421474214741, + -2.912316974399033 + ], + [ + -39.980199801998026, + -2.8733881265224 + ], + [ + -38.50058500585004, + -3.701049283551754 + ], + [ + -37.222572225722246, + -4.82152307895754 + ], + [ + -36.452164521645216, + -5.1092580415239865 + ], + [ + -35.5989559895599, + -5.149879448003958 + ], + [ + -35.235352353523524, + -5.464695348223714 + ], + [ + -34.8969489694897, + -6.737499417929385 + ], + [ + -34.73134731347312, + -7.343435397922235 + ], + [ + -35.127351273512744, + -8.99706515337762 + ], + [ + -35.638556385563845, + -9.64870021566044 + ], + [ + -37.046170461704605, + -11.03998338759935 + ], + [ + -37.683376833768335, + -12.170612534625135 + ], + [ + -38.42498424984248, + -13.03889509813446 + ], + [ + -38.673386733867346, + -13.057513242771108 + ], + [ + -38.9541895418954, + -13.793776235220534 + ], + [ + -38.88218882188821, + -15.66743860910907 + ], + [ + -39.15939159391593, + -17.2076669381412 + ], + [ + -39.267392673926736, + -17.867764793440685 + ], + [ + -39.584195841958405, + -18.262130948017045 + ], + [ + -39.760597605976045, + -19.599252244649335 + ], + [ + -40.775807758077576, + -20.904214927818316 + ], + [ + -40.94500945009449, + -21.936675675850843 + ], + [ + -41.755017550175495, + -22.369970678303837 + ], + [ + -41.989019890198904, + -22.9708289824867 + ], + [ + -43.07623076230763, + -22.967443865280032 + ], + [ + -44.64944649446494, + -23.3516546682364 + ], + [ + -45.35145351453514, + -23.796797580912717 + ], + [ + -46.47106471064711, + -24.089610219289156 + ], + [ + -47.64827648276483, + -24.8851127628552 + ], + [ + -48.49428494284942, + -25.876952104407763 + ], + [ + -48.641886418864175, + -26.623370448477175 + ], + [ + -48.47628476284763, + -27.175144553163413 + ], + [ + -48.659886598865995, + -28.185602039352624 + ], + [ + -48.886688866888676, + -28.674751475715574 + ], + [ + -49.588695886958874, + -29.22483302179848 + ], + [ + -50.69750697506976, + -30.985093969263772 + ], + [ + -51.575915759157596, + -31.777211395623155 + ], + [ + -52.25632256322562, + -32.24605012874612 + ], + [ + -52.71352713527135, + -33.19726806381871 + ], + [ + -53.372333723337235, + -33.7676603131416 + ], + [ + -53.649536495364956, + -33.202345739628704 + ], + [ + -53.21033210332102, + -32.72842933069574 + ], + [ + -53.786337863378634, + -32.04802077215627 + ], + [ + -54.571145711457106, + -31.49455410886671 + ], + [ + -55.600756007560065, + -30.853074398203873 + ], + [ + -55.97155971559715, + -30.88354045306385 + ], + [ + -56.97596975969759, + -30.110041171341123 + ], + [ + -57.6239762397624, + -30.216672363351037 + ] + ] + ] + }, + "countryRef": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + "currentYear": 1989, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.3719523791728072, + "skewed": 0.4935538758830753, + "clumpy": 0.9850946265855351, + "sparse": 0.7764801797617538, + "striated": 0.4866462561609377, + "convex": 0.23136573776167535, + "skinny": 0.9171864220657253, + "stringy": 0.8087254371108792, + "monotonic": 0.24783700370486206, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + }, + { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + }, + { + "country": "Malaysia", + "count": 216, + "this": { + "country": "Malaysia", + "year": 2009, + "map_id": 458, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 19320, + "child_mortality": 3466, + "fertility": 2.02, + "life_expect": 74.3, + "population": 7204671 + }, + "x": 19320, + "y": 74.3, + "size": 7204671, + "color": "Asia", + "map_id": 458 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -48.12845479098915, + -88.91525571687681 + ], + "drag": [ + -48.12845479098915, + -88.91525571687681 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 83 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409291034, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + "currentYear": 1998, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.2967660887090309, + "skewed": 0.9697930106383859, + "clumpy": 0.6788459081777667, + "sparse": 0.4873585178790767, + "striated": 0.2620341449901067, + "convex": 0.9384312311482048, + "skinny": 0.17634184750183168, + "stringy": 0.9372700764265902, + "monotonic": 0.8581182813169024, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 56.14986392282068, + -89.47723998969306 + ], + "drag": [ + 56.14986392282068, + -89.47723998969306 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 84 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1998\",\"payload\":{\"numVal\":1998},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.3\",\"payload\":{\"numVal\":0.2967660887090309},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.97\",\"payload\":{\"numVal\":0.9697930106383859},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.68\",\"payload\":{\"numVal\":0.6788459081777667},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.49\",\"payload\":{\"numVal\":0.4873585178790767},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.26\",\"payload\":{\"numVal\":0.2620341449901067},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.94\",\"payload\":{\"numVal\":0.9384312311482048},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.18\",\"payload\":{\"numVal\":0.17634184750183168},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.94\",\"payload\":{\"numVal\":0.9372700764265902},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.86\",\"payload\":{\"numVal\":0.8581182813169024},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 85 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409291034, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + "currentYear": 1998, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.07551534632842549, + "skewed": 0.5764662354246226, + "clumpy": 0.5399605536318139, + "sparse": 0.8826668851786454, + "striated": 0.46121026584817804, + "convex": 0.8181016448904137, + "skinny": 0.48080647053031567, + "stringy": 0.35141105753977775, + "monotonic": 0.7445768839749161, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 2009, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 14893, + "child_mortality": 40965, + "fertility": 2.31, + "life_expect": 75.5, + "population": 33543705 + }, + "x": 14893, + "y": 75.5, + "size": 33543705, + "color": "America", + "map_id": 484 + }, + { + "country": "Argentina", + "count": 216, + "this": { + "country": "Argentina", + "year": 2009, + "map_id": 32, + "continent": "America", + "main_religion": "Christian", + "gdp": 14605, + "child_mortality": 11017, + "fertility": 2.23, + "life_expect": 75.6, + "population": 19240008 + }, + "x": 14605, + "y": 75.6, + "size": 19240008, + "color": "America", + "map_id": 32 + }, + { + "country": "Malaysia", + "count": 216, + "this": { + "country": "Malaysia", + "year": 2009, + "map_id": 458, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 19320, + "child_mortality": 3466, + "fertility": 2.02, + "life_expect": 74.3, + "population": 7204671 + }, + "x": 19320, + "y": 74.3, + "size": 7204671, + "color": "Asia", + "map_id": 458 + }, + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -48.12845479098915, + -88.91525571687681 + ], + "drag": [ + -48.12845479098915, + -88.91525571687681 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 86 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2001", + "timestamp": 1522409294346, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + "currentYear": 2001, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.10861958910924718, + "skewed": 0.5225698727712644, + "clumpy": 0.8702678727138775, + "sparse": 0.9146208787328651, + "striated": 0.07214716171805757, + "convex": 0.4557132594208211, + "skinny": 0.20640539687769155, + "stringy": 0.19592988215857687, + "monotonic": 0.6360927124197246, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 56.14986392282068, + -89.47723998969306 + ], + "drag": [ + 56.14986392282068, + -89.47723998969306 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 87 + }, + { + "attrs": { + "name": "Selected Year 2001", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2001\",\"payload\":{\"numVal\":2001},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.11\",\"payload\":{\"numVal\":0.10861958910924718},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.52\",\"payload\":{\"numVal\":0.5225698727712644},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.87\",\"payload\":{\"numVal\":0.8702678727138775},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.91\",\"payload\":{\"numVal\":0.9146208787328651},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.07\",\"payload\":{\"numVal\":0.07214716171805757},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.46\",\"payload\":{\"numVal\":0.4557132594208211},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.21\",\"payload\":{\"numVal\":0.20640539687769155},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.2\",\"payload\":{\"numVal\":0.19592988215857687},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.64\",\"payload\":{\"numVal\":0.6360927124197246},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 88 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2001", + "timestamp": 1522409294346, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + "currentYear": 1998, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.2967660887090309, + "skewed": 0.9697930106383859, + "clumpy": 0.6788459081777667, + "sparse": 0.4873585178790767, + "striated": 0.2620341449901067, + "convex": 0.9384312311482048, + "skinny": 0.17634184750183168, + "stringy": 0.9372700764265902, + "monotonic": 0.8581182813169024, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 56.14986392282068, + -89.47723998969306 + ], + "drag": [ + 56.14986392282068, + -89.47723998969306 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 89 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Ghana (1 Countries)", + "timestamp": 1522409313789, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 288, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0602106021060251, + 5.929609169407385 + ], + [ + -0.5094050940509476, + 5.343983892654521 + ], + [ + -1.0638106381063608, + 5.000394496178117 + ], + [ + -1.9638196381963837, + 4.710966975008347 + ], + [ + -2.85662856628565, + 4.995316820368117 + ], + [ + -2.809828098280974, + 5.389682974944478 + ], + [ + -3.2454324543245434, + 6.251195304040479 + ], + [ + -2.9826298262982505, + 7.380131892462927 + ], + [ + -2.5614256142561374, + 8.219640959715605 + ], + [ + -2.827828278282766, + 9.643082745117823 + ], + [ + -2.9646296462964585, + 10.394578764997235 + ], + [ + -2.9394293942939385, + 10.96327845571679 + ], + [ + -1.2042120421204174, + 11.00897753800676 + ], + [ + -0.7614076140761483, + 10.93619751806348 + ], + [ + -0.437404374043723, + 11.09868314398335 + ], + [ + 0.02340023400233804, + 11.019132889626746 + ], + [ + -0.04860048600485811, + 10.707702106613652 + ], + [ + 0.36900369003691935, + 10.191471732597392 + ], + [ + 0.3654036540365553, + 9.465364091767967 + ], + [ + 0.4626046260462715, + 8.676631782615246 + ], + [ + 0.7110071100711082, + 8.312731682898857 + ], + [ + 0.49140491404915565, + 7.4122905059262365 + ], + [ + 0.5706057060570799, + 6.914678276546624 + ], + [ + 0.8370083700837085, + 6.279968800297112 + ], + [ + 1.0602106021060251, + 5.929609169407385 + ] + ] + ] + }, + "countryRef": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2001, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6170393389440818, + "skewed": 0.4587286608434924, + "clumpy": 0.8681942860820282, + "sparse": 0.564760857799814, + "striated": 0.4054453531279567, + "convex": 0.3291690900539188, + "skinny": 0.2593418540721606, + "stringy": 0.5457315758561327, + "monotonic": 0.978692690901571, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.7188733853924696, + -88.62104512625066 + ], + "drag": [ + -1.7188733853924696, + -88.62104512625066 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 90 + }, + { + "attrs": { + "name": "Selected Ghana (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2001\",\"payload\":{\"numVal\":2001},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.62\",\"payload\":{\"numVal\":0.6170393389440818},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.46\",\"payload\":{\"numVal\":0.4587286608434924},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.87\",\"payload\":{\"numVal\":0.8681942860820282},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.56\",\"payload\":{\"numVal\":0.564760857799814},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.41\",\"payload\":{\"numVal\":0.4054453531279567},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.33\",\"payload\":{\"numVal\":0.3291690900539188},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.26\",\"payload\":{\"numVal\":0.2593418540721606},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.55\",\"payload\":{\"numVal\":0.5457315758561327},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.98\",\"payload\":{\"numVal\":0.978692690901571},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Ghana\",\"text\":\"Ghana\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 91 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Ghana (1 Countries)", + "timestamp": 1522409313789, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2009, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 13749, + "child_mortality": 50456, + "fertility": 1.86, + "life_expect": 74, + "population": 64321785 + }, + "x": 13749, + "y": 74, + "size": 64321785, + "color": "America", + "map_id": 76 + }, + "currentYear": 2001, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.10861958910924718, + "skewed": 0.5225698727712644, + "clumpy": 0.8702678727138775, + "sparse": 0.9146208787328651, + "striated": 0.07214716171805757, + "convex": 0.4557132594208211, + "skinny": 0.20640539687769155, + "stringy": 0.19592988215857687, + "monotonic": 0.6360927124197246, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 56.14986392282068, + -89.47723998969306 + ], + "drag": [ + 56.14986392282068, + -89.47723998969306 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 92 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2006", + "timestamp": 1522409318130, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2006, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8054734721881944, + "skewed": 0.8616743928194821, + "clumpy": 0.8896415712750758, + "sparse": 0.811559640025024, + "striated": 0.8709639127958204, + "convex": 0.5278651564354524, + "skinny": 0.35443090172313885, + "stringy": 0.286045089810002, + "monotonic": 0.5476261967598886, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.7188733853924696, + -88.62104512625066 + ], + "drag": [ + -1.7188733853924696, + -88.62104512625066 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 93 + }, + { + "attrs": { + "name": "Selected Year 2006", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2006\",\"payload\":{\"numVal\":2006},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.81\",\"payload\":{\"numVal\":0.8054734721881944},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.86\",\"payload\":{\"numVal\":0.8616743928194821},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.89\",\"payload\":{\"numVal\":0.8896415712750758},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.81\",\"payload\":{\"numVal\":0.811559640025024},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.87\",\"payload\":{\"numVal\":0.8709639127958204},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.53\",\"payload\":{\"numVal\":0.5278651564354524},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.35\",\"payload\":{\"numVal\":0.35443090172313885},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.29\",\"payload\":{\"numVal\":0.286045089810002},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.55\",\"payload\":{\"numVal\":0.5476261967598886},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Ghana\",\"text\":\"Ghana\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 94 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2006", + "timestamp": 1522409318130, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 288, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0602106021060251, + 5.929609169407385 + ], + [ + -0.5094050940509476, + 5.343983892654521 + ], + [ + -1.0638106381063608, + 5.000394496178117 + ], + [ + -1.9638196381963837, + 4.710966975008347 + ], + [ + -2.85662856628565, + 4.995316820368117 + ], + [ + -2.809828098280974, + 5.389682974944478 + ], + [ + -3.2454324543245434, + 6.251195304040479 + ], + [ + -2.9826298262982505, + 7.380131892462927 + ], + [ + -2.5614256142561374, + 8.219640959715605 + ], + [ + -2.827828278282766, + 9.643082745117823 + ], + [ + -2.9646296462964585, + 10.394578764997235 + ], + [ + -2.9394293942939385, + 10.96327845571679 + ], + [ + -1.2042120421204174, + 11.00897753800676 + ], + [ + -0.7614076140761483, + 10.93619751806348 + ], + [ + -0.437404374043723, + 11.09868314398335 + ], + [ + 0.02340023400233804, + 11.019132889626746 + ], + [ + -0.04860048600485811, + 10.707702106613652 + ], + [ + 0.36900369003691935, + 10.191471732597392 + ], + [ + 0.3654036540365553, + 9.465364091767967 + ], + [ + 0.4626046260462715, + 8.676631782615246 + ], + [ + 0.7110071100711082, + 8.312731682898857 + ], + [ + 0.49140491404915565, + 7.4122905059262365 + ], + [ + 0.5706057060570799, + 6.914678276546624 + ], + [ + 0.8370083700837085, + 6.279968800297112 + ], + [ + 1.0602106021060251, + 5.929609169407385 + ] + ] + ] + }, + "countryRef": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2001, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6170393389440818, + "skewed": 0.4587286608434924, + "clumpy": 0.8681942860820282, + "sparse": 0.564760857799814, + "striated": 0.4054453531279567, + "convex": 0.3291690900539188, + "skinny": 0.2593418540721606, + "stringy": 0.5457315758561327, + "monotonic": 0.978692690901571, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.7188733853924696, + -88.62104512625066 + ], + "drag": [ + -1.7188733853924696, + -88.62104512625066 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 95 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Congo, Dem. Rep. (2 Countries)", + "timestamp": 1522409376132, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 180, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 30.832508325083268, + 3.5092503666426182 + ], + [ + 30.7749077490775, + 2.339692371740199 + ], + [ + 31.174511745117456, + 2.2042876834736376 + ], + [ + 30.854108541085424, + 1.8488503767739104 + ], + [ + 30.468904689046894, + 1.5831186760507876 + ], + [ + 30.08730087300873, + 1.0618106262245277 + ], + [ + 29.874898748987505, + 0.5980495689115628 + ], + [ + 29.8208982089821, + -0.2059157676711436 + ], + [ + 29.586895868958692, + -0.5867414534208564 + ], + [ + 29.579695796957964, + -1.3416225905069297 + ], + [ + 29.29169291692918, + -1.6208947600567143 + ], + [ + 29.255692556925567, + -2.2149828298262406 + ], + [ + 29.118891188911903, + -2.2928405255795212 + ], + [ + 29.02529025290255, + -2.8395369544557525 + ], + [ + 29.277292772927723, + -3.2931426601487317 + ], + [ + 29.338493384933855, + -4.49993694432446 + ], + [ + 29.51849518495186, + -5.420688824537081 + ], + [ + 29.421294212942144, + -5.940304315760002 + ], + [ + 29.61929619296194, + -6.520851916702881 + ], + [ + 30.1989019890199, + -7.07939625580245 + ], + [ + 30.738907389073887, + -8.340352415284798 + ], + [ + 30.346503465034658, + -8.23879889908487 + ], + [ + 29.003690036900366, + -8.40636220081474 + ], + [ + 28.733687336873373, + -8.526533861651316 + ], + [ + 28.449284492844924, + -9.16462845510749 + ], + [ + 28.67248672486727, + -9.606386250577145 + ], + [ + 28.49608496084963, + -10.789484714306212 + ], + [ + 28.373683736837364, + -11.793171966082099 + ], + [ + 28.643686436864385, + -11.970890619431955 + ], + [ + 29.34209342093422, + -12.360179098198316 + ], + [ + 29.615696156961576, + -12.179075327641797 + ], + [ + 29.698496984969864, + -13.257235157964288 + ], + [ + 28.935289352893534, + -13.248772364947627 + ], + [ + 28.524885248852485, + -12.69869081886472 + ], + [ + 28.15408154081541, + -12.27216605082505 + ], + [ + 27.387273872738746, + -12.133376245351826 + ], + [ + 27.1640716407164, + -11.608683078318904 + ], + [ + 26.55206552065522, + -11.925191537141998 + ], + [ + 25.752857528575305, + -11.784709173065437 + ], + [ + 25.418054180541816, + -11.331103467372458 + ], + [ + 24.78444784447845, + -11.238012744189191 + ], + [ + 24.312843128431297, + -11.263401123239177 + ], + [ + 24.258842588425892, + -10.951970340226083 + ], + [ + 23.91323913239134, + -10.926581961176112 + ], + [ + 23.456034560345614, + -10.867342410059493 + ], + [ + 22.836828368283676, + -11.01798012575604 + ], + [ + 22.401224012240135, + -10.992591746706054 + ], + [ + 22.156421564215663, + -11.083989911285983 + ], + [ + 22.21042210422104, + -9.894121213143578 + ], + [ + 21.875618756187578, + -9.523450879013865 + ], + [ + 21.800018000180017, + -8.909052106004353 + ], + [ + 21.947619476194774, + -8.30650124321815 + ], + [ + 21.746017460174613, + -7.920597881658452 + ], + [ + 21.72801728017282, + -7.290966081218954 + ], + [ + 20.514805148051494, + -7.299428874235602 + ], + [ + 20.601206012060118, + -6.938913891725889 + ], + [ + 20.090000900009017, + -6.942299008932551 + ], + [ + 20.036000360003612, + -7.1166325450757455 + ], + [ + 19.416794167941674, + -7.155561392952393 + ], + [ + 19.168391683916838, + -7.7378015524985955 + ], + [ + 19.017190171901717, + -7.988300225791733 + ], + [ + 18.462784627846275, + -7.8478178617151855 + ], + [ + 18.135181351813515, + -7.988300225791733 + ], + [ + 17.472774727747293, + -8.067850480148337 + ], + [ + 17.091170911709128, + -7.544849871718753 + ], + [ + 16.860768607686083, + -7.2215711784823355 + ], + [ + 16.57276572765727, + -6.622405432902809 + ], + [ + 16.327963279632797, + -5.877679647436722 + ], + [ + 13.375933759337613, + -5.86413917861006 + ], + [ + 13.023130231302332, + -5.9843108394466356 + ], + [ + 12.735127351273519, + -5.965692694809988 + ], + [ + 12.321123211232106, + -6.099404824473211 + ], + [ + 12.180721807218077, + -5.789666600063455 + ], + [ + 12.436324363243642, + -5.684727966656865 + ], + [ + 12.46872468724689, + -5.24804784699721 + ], + [ + 12.630726307263075, + -4.990778939290749 + ], + [ + 12.994329943299448, + -4.780901672477569 + ], + [ + 13.257132571325712, + -4.882455188677497 + ], + [ + 13.59913599135993, + -4.49993694432446 + ], + [ + 14.146341463414643, + -4.510092295944446 + ], + [ + 14.207542075420747, + -4.792749582700893 + ], + [ + 14.581945819458213, + -4.970468236050763 + ], + [ + 15.172351723517238, + -4.344221552817913 + ], + [ + 15.7519575195752, + -3.855072116454963 + ], + [ + 16.007560075600765, + -3.535178540425221 + ], + [ + 15.971559715597152, + -2.712595059205853 + ], + [ + 16.40716407164072, + -1.7410664208932758 + ], + [ + 16.864368643686447, + -1.226528605480354 + ], + [ + 17.523175231752333, + -0.7441494035307272 + ], + [ + 17.63837638376384, + -0.42425582750097135 + ], + [ + 17.66357663576636, + -0.05866316918125847 + ], + [ + 17.825578255782574, + 0.28831134450179263 + ], + [ + 17.775177751777534, + 0.8553184766180237 + ], + [ + 17.89757897578977, + 1.7422191847639965 + ], + [ + 18.095580955809567, + 2.3650807507901703 + ], + [ + 18.394383943839443, + 2.899929269443092 + ], + [ + 18.45198451984521, + 3.5041726908326183 + ], + [ + 18.5419854198542, + 4.201506835405411 + ], + [ + 18.930789307893093, + 4.709274416405009 + ], + [ + 19.467194671946714, + 5.030860551038089 + ], + [ + 20.291602916029177, + 4.692348830371685 + ], + [ + 20.92880928809288, + 4.32337105484531 + ], + [ + 21.65961659616596, + 4.22351009724872 + ], + [ + 22.4048240482405, + 4.02886585786554 + ], + [ + 22.703627036270376, + 4.633109279255066 + ], + [ + 22.84042840428404, + 4.710966975008347 + ], + [ + 23.297632976329766, + 4.609413458808419 + ], + [ + 24.410044100441013, + 5.108718246791369 + ], + [ + 24.806048060480606, + 4.897148421374865 + ], + [ + 25.130051300513003, + 4.927614476234837 + ], + [ + 25.27765277652776, + 5.169650356511312 + ], + [ + 25.652056520565225, + 5.255970845281254 + ], + [ + 26.404464044640463, + 5.151032211874664 + ], + [ + 27.04527045270453, + 5.127336391428017 + ], + [ + 27.37287372873729, + 5.233967583437931 + ], + [ + 27.981279812798135, + 4.407998985011915 + ], + [ + 28.42768427684277, + 4.287827324175339 + ], + [ + 28.69768697686979, + 4.45539062590521 + ], + [ + 29.15849158491585, + 4.389380840375267 + ], + [ + 29.716497164971656, + 4.600950665791757 + ], + [ + 29.95409954099543, + 4.174425897752101 + ], + [ + 30.832508325083268, + 3.5092503666426182 + ] + ] + ] + }, + "countryRef": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + }, + "currentYear": 2006, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.17760150156512355, + "skewed": 0.1271844321615827, + "clumpy": 0.4153221130337965, + "sparse": 0.5299130194030632, + "striated": 0.774911190221534, + "convex": 0.2133845175003759, + "skinny": 0.8953876199111221, + "stringy": 0.6429222650995006, + "monotonic": 0.0013195157038985439, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 23.49126960036375, + -88.88222239980192 + ], + "drag": [ + 23.49126960036375, + -88.88222239980192 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 96 + }, + { + "attrs": { + "name": "Selected Congo, Dem. Rep. (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2006\",\"payload\":{\"numVal\":2006},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.18\",\"payload\":{\"numVal\":0.17760150156512355},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.13\",\"payload\":{\"numVal\":0.1271844321615827},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.42\",\"payload\":{\"numVal\":0.4153221130337965},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.53\",\"payload\":{\"numVal\":0.5299130194030632},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.77\",\"payload\":{\"numVal\":0.774911190221534},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.21\",\"payload\":{\"numVal\":0.2133845175003759},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.9\",\"payload\":{\"numVal\":0.8953876199111221},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.64\",\"payload\":{\"numVal\":0.6429222650995006},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0\",\"payload\":{\"numVal\":0.0013195157038985439},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Ghana\",\"text\":\"Ghana\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Congo, Dem. Rep.\",\"text\":\"Congo, Dem. Rep.\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 97 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Congo, Dem. Rep. (2 Countries)", + "timestamp": 1522409376132, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2006, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8054734721881944, + "skewed": 0.8616743928194821, + "clumpy": 0.8896415712750758, + "sparse": 0.811559640025024, + "striated": 0.8709639127958204, + "convex": 0.5278651564354524, + "skinny": 0.35443090172313885, + "stringy": 0.286045089810002, + "monotonic": 0.5476261967598886, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.7188733853924696, + -88.62104512625066 + ], + "drag": [ + -1.7188733853924696, + -88.62104512625066 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 98 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2008", + "timestamp": 1522409379513, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + }, + "currentYear": 2008, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.2314755203619958, + "skewed": 0.2770891641980908, + "clumpy": 0.8682905552564104, + "sparse": 0.470942221423007, + "striated": 0.09619785492754152, + "convex": 0.27115596008957854, + "skinny": 0.4704509926604996, + "stringy": 0.8126300621379505, + "monotonic": 0.7479249998052868, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 23.49126960036375, + -88.88222239980192 + ], + "drag": [ + 23.49126960036375, + -88.88222239980192 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 99 + }, + { + "attrs": { + "name": "Selected Year 2008", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2008\",\"payload\":{\"numVal\":2008},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.23\",\"payload\":{\"numVal\":0.2314755203619958},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.28\",\"payload\":{\"numVal\":0.2770891641980908},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.87\",\"payload\":{\"numVal\":0.8682905552564104},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.47\",\"payload\":{\"numVal\":0.470942221423007},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.1\",\"payload\":{\"numVal\":0.09619785492754152},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.27\",\"payload\":{\"numVal\":0.27115596008957854},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.47\",\"payload\":{\"numVal\":0.4704509926604996},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.81\",\"payload\":{\"numVal\":0.8126300621379505},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.75\",\"payload\":{\"numVal\":0.7479249998052868},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Ghana\",\"text\":\"Ghana\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Congo, Dem. Rep.\",\"text\":\"Congo, Dem. Rep.\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 100 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2008", + "timestamp": 1522409379513, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 180, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 30.832508325083268, + 3.5092503666426182 + ], + [ + 30.7749077490775, + 2.339692371740199 + ], + [ + 31.174511745117456, + 2.2042876834736376 + ], + [ + 30.854108541085424, + 1.8488503767739104 + ], + [ + 30.468904689046894, + 1.5831186760507876 + ], + [ + 30.08730087300873, + 1.0618106262245277 + ], + [ + 29.874898748987505, + 0.5980495689115628 + ], + [ + 29.8208982089821, + -0.2059157676711436 + ], + [ + 29.586895868958692, + -0.5867414534208564 + ], + [ + 29.579695796957964, + -1.3416225905069297 + ], + [ + 29.29169291692918, + -1.6208947600567143 + ], + [ + 29.255692556925567, + -2.2149828298262406 + ], + [ + 29.118891188911903, + -2.2928405255795212 + ], + [ + 29.02529025290255, + -2.8395369544557525 + ], + [ + 29.277292772927723, + -3.2931426601487317 + ], + [ + 29.338493384933855, + -4.49993694432446 + ], + [ + 29.51849518495186, + -5.420688824537081 + ], + [ + 29.421294212942144, + -5.940304315760002 + ], + [ + 29.61929619296194, + -6.520851916702881 + ], + [ + 30.1989019890199, + -7.07939625580245 + ], + [ + 30.738907389073887, + -8.340352415284798 + ], + [ + 30.346503465034658, + -8.23879889908487 + ], + [ + 29.003690036900366, + -8.40636220081474 + ], + [ + 28.733687336873373, + -8.526533861651316 + ], + [ + 28.449284492844924, + -9.16462845510749 + ], + [ + 28.67248672486727, + -9.606386250577145 + ], + [ + 28.49608496084963, + -10.789484714306212 + ], + [ + 28.373683736837364, + -11.793171966082099 + ], + [ + 28.643686436864385, + -11.970890619431955 + ], + [ + 29.34209342093422, + -12.360179098198316 + ], + [ + 29.615696156961576, + -12.179075327641797 + ], + [ + 29.698496984969864, + -13.257235157964288 + ], + [ + 28.935289352893534, + -13.248772364947627 + ], + [ + 28.524885248852485, + -12.69869081886472 + ], + [ + 28.15408154081541, + -12.27216605082505 + ], + [ + 27.387273872738746, + -12.133376245351826 + ], + [ + 27.1640716407164, + -11.608683078318904 + ], + [ + 26.55206552065522, + -11.925191537141998 + ], + [ + 25.752857528575305, + -11.784709173065437 + ], + [ + 25.418054180541816, + -11.331103467372458 + ], + [ + 24.78444784447845, + -11.238012744189191 + ], + [ + 24.312843128431297, + -11.263401123239177 + ], + [ + 24.258842588425892, + -10.951970340226083 + ], + [ + 23.91323913239134, + -10.926581961176112 + ], + [ + 23.456034560345614, + -10.867342410059493 + ], + [ + 22.836828368283676, + -11.01798012575604 + ], + [ + 22.401224012240135, + -10.992591746706054 + ], + [ + 22.156421564215663, + -11.083989911285983 + ], + [ + 22.21042210422104, + -9.894121213143578 + ], + [ + 21.875618756187578, + -9.523450879013865 + ], + [ + 21.800018000180017, + -8.909052106004353 + ], + [ + 21.947619476194774, + -8.30650124321815 + ], + [ + 21.746017460174613, + -7.920597881658452 + ], + [ + 21.72801728017282, + -7.290966081218954 + ], + [ + 20.514805148051494, + -7.299428874235602 + ], + [ + 20.601206012060118, + -6.938913891725889 + ], + [ + 20.090000900009017, + -6.942299008932551 + ], + [ + 20.036000360003612, + -7.1166325450757455 + ], + [ + 19.416794167941674, + -7.155561392952393 + ], + [ + 19.168391683916838, + -7.7378015524985955 + ], + [ + 19.017190171901717, + -7.988300225791733 + ], + [ + 18.462784627846275, + -7.8478178617151855 + ], + [ + 18.135181351813515, + -7.988300225791733 + ], + [ + 17.472774727747293, + -8.067850480148337 + ], + [ + 17.091170911709128, + -7.544849871718753 + ], + [ + 16.860768607686083, + -7.2215711784823355 + ], + [ + 16.57276572765727, + -6.622405432902809 + ], + [ + 16.327963279632797, + -5.877679647436722 + ], + [ + 13.375933759337613, + -5.86413917861006 + ], + [ + 13.023130231302332, + -5.9843108394466356 + ], + [ + 12.735127351273519, + -5.965692694809988 + ], + [ + 12.321123211232106, + -6.099404824473211 + ], + [ + 12.180721807218077, + -5.789666600063455 + ], + [ + 12.436324363243642, + -5.684727966656865 + ], + [ + 12.46872468724689, + -5.24804784699721 + ], + [ + 12.630726307263075, + -4.990778939290749 + ], + [ + 12.994329943299448, + -4.780901672477569 + ], + [ + 13.257132571325712, + -4.882455188677497 + ], + [ + 13.59913599135993, + -4.49993694432446 + ], + [ + 14.146341463414643, + -4.510092295944446 + ], + [ + 14.207542075420747, + -4.792749582700893 + ], + [ + 14.581945819458213, + -4.970468236050763 + ], + [ + 15.172351723517238, + -4.344221552817913 + ], + [ + 15.7519575195752, + -3.855072116454963 + ], + [ + 16.007560075600765, + -3.535178540425221 + ], + [ + 15.971559715597152, + -2.712595059205853 + ], + [ + 16.40716407164072, + -1.7410664208932758 + ], + [ + 16.864368643686447, + -1.226528605480354 + ], + [ + 17.523175231752333, + -0.7441494035307272 + ], + [ + 17.63837638376384, + -0.42425582750097135 + ], + [ + 17.66357663576636, + -0.05866316918125847 + ], + [ + 17.825578255782574, + 0.28831134450179263 + ], + [ + 17.775177751777534, + 0.8553184766180237 + ], + [ + 17.89757897578977, + 1.7422191847639965 + ], + [ + 18.095580955809567, + 2.3650807507901703 + ], + [ + 18.394383943839443, + 2.899929269443092 + ], + [ + 18.45198451984521, + 3.5041726908326183 + ], + [ + 18.5419854198542, + 4.201506835405411 + ], + [ + 18.930789307893093, + 4.709274416405009 + ], + [ + 19.467194671946714, + 5.030860551038089 + ], + [ + 20.291602916029177, + 4.692348830371685 + ], + [ + 20.92880928809288, + 4.32337105484531 + ], + [ + 21.65961659616596, + 4.22351009724872 + ], + [ + 22.4048240482405, + 4.02886585786554 + ], + [ + 22.703627036270376, + 4.633109279255066 + ], + [ + 22.84042840428404, + 4.710966975008347 + ], + [ + 23.297632976329766, + 4.609413458808419 + ], + [ + 24.410044100441013, + 5.108718246791369 + ], + [ + 24.806048060480606, + 4.897148421374865 + ], + [ + 25.130051300513003, + 4.927614476234837 + ], + [ + 25.27765277652776, + 5.169650356511312 + ], + [ + 25.652056520565225, + 5.255970845281254 + ], + [ + 26.404464044640463, + 5.151032211874664 + ], + [ + 27.04527045270453, + 5.127336391428017 + ], + [ + 27.37287372873729, + 5.233967583437931 + ], + [ + 27.981279812798135, + 4.407998985011915 + ], + [ + 28.42768427684277, + 4.287827324175339 + ], + [ + 28.69768697686979, + 4.45539062590521 + ], + [ + 29.15849158491585, + 4.389380840375267 + ], + [ + 29.716497164971656, + 4.600950665791757 + ], + [ + 29.95409954099543, + 4.174425897752101 + ], + [ + 30.832508325083268, + 3.5092503666426182 + ] + ] + ] + }, + "countryRef": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + }, + "currentYear": 2006, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.17760150156512355, + "skewed": 0.1271844321615827, + "clumpy": 0.4153221130337965, + "sparse": 0.5299130194030632, + "striated": 0.774911190221534, + "convex": 0.2133845175003759, + "skinny": 0.8953876199111221, + "stringy": 0.6429222650995006, + "monotonic": 0.0013195157038985439, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 23.49126960036375, + -88.88222239980192 + ], + "drag": [ + 23.49126960036375, + -88.88222239980192 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 101 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected South Africa (3 Countries)", + "timestamp": 1522409386464, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 710, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 28.218882188821908, + -32.77243585438237 + ], + [ + 27.462874628746306, + -33.22773411867868 + ], + [ + 26.41886418864189, + -33.61533003884172 + ], + [ + 25.911259112591125, + -33.66779935554501 + ], + [ + 25.78165781657816, + -33.94537896649146 + ], + [ + 25.173251732517343, + -33.796433809398245 + ], + [ + 24.67644676446764, + -33.987692931574756 + ], + [ + 23.59283592835928, + -33.79474125079491 + ], + [ + 22.988029880298797, + -33.91660547023481 + ], + [ + 22.57402574025741, + -33.864136153531526 + ], + [ + 21.544415444154453, + -34.25850230810788 + ], + [ + 20.68760687606877, + -34.41760281682109 + ], + [ + 20.072000720007196, + -34.79504338536413 + ], + [ + 19.6147961479615, + -34.81873920581078 + ], + [ + 19.193591935919358, + -34.46330189911105 + ], + [ + 18.855188551885533, + -34.444683754474404 + ], + [ + 18.423184231842328, + -33.99784828319475 + ], + [ + 18.37638376383765, + -34.13663808866798 + ], + [ + 18.243182431824323, + -33.86752127073819 + ], + [ + 18.25038250382505, + -33.28189599398531 + ], + [ + 17.926379263792654, + -32.61164278706583 + ], + [ + 18.246782467824687, + -32.428846457905976 + ], + [ + 18.221582215822167, + -31.662117410596572 + ], + [ + 17.566375663756645, + -30.726132502953973 + ], + [ + 17.065970659706608, + -29.878160642684634 + ], + [ + 17.062370623706244, + -29.876468084081303 + ], + [ + 16.34596345963459, + -28.576583076722322 + ], + [ + 16.82476824768247, + -28.08235596454937 + ], + [ + 17.217172171721728, + -28.356550458289156 + ], + [ + 17.38637386373864, + -28.783075226328826 + ], + [ + 17.836378363783638, + -28.8558552462721 + ], + [ + 18.46638466384664, + -29.045421809845287 + ], + [ + 19.00279002790029, + -28.972641789902006 + ], + [ + 19.895598955989556, + -28.46148909169574 + ], + [ + 19.895598955989556, + -24.768326219225294 + ], + [ + 20.165601656016577, + -24.91727137631851 + ], + [ + 20.759607596075966, + -25.8684893113911 + ], + [ + 20.666006660066614, + -26.477810408590628 + ], + [ + 20.88920889208893, + -26.828170039480355 + ], + [ + 21.605616056160557, + -26.726616523280434 + ], + [ + 22.106021060210622, + -26.27978105200078 + ], + [ + 22.58122581225814, + -25.980198179211015 + ], + [ + 22.826028260282612, + -25.501204094468058 + ], + [ + 23.312033120331222, + -25.26932356581157 + ], + [ + 23.733237332373335, + -25.389495226648144 + ], + [ + 24.212042120421216, + -25.67045995480126 + ], + [ + 25.02565025650256, + -25.719544154297886 + ], + [ + 25.666456664566653, + -25.485971067038065 + ], + [ + 25.767257672576733, + -25.174540284024978 + ], + [ + 25.94005940059401, + -24.69554619928202 + ], + [ + 26.487264872648723, + -24.615995944925416 + ], + [ + 26.786067860678628, + -24.24024793498571 + ], + [ + 27.12087120871209, + -23.575072403876227 + ], + [ + 28.017280172801748, + -22.826961501203478 + ], + [ + 29.432094320943207, + -22.090698508754052 + ], + [ + 29.838898388983893, + -22.102546418977376 + ], + [ + 30.321303213032138, + -22.271802279310577 + ], + [ + 30.65970659706599, + -22.151630618474 + ], + [ + 31.19251192511925, + -22.251491576070592 + ], + [ + 31.67131671316713, + -23.659700334042824 + ], + [ + 31.93051930519306, + -24.36888238883894 + ], + [ + 31.754117541175418, + -25.484278508434734 + ], + [ + 31.836918369183707, + -25.843100932341123 + ], + [ + 31.332913329133305, + -25.660304603181267 + ], + [ + 31.044910449104492, + -25.73139206452121 + ], + [ + 30.95130951309514, + -26.022512144294318 + ], + [ + 30.677706777067783, + -26.398260154234023 + ], + [ + 30.68490684906851, + -26.74354210931375 + ], + [ + 31.282512825128265, + -27.285160862379996 + ], + [ + 31.869318693186926, + -27.178529670370075 + ], + [ + 32.07092070920709, + -26.733386757693758 + ], + [ + 32.83052830528305, + -26.74184955071042 + ], + [ + 32.57852578525785, + -27.469649750143184 + ], + [ + 32.463324633246344, + -28.3006960243792 + ], + [ + 32.204122041220415, + -28.752609171468848 + ], + [ + 31.52011520115201, + -29.25699163526179 + ], + [ + 31.325713257132577, + -29.402551675148338 + ], + [ + 30.9009090090901, + -29.910319256147943 + ], + [ + 30.62370623706238, + -30.42316451295754 + ], + [ + 30.05490054900551, + -31.14080936077032 + ], + [ + 28.92448924489247, + -32.17157755019951 + ], + [ + 28.218882188821908, + -32.77243585438237 + ] + ], + [ + [ + 27.75087750877509, + -30.644889689994038 + ], + [ + 28.107281072810736, + -30.545028732397448 + ], + [ + 28.290882908829104, + -30.22682771497103 + ], + [ + 28.84888848888491, + -30.069419764861152 + ], + [ + 29.018090180901822, + -29.74444851302141 + ], + [ + 29.324093240932427, + -29.25699163526179 + ], + [ + 28.978489784897846, + -28.95571620386869 + ], + [ + 28.542885428854305, + -28.647670538062265 + ], + [ + 28.074880748807487, + -28.850777570462107 + ], + [ + 27.531275312753138, + -29.24345116643513 + ], + [ + 26.998469984699852, + -29.876468084081303 + ], + [ + 27.75087750877509, + -30.644889689994038 + ] + ] + ] + }, + "countryRef": { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + }, + "currentYear": 2008, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8948778299889417, + "skewed": 0.5301052221967026, + "clumpy": 0.6232565264109318, + "sparse": 0.20395487917763666, + "striated": 0.1232558625699256, + "convex": 0.6613919282286442, + "skinny": 0.09534437264731133, + "stringy": 0.09327394141727319, + "monotonic": 0.8887069627568278, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + }, + { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 22.345354010102106, + -89.28726012008704 + ], + "drag": [ + 22.345354010102106, + -89.28726012008704 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 102 + }, + { + "attrs": { + "name": "Selected South Africa (3 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2008\",\"payload\":{\"numVal\":2008},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.89\",\"payload\":{\"numVal\":0.8948778299889417},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.53\",\"payload\":{\"numVal\":0.5301052221967026},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.62\",\"payload\":{\"numVal\":0.6232565264109318},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.2\",\"payload\":{\"numVal\":0.20395487917763666},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.12\",\"payload\":{\"numVal\":0.1232558625699256},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.66\",\"payload\":{\"numVal\":0.6613919282286442},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.1\",\"payload\":{\"numVal\":0.09534437264731133},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.09\",\"payload\":{\"numVal\":0.09327394141727319},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.89\",\"payload\":{\"numVal\":0.8887069627568278},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Ghana\",\"text\":\"Ghana\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Congo, Dem. Rep.\",\"text\":\"Congo, Dem. Rep.\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = South Africa\",\"text\":\"South Africa\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 103 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected South Africa (3 Countries)", + "timestamp": 1522409386464, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + }, + "currentYear": 2008, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.2314755203619958, + "skewed": 0.2770891641980908, + "clumpy": 0.8682905552564104, + "sparse": 0.470942221423007, + "striated": 0.09619785492754152, + "convex": 0.27115596008957854, + "skinny": 0.4704509926604996, + "stringy": 0.8126300621379505, + "monotonic": 0.7479249998052868, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 23.49126960036375, + -88.88222239980192 + ], + "drag": [ + 23.49126960036375, + -88.88222239980192 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 104 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2009", + "timestamp": 1522409396738, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + }, + "currentYear": 2009, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6125132518156362, + "skewed": 0.458606991688981, + "clumpy": 0.41331866507946713, + "sparse": 0.9101222511445484, + "striated": 0.6021728851308141, + "convex": 0.19319553877988427, + "skinny": 0.7526465453558036, + "stringy": 0.2589787034535558, + "monotonic": 0.7977659816603755, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + }, + { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 22.345354010102106, + -89.28726012008704 + ], + "drag": [ + 22.345354010102106, + -89.28726012008704 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 105 + }, + { + "attrs": { + "name": "Selected Year 2009", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2009\",\"payload\":{\"numVal\":2009},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.61\",\"payload\":{\"numVal\":0.6125132518156362},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.46\",\"payload\":{\"numVal\":0.458606991688981},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.41\",\"payload\":{\"numVal\":0.41331866507946713},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.91\",\"payload\":{\"numVal\":0.9101222511445484},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.6\",\"payload\":{\"numVal\":0.6021728851308141},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.19\",\"payload\":{\"numVal\":0.19319553877988427},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.75\",\"payload\":{\"numVal\":0.7526465453558036},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.26\",\"payload\":{\"numVal\":0.2589787034535558},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.8\",\"payload\":{\"numVal\":0.7977659816603755},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Ghana\",\"text\":\"Ghana\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Congo, Dem. Rep.\",\"text\":\"Congo, Dem. Rep.\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = South Africa\",\"text\":\"South Africa\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 106 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2009", + "timestamp": 1522409396738, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 710, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 28.218882188821908, + -32.77243585438237 + ], + [ + 27.462874628746306, + -33.22773411867868 + ], + [ + 26.41886418864189, + -33.61533003884172 + ], + [ + 25.911259112591125, + -33.66779935554501 + ], + [ + 25.78165781657816, + -33.94537896649146 + ], + [ + 25.173251732517343, + -33.796433809398245 + ], + [ + 24.67644676446764, + -33.987692931574756 + ], + [ + 23.59283592835928, + -33.79474125079491 + ], + [ + 22.988029880298797, + -33.91660547023481 + ], + [ + 22.57402574025741, + -33.864136153531526 + ], + [ + 21.544415444154453, + -34.25850230810788 + ], + [ + 20.68760687606877, + -34.41760281682109 + ], + [ + 20.072000720007196, + -34.79504338536413 + ], + [ + 19.6147961479615, + -34.81873920581078 + ], + [ + 19.193591935919358, + -34.46330189911105 + ], + [ + 18.855188551885533, + -34.444683754474404 + ], + [ + 18.423184231842328, + -33.99784828319475 + ], + [ + 18.37638376383765, + -34.13663808866798 + ], + [ + 18.243182431824323, + -33.86752127073819 + ], + [ + 18.25038250382505, + -33.28189599398531 + ], + [ + 17.926379263792654, + -32.61164278706583 + ], + [ + 18.246782467824687, + -32.428846457905976 + ], + [ + 18.221582215822167, + -31.662117410596572 + ], + [ + 17.566375663756645, + -30.726132502953973 + ], + [ + 17.065970659706608, + -29.878160642684634 + ], + [ + 17.062370623706244, + -29.876468084081303 + ], + [ + 16.34596345963459, + -28.576583076722322 + ], + [ + 16.82476824768247, + -28.08235596454937 + ], + [ + 17.217172171721728, + -28.356550458289156 + ], + [ + 17.38637386373864, + -28.783075226328826 + ], + [ + 17.836378363783638, + -28.8558552462721 + ], + [ + 18.46638466384664, + -29.045421809845287 + ], + [ + 19.00279002790029, + -28.972641789902006 + ], + [ + 19.895598955989556, + -28.46148909169574 + ], + [ + 19.895598955989556, + -24.768326219225294 + ], + [ + 20.165601656016577, + -24.91727137631851 + ], + [ + 20.759607596075966, + -25.8684893113911 + ], + [ + 20.666006660066614, + -26.477810408590628 + ], + [ + 20.88920889208893, + -26.828170039480355 + ], + [ + 21.605616056160557, + -26.726616523280434 + ], + [ + 22.106021060210622, + -26.27978105200078 + ], + [ + 22.58122581225814, + -25.980198179211015 + ], + [ + 22.826028260282612, + -25.501204094468058 + ], + [ + 23.312033120331222, + -25.26932356581157 + ], + [ + 23.733237332373335, + -25.389495226648144 + ], + [ + 24.212042120421216, + -25.67045995480126 + ], + [ + 25.02565025650256, + -25.719544154297886 + ], + [ + 25.666456664566653, + -25.485971067038065 + ], + [ + 25.767257672576733, + -25.174540284024978 + ], + [ + 25.94005940059401, + -24.69554619928202 + ], + [ + 26.487264872648723, + -24.615995944925416 + ], + [ + 26.786067860678628, + -24.24024793498571 + ], + [ + 27.12087120871209, + -23.575072403876227 + ], + [ + 28.017280172801748, + -22.826961501203478 + ], + [ + 29.432094320943207, + -22.090698508754052 + ], + [ + 29.838898388983893, + -22.102546418977376 + ], + [ + 30.321303213032138, + -22.271802279310577 + ], + [ + 30.65970659706599, + -22.151630618474 + ], + [ + 31.19251192511925, + -22.251491576070592 + ], + [ + 31.67131671316713, + -23.659700334042824 + ], + [ + 31.93051930519306, + -24.36888238883894 + ], + [ + 31.754117541175418, + -25.484278508434734 + ], + [ + 31.836918369183707, + -25.843100932341123 + ], + [ + 31.332913329133305, + -25.660304603181267 + ], + [ + 31.044910449104492, + -25.73139206452121 + ], + [ + 30.95130951309514, + -26.022512144294318 + ], + [ + 30.677706777067783, + -26.398260154234023 + ], + [ + 30.68490684906851, + -26.74354210931375 + ], + [ + 31.282512825128265, + -27.285160862379996 + ], + [ + 31.869318693186926, + -27.178529670370075 + ], + [ + 32.07092070920709, + -26.733386757693758 + ], + [ + 32.83052830528305, + -26.74184955071042 + ], + [ + 32.57852578525785, + -27.469649750143184 + ], + [ + 32.463324633246344, + -28.3006960243792 + ], + [ + 32.204122041220415, + -28.752609171468848 + ], + [ + 31.52011520115201, + -29.25699163526179 + ], + [ + 31.325713257132577, + -29.402551675148338 + ], + [ + 30.9009090090901, + -29.910319256147943 + ], + [ + 30.62370623706238, + -30.42316451295754 + ], + [ + 30.05490054900551, + -31.14080936077032 + ], + [ + 28.92448924489247, + -32.17157755019951 + ], + [ + 28.218882188821908, + -32.77243585438237 + ] + ], + [ + [ + 27.75087750877509, + -30.644889689994038 + ], + [ + 28.107281072810736, + -30.545028732397448 + ], + [ + 28.290882908829104, + -30.22682771497103 + ], + [ + 28.84888848888491, + -30.069419764861152 + ], + [ + 29.018090180901822, + -29.74444851302141 + ], + [ + 29.324093240932427, + -29.25699163526179 + ], + [ + 28.978489784897846, + -28.95571620386869 + ], + [ + 28.542885428854305, + -28.647670538062265 + ], + [ + 28.074880748807487, + -28.850777570462107 + ], + [ + 27.531275312753138, + -29.24345116643513 + ], + [ + 26.998469984699852, + -29.876468084081303 + ], + [ + 27.75087750877509, + -30.644889689994038 + ] + ] + ] + }, + "countryRef": { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + }, + "currentYear": 2008, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8948778299889417, + "skewed": 0.5301052221967026, + "clumpy": 0.6232565264109318, + "sparse": 0.20395487917763666, + "striated": 0.1232558625699256, + "convex": 0.6613919282286442, + "skinny": 0.09534437264731133, + "stringy": 0.09327394141727319, + "monotonic": 0.8887069627568278, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + }, + { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 22.345354010102106, + -89.28726012008704 + ], + "drag": [ + 22.345354010102106, + -89.28726012008704 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 107 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409401472, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + }, + "currentYear": 2009, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9176746754395264, + "skewed": 0.7060371103521936, + "clumpy": 0.021115388416303116, + "sparse": 0.6790644828489931, + "striated": 0.6087451113633193, + "convex": 0.5634538070810653, + "skinny": 0.8647520436940337, + "stringy": 0.7255593176585988, + "monotonic": 0.7999345070753001, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 66.46310423517549, + -89.22014033574892 + ], + "drag": [ + 66.46310423517549, + -89.22014033574892 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 108 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2009\",\"payload\":{\"numVal\":2009},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.92\",\"payload\":{\"numVal\":0.9176746754395264},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.71\",\"payload\":{\"numVal\":0.7060371103521936},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.02\",\"payload\":{\"numVal\":0.021115388416303116},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.68\",\"payload\":{\"numVal\":0.6790644828489931},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.61\",\"payload\":{\"numVal\":0.6087451113633193},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.56\",\"payload\":{\"numVal\":0.5634538070810653},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.86\",\"payload\":{\"numVal\":0.8647520436940337},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.73\",\"payload\":{\"numVal\":0.7255593176585988},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.8\",\"payload\":{\"numVal\":0.7999345070753001},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 109 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409401472, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + }, + "currentYear": 2009, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6125132518156362, + "skewed": 0.458606991688981, + "clumpy": 0.41331866507946713, + "sparse": 0.9101222511445484, + "striated": 0.6021728851308141, + "convex": 0.19319553877988427, + "skinny": 0.7526465453558036, + "stringy": 0.2589787034535558, + "monotonic": 0.7977659816603755, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2009, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2934, + "child_mortality": 58755, + "fertility": 4.12, + "life_expect": 63.1, + "population": 5845358 + }, + "x": 2934, + "y": 63.1, + "size": 5845358, + "color": "Africa", + "map_id": 288 + }, + { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + }, + { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 22.345354010102106, + -89.28726012008704 + ], + "drag": [ + 22.345354010102106, + -89.28726012008704 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 110 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Congo, Rep. (1 Countries)", + "timestamp": 1522409427141, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 178, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.994329943299448, + -4.780901672477569 + ], + [ + 12.61992619926201, + -4.43731227600118 + ], + [ + 12.31752317523177, + -4.606568136334374 + ], + [ + 11.914319143191449, + -5.038170580184044 + ], + [ + 11.09351093510935, + -3.9786288944982005 + ], + [ + 11.85671856718568, + -3.4268547898119692 + ], + [ + 11.47871478714788, + -2.765064375909148 + ], + [ + 11.820718207182068, + -2.514565702616011 + ], + [ + 12.49392493924941, + -2.3910089245727733 + ], + [ + 12.57672576725767, + -1.9492511291031178 + ], + [ + 13.109531095310956, + -2.4282452138460826 + ], + [ + 13.991539915399159, + -2.4705591789293777 + ], + [ + 14.297542975429764, + -1.998335328599751 + ], + [ + 14.427144271442728, + -1.3331597974902678 + ], + [ + 14.315543155431556, + -0.5528902813542089 + ], + [ + 13.843938439384402, + 0.03950522981199356 + ], + [ + 14.275942759427608, + 1.197215314491089 + ], + [ + 14.027540275402771, + 1.3952446710809312 + ], + [ + 13.282332823328233, + 1.314001858121003 + ], + [ + 13.001530015300148, + 1.8302322321372628 + ], + [ + 13.077130771307708, + 2.2669123517969183 + ], + [ + 14.337143371433712, + 2.227983503920285 + ], + [ + 15.147151471514718, + 1.9639443618004861 + ], + [ + 15.939159391593932, + 1.7269861573340108 + ], + [ + 16.01116011160113, + 2.2669123517969183 + ], + [ + 16.536765367653686, + 3.1978195836295242 + ], + [ + 17.13437134371344, + 3.727590426472446 + ], + [ + 17.811178111781118, + 3.560027124742575 + ], + [ + 18.45198451984521, + 3.5041726908326183 + ], + [ + 18.394383943839443, + 2.899929269443092 + ], + [ + 18.095580955809567, + 2.3650807507901703 + ], + [ + 17.89757897578977, + 1.7422191847639965 + ], + [ + 17.775177751777534, + 0.8553184766180237 + ], + [ + 17.825578255782574, + 0.28831134450179263 + ], + [ + 17.66357663576636, + -0.05866316918125847 + ], + [ + 17.63837638376384, + -0.42425582750097135 + ], + [ + 17.523175231752333, + -0.7441494035307272 + ], + [ + 16.864368643686447, + -1.226528605480354 + ], + [ + 16.40716407164072, + -1.7410664208932758 + ], + [ + 15.971559715597152, + -2.712595059205853 + ], + [ + 16.007560075600765, + -3.535178540425221 + ], + [ + 15.7519575195752, + -3.855072116454963 + ], + [ + 15.172351723517238, + -4.344221552817913 + ], + [ + 14.581945819458213, + -4.970468236050763 + ], + [ + 14.207542075420747, + -4.792749582700893 + ], + [ + 14.146341463414643, + -4.510092295944446 + ], + [ + 13.59913599135993, + -4.49993694432446 + ], + [ + 13.257132571325712, + -4.882455188677497 + ], + [ + 12.994329943299448, + -4.780901672477569 + ] + ] + ] + }, + "countryRef": { + "country": "Congo, Rep.", + "count": 216, + "this": { + "country": "Congo, Rep.", + "year": 2009, + "map_id": 178, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 5236, + "child_mortality": 9442, + "fertility": 5.09, + "life_expect": 59.6, + "population": 917645 + }, + "x": 5236, + "y": 59.6, + "size": 917645, + "color": "Africa", + "map_id": 178 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Congo, Rep.", + "count": 216, + "this": { + "country": "Congo, Rep.", + "year": 2009, + "map_id": 178, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 5236, + "child_mortality": 9442, + "fertility": 5.09, + "life_expect": 59.6, + "population": 917645 + }, + "x": 5236, + "y": 59.6, + "size": 917645, + "color": "Africa", + "map_id": 178 + }, + "currentYear": 2009, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6130716504047908, + "skewed": 0.5761145137459216, + "clumpy": 0.045556788599378395, + "sparse": 0.7705981318384953, + "striated": 0.2201908573020157, + "convex": 0.2794175735236766, + "skinny": 0.06431717969878581, + "stringy": 0.44266607776269007, + "monotonic": 0.04172913134548062, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Congo, Rep.", + "count": 216, + "this": { + "country": "Congo, Rep.", + "year": 2009, + "map_id": 178, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 5236, + "child_mortality": 9442, + "fertility": 5.09, + "life_expect": 59.6, + "population": 917645 + }, + "x": 5236, + "y": 59.6, + "size": 917645, + "color": "Africa", + "map_id": 178 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 16.615776058793873, + -88.78913264459158 + ], + "drag": [ + 16.615776058793873, + -88.78913264459158 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 111 + }, + { + "attrs": { + "name": "Selected Congo, Rep. (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2009\",\"payload\":{\"numVal\":2009},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.61\",\"payload\":{\"numVal\":0.6130716504047908},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.58\",\"payload\":{\"numVal\":0.5761145137459216},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.05\",\"payload\":{\"numVal\":0.045556788599378395},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.77\",\"payload\":{\"numVal\":0.7705981318384953},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.22\",\"payload\":{\"numVal\":0.2201908573020157},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.28\",\"payload\":{\"numVal\":0.2794175735236766},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.06\",\"payload\":{\"numVal\":0.06431717969878581},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.44\",\"payload\":{\"numVal\":0.44266607776269007},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.04\",\"payload\":{\"numVal\":0.04172913134548062},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Congo, Rep.\",\"text\":\"Congo, Rep.\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 112 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Congo, Rep. (1 Countries)", + "timestamp": 1522409427141, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "South Africa", + "count": 216, + "this": { + "country": "South Africa", + "year": 2009, + "map_id": 710, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 11903, + "child_mortality": 76073, + "fertility": 2.5, + "life_expect": 55.8, + "population": 15722286 + }, + "x": 11903, + "y": 55.8, + "size": 15722286, + "color": "Africa", + "map_id": 710 + }, + "currentYear": 2009, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9176746754395264, + "skewed": 0.7060371103521936, + "clumpy": 0.021115388416303116, + "sparse": 0.6790644828489931, + "striated": 0.6087451113633193, + "convex": 0.5634538070810653, + "skinny": 0.8647520436940337, + "stringy": 0.7255593176585988, + "monotonic": 0.7999345070753001, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 66.46310423517549, + -89.22014033574892 + ], + "drag": [ + 66.46310423517549, + -89.22014033574892 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 113 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Congo, Dem. Rep. (2 Countries)", + "timestamp": 1522409429227, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 180, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 30.832508325083268, + 3.5092503666426182 + ], + [ + 30.7749077490775, + 2.339692371740199 + ], + [ + 31.174511745117456, + 2.2042876834736376 + ], + [ + 30.854108541085424, + 1.8488503767739104 + ], + [ + 30.468904689046894, + 1.5831186760507876 + ], + [ + 30.08730087300873, + 1.0618106262245277 + ], + [ + 29.874898748987505, + 0.5980495689115628 + ], + [ + 29.8208982089821, + -0.2059157676711436 + ], + [ + 29.586895868958692, + -0.5867414534208564 + ], + [ + 29.579695796957964, + -1.3416225905069297 + ], + [ + 29.29169291692918, + -1.6208947600567143 + ], + [ + 29.255692556925567, + -2.2149828298262406 + ], + [ + 29.118891188911903, + -2.2928405255795212 + ], + [ + 29.02529025290255, + -2.8395369544557525 + ], + [ + 29.277292772927723, + -3.2931426601487317 + ], + [ + 29.338493384933855, + -4.49993694432446 + ], + [ + 29.51849518495186, + -5.420688824537081 + ], + [ + 29.421294212942144, + -5.940304315760002 + ], + [ + 29.61929619296194, + -6.520851916702881 + ], + [ + 30.1989019890199, + -7.07939625580245 + ], + [ + 30.738907389073887, + -8.340352415284798 + ], + [ + 30.346503465034658, + -8.23879889908487 + ], + [ + 29.003690036900366, + -8.40636220081474 + ], + [ + 28.733687336873373, + -8.526533861651316 + ], + [ + 28.449284492844924, + -9.16462845510749 + ], + [ + 28.67248672486727, + -9.606386250577145 + ], + [ + 28.49608496084963, + -10.789484714306212 + ], + [ + 28.373683736837364, + -11.793171966082099 + ], + [ + 28.643686436864385, + -11.970890619431955 + ], + [ + 29.34209342093422, + -12.360179098198316 + ], + [ + 29.615696156961576, + -12.179075327641797 + ], + [ + 29.698496984969864, + -13.257235157964288 + ], + [ + 28.935289352893534, + -13.248772364947627 + ], + [ + 28.524885248852485, + -12.69869081886472 + ], + [ + 28.15408154081541, + -12.27216605082505 + ], + [ + 27.387273872738746, + -12.133376245351826 + ], + [ + 27.1640716407164, + -11.608683078318904 + ], + [ + 26.55206552065522, + -11.925191537141998 + ], + [ + 25.752857528575305, + -11.784709173065437 + ], + [ + 25.418054180541816, + -11.331103467372458 + ], + [ + 24.78444784447845, + -11.238012744189191 + ], + [ + 24.312843128431297, + -11.263401123239177 + ], + [ + 24.258842588425892, + -10.951970340226083 + ], + [ + 23.91323913239134, + -10.926581961176112 + ], + [ + 23.456034560345614, + -10.867342410059493 + ], + [ + 22.836828368283676, + -11.01798012575604 + ], + [ + 22.401224012240135, + -10.992591746706054 + ], + [ + 22.156421564215663, + -11.083989911285983 + ], + [ + 22.21042210422104, + -9.894121213143578 + ], + [ + 21.875618756187578, + -9.523450879013865 + ], + [ + 21.800018000180017, + -8.909052106004353 + ], + [ + 21.947619476194774, + -8.30650124321815 + ], + [ + 21.746017460174613, + -7.920597881658452 + ], + [ + 21.72801728017282, + -7.290966081218954 + ], + [ + 20.514805148051494, + -7.299428874235602 + ], + [ + 20.601206012060118, + -6.938913891725889 + ], + [ + 20.090000900009017, + -6.942299008932551 + ], + [ + 20.036000360003612, + -7.1166325450757455 + ], + [ + 19.416794167941674, + -7.155561392952393 + ], + [ + 19.168391683916838, + -7.7378015524985955 + ], + [ + 19.017190171901717, + -7.988300225791733 + ], + [ + 18.462784627846275, + -7.8478178617151855 + ], + [ + 18.135181351813515, + -7.988300225791733 + ], + [ + 17.472774727747293, + -8.067850480148337 + ], + [ + 17.091170911709128, + -7.544849871718753 + ], + [ + 16.860768607686083, + -7.2215711784823355 + ], + [ + 16.57276572765727, + -6.622405432902809 + ], + [ + 16.327963279632797, + -5.877679647436722 + ], + [ + 13.375933759337613, + -5.86413917861006 + ], + [ + 13.023130231302332, + -5.9843108394466356 + ], + [ + 12.735127351273519, + -5.965692694809988 + ], + [ + 12.321123211232106, + -6.099404824473211 + ], + [ + 12.180721807218077, + -5.789666600063455 + ], + [ + 12.436324363243642, + -5.684727966656865 + ], + [ + 12.46872468724689, + -5.24804784699721 + ], + [ + 12.630726307263075, + -4.990778939290749 + ], + [ + 12.994329943299448, + -4.780901672477569 + ], + [ + 13.257132571325712, + -4.882455188677497 + ], + [ + 13.59913599135993, + -4.49993694432446 + ], + [ + 14.146341463414643, + -4.510092295944446 + ], + [ + 14.207542075420747, + -4.792749582700893 + ], + [ + 14.581945819458213, + -4.970468236050763 + ], + [ + 15.172351723517238, + -4.344221552817913 + ], + [ + 15.7519575195752, + -3.855072116454963 + ], + [ + 16.007560075600765, + -3.535178540425221 + ], + [ + 15.971559715597152, + -2.712595059205853 + ], + [ + 16.40716407164072, + -1.7410664208932758 + ], + [ + 16.864368643686447, + -1.226528605480354 + ], + [ + 17.523175231752333, + -0.7441494035307272 + ], + [ + 17.63837638376384, + -0.42425582750097135 + ], + [ + 17.66357663576636, + -0.05866316918125847 + ], + [ + 17.825578255782574, + 0.28831134450179263 + ], + [ + 17.775177751777534, + 0.8553184766180237 + ], + [ + 17.89757897578977, + 1.7422191847639965 + ], + [ + 18.095580955809567, + 2.3650807507901703 + ], + [ + 18.394383943839443, + 2.899929269443092 + ], + [ + 18.45198451984521, + 3.5041726908326183 + ], + [ + 18.5419854198542, + 4.201506835405411 + ], + [ + 18.930789307893093, + 4.709274416405009 + ], + [ + 19.467194671946714, + 5.030860551038089 + ], + [ + 20.291602916029177, + 4.692348830371685 + ], + [ + 20.92880928809288, + 4.32337105484531 + ], + [ + 21.65961659616596, + 4.22351009724872 + ], + [ + 22.4048240482405, + 4.02886585786554 + ], + [ + 22.703627036270376, + 4.633109279255066 + ], + [ + 22.84042840428404, + 4.710966975008347 + ], + [ + 23.297632976329766, + 4.609413458808419 + ], + [ + 24.410044100441013, + 5.108718246791369 + ], + [ + 24.806048060480606, + 4.897148421374865 + ], + [ + 25.130051300513003, + 4.927614476234837 + ], + [ + 25.27765277652776, + 5.169650356511312 + ], + [ + 25.652056520565225, + 5.255970845281254 + ], + [ + 26.404464044640463, + 5.151032211874664 + ], + [ + 27.04527045270453, + 5.127336391428017 + ], + [ + 27.37287372873729, + 5.233967583437931 + ], + [ + 27.981279812798135, + 4.407998985011915 + ], + [ + 28.42768427684277, + 4.287827324175339 + ], + [ + 28.69768697686979, + 4.45539062590521 + ], + [ + 29.15849158491585, + 4.389380840375267 + ], + [ + 29.716497164971656, + 4.600950665791757 + ], + [ + 29.95409954099543, + 4.174425897752101 + ], + [ + 30.832508325083268, + 3.5092503666426182 + ] + ] + ] + }, + "countryRef": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + }, + "currentYear": 2009, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.08245920876195201, + "skewed": 0.046061142465984695, + "clumpy": 0.8086017351690982, + "sparse": 0.24836236267758593, + "striated": 0.025664617877052986, + "convex": 0.9066316709668212, + "skinny": 0.10742396429229495, + "stringy": 0.4186369649746686, + "monotonic": 0.4183742978745384, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Congo, Rep.", + "count": 216, + "this": { + "country": "Congo, Rep.", + "year": 2009, + "map_id": 178, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 5236, + "child_mortality": 9442, + "fertility": 5.09, + "life_expect": 59.6, + "population": 917645 + }, + "x": 5236, + "y": 59.6, + "size": 917645, + "color": "Africa", + "map_id": 178 + }, + { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 21.199438419840458, + -88.78913264459158 + ], + "drag": [ + 21.199438419840458, + -88.78913264459158 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 114 + }, + { + "attrs": { + "name": "Selected Congo, Dem. Rep. (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2009\",\"payload\":{\"numVal\":2009},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.08\",\"payload\":{\"numVal\":0.08245920876195201},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.05\",\"payload\":{\"numVal\":0.046061142465984695},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.81\",\"payload\":{\"numVal\":0.8086017351690982},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.25\",\"payload\":{\"numVal\":0.24836236267758593},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.03\",\"payload\":{\"numVal\":0.025664617877052986},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.91\",\"payload\":{\"numVal\":0.9066316709668212},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.11\",\"payload\":{\"numVal\":0.10742396429229495},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.42\",\"payload\":{\"numVal\":0.4186369649746686},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.42\",\"payload\":{\"numVal\":0.4183742978745384},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Congo, Rep.\",\"text\":\"Congo, Rep.\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Congo, Dem. Rep.\",\"text\":\"Congo, Dem. Rep.\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 115 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Congo, Dem. Rep. (2 Countries)", + "timestamp": 1522409429227, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 178, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.994329943299448, + -4.780901672477569 + ], + [ + 12.61992619926201, + -4.43731227600118 + ], + [ + 12.31752317523177, + -4.606568136334374 + ], + [ + 11.914319143191449, + -5.038170580184044 + ], + [ + 11.09351093510935, + -3.9786288944982005 + ], + [ + 11.85671856718568, + -3.4268547898119692 + ], + [ + 11.47871478714788, + -2.765064375909148 + ], + [ + 11.820718207182068, + -2.514565702616011 + ], + [ + 12.49392493924941, + -2.3910089245727733 + ], + [ + 12.57672576725767, + -1.9492511291031178 + ], + [ + 13.109531095310956, + -2.4282452138460826 + ], + [ + 13.991539915399159, + -2.4705591789293777 + ], + [ + 14.297542975429764, + -1.998335328599751 + ], + [ + 14.427144271442728, + -1.3331597974902678 + ], + [ + 14.315543155431556, + -0.5528902813542089 + ], + [ + 13.843938439384402, + 0.03950522981199356 + ], + [ + 14.275942759427608, + 1.197215314491089 + ], + [ + 14.027540275402771, + 1.3952446710809312 + ], + [ + 13.282332823328233, + 1.314001858121003 + ], + [ + 13.001530015300148, + 1.8302322321372628 + ], + [ + 13.077130771307708, + 2.2669123517969183 + ], + [ + 14.337143371433712, + 2.227983503920285 + ], + [ + 15.147151471514718, + 1.9639443618004861 + ], + [ + 15.939159391593932, + 1.7269861573340108 + ], + [ + 16.01116011160113, + 2.2669123517969183 + ], + [ + 16.536765367653686, + 3.1978195836295242 + ], + [ + 17.13437134371344, + 3.727590426472446 + ], + [ + 17.811178111781118, + 3.560027124742575 + ], + [ + 18.45198451984521, + 3.5041726908326183 + ], + [ + 18.394383943839443, + 2.899929269443092 + ], + [ + 18.095580955809567, + 2.3650807507901703 + ], + [ + 17.89757897578977, + 1.7422191847639965 + ], + [ + 17.775177751777534, + 0.8553184766180237 + ], + [ + 17.825578255782574, + 0.28831134450179263 + ], + [ + 17.66357663576636, + -0.05866316918125847 + ], + [ + 17.63837638376384, + -0.42425582750097135 + ], + [ + 17.523175231752333, + -0.7441494035307272 + ], + [ + 16.864368643686447, + -1.226528605480354 + ], + [ + 16.40716407164072, + -1.7410664208932758 + ], + [ + 15.971559715597152, + -2.712595059205853 + ], + [ + 16.007560075600765, + -3.535178540425221 + ], + [ + 15.7519575195752, + -3.855072116454963 + ], + [ + 15.172351723517238, + -4.344221552817913 + ], + [ + 14.581945819458213, + -4.970468236050763 + ], + [ + 14.207542075420747, + -4.792749582700893 + ], + [ + 14.146341463414643, + -4.510092295944446 + ], + [ + 13.59913599135993, + -4.49993694432446 + ], + [ + 13.257132571325712, + -4.882455188677497 + ], + [ + 12.994329943299448, + -4.780901672477569 + ] + ] + ] + }, + "countryRef": { + "country": "Congo, Rep.", + "count": 216, + "this": { + "country": "Congo, Rep.", + "year": 2009, + "map_id": 178, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 5236, + "child_mortality": 9442, + "fertility": 5.09, + "life_expect": 59.6, + "population": 917645 + }, + "x": 5236, + "y": 59.6, + "size": 917645, + "color": "Africa", + "map_id": 178 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Congo, Rep.", + "count": 216, + "this": { + "country": "Congo, Rep.", + "year": 2009, + "map_id": 178, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 5236, + "child_mortality": 9442, + "fertility": 5.09, + "life_expect": 59.6, + "population": 917645 + }, + "x": 5236, + "y": 59.6, + "size": 917645, + "color": "Africa", + "map_id": 178 + }, + "currentYear": 2009, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6130716504047908, + "skewed": 0.5761145137459216, + "clumpy": 0.045556788599378395, + "sparse": 0.7705981318384953, + "striated": 0.2201908573020157, + "convex": 0.2794175735236766, + "skinny": 0.06431717969878581, + "stringy": 0.44266607776269007, + "monotonic": 0.04172913134548062, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Congo, Rep.", + "count": 216, + "this": { + "country": "Congo, Rep.", + "year": 2009, + "map_id": 178, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 5236, + "child_mortality": 9442, + "fertility": 5.09, + "life_expect": 59.6, + "population": 917645 + }, + "x": 5236, + "y": 59.6, + "size": 917645, + "color": "Africa", + "map_id": 178 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 16.615776058793873, + -88.78913264459158 + ], + "drag": [ + 16.615776058793873, + -88.78913264459158 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 116 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409433936, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 2009, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 607, + "child_mortality": 325122, + "fertility": 6.35, + "life_expect": 55.8, + "population": 13799152 + }, + "x": 607, + "y": 55.8, + "size": 13799152, + "color": "Africa", + "map_id": 180 + }, + "currentYear": 2009, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.5772954643812973, + "skewed": 0.4368225049684584, + "clumpy": 0.7024454412383445, + "sparse": 0.37731807293073594, + "striated": 0.999974456503516, + "convex": 0.582480808004332, + "skinny": 0.34977478570652965, + "stringy": 0.3840834440267813, + "monotonic": 0.8621272038358323, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 108.28902327972558, + -89.39264099335193 + ], + "drag": [ + 108.28902327972558, + -89.39264099335193 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 117 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2009\",\"payload\":{\"numVal\":2009},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.58\",\"payload\":{\"numVal\":0.5772954643812973},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.44\",\"payload\":{\"numVal\":0.4368225049684584},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.7\",\"payload\":{\"numVal\":0.7024454412383445},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.38\",\"payload\":{\"numVal\":0.37731807293073594},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 1\",\"payload\":{\"numVal\":0.999974456503516},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.58\",\"payload\":{\"numVal\":0.582480808004332},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.35\",\"payload\":{\"numVal\":0.34977478570652965},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.38\",\"payload\":{\"numVal\":0.3840834440267813},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.86\",\"payload\":{\"numVal\":0.8621272038358323},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 118 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522409433936, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1800, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "outlying": 0, + "skewed": 0, + "clumpy": 0, + "sparse": 0, + "striated": 0, + "convex": 0, + "skinny": 0, + "monotonic": 0, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 119 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "X = fertility", + "timestamp": 1522410348972, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1800, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.22088016171627367, + "skewed": 0.746575173087316, + "clumpy": 0.4648256994325368, + "sparse": 0.6763313858690261, + "striated": 0.21095287209600544, + "convex": 0.744454186176992, + "skinny": 0.94659419069443, + "stringy": 0.5943257968437898, + "monotonic": 0.3379525801577956, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 120 + }, + { + "attrs": { + "name": "X = fertility", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1800\",\"payload\":{\"numVal\":1800},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"fertility\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.22\",\"payload\":{\"numVal\":0.22088016171627367},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.75\",\"payload\":{\"numVal\":0.746575173087316},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.46\",\"payload\":{\"numVal\":0.4648256994325368},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.68\",\"payload\":{\"numVal\":0.6763313858690261},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.21\",\"payload\":{\"numVal\":0.21095287209600544},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.74\",\"payload\":{\"numVal\":0.744454186176992},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.95\",\"payload\":{\"numVal\":0.94659419069443},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.59\",\"payload\":{\"numVal\":0.5943257968437898},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.34\",\"payload\":{\"numVal\":0.3379525801577956},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]", + "tags": [], + "note": "The best stats you've ever seen | Hans Rosling\nhttps://www.youtube.com/watch?v=hVimVzgtD6w", + "starred": true + }, + "type": "state", + "id": 121 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "X = fertility", + "timestamp": 1522410348972, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1800, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "outlying": 0, + "skewed": 0, + "clumpy": 0, + "sparse": 0, + "striated": 0, + "convex": 0, + "skinny": 0, + "monotonic": 0, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 122 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1964", + "timestamp": 1522410365910, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1964, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7200448394002443, + "skewed": 0.18555069278325398, + "clumpy": 0.8289257371044192, + "sparse": 0.5894470676941548, + "striated": 0.24337057885488078, + "convex": 0.4173247678608616, + "skinny": 0.9854074311780179, + "stringy": 0.08613463457174042, + "monotonic": 0.4026601026239065, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 123 + }, + { + "attrs": { + "name": "Selected Year 1964", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1964\",\"payload\":{\"numVal\":1964},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"fertility\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.72\",\"payload\":{\"numVal\":0.7200448394002443},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.19\",\"payload\":{\"numVal\":0.18555069278325398},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.83\",\"payload\":{\"numVal\":0.8289257371044192},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.59\",\"payload\":{\"numVal\":0.5894470676941548},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.24\",\"payload\":{\"numVal\":0.24337057885488078},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.42\",\"payload\":{\"numVal\":0.4173247678608616},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.99\",\"payload\":{\"numVal\":0.9854074311780179},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.09\",\"payload\":{\"numVal\":0.08613463457174042},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.4\",\"payload\":{\"numVal\":0.4026601026239065},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 124 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1964", + "timestamp": 1522410365910, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1800, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.22088016171627367, + "skewed": 0.746575173087316, + "clumpy": 0.4648256994325368, + "sparse": 0.6763313858690261, + "striated": 0.21095287209600544, + "convex": 0.744454186176992, + "skinny": 0.94659419069443, + "stringy": 0.5943257968437898, + "monotonic": 0.3379525801577956, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 125 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United States (1 Countries)", + "timestamp": 1522410376192, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 840, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -155.68895688956889, + 18.91661133277391 + ], + [ + -155.93735937359372, + 19.058786255453796 + ], + [ + -155.90855908559087, + 19.33805842500358 + ], + [ + -156.07416074160741, + 19.703651083323294 + ], + [ + -156.02376023760237, + 19.813667392539884 + ], + [ + -155.8509585095851, + 19.97784557706308 + ], + [ + -155.91935919359193, + 20.174182375049597 + ], + [ + -155.8617586175862, + 20.267273098232863 + ], + [ + -155.7861578615786, + 20.2486549535962 + ], + [ + -155.4009540095401, + 20.079399093263007 + ], + [ + -155.22455224552246, + 19.99307860449308 + ], + [ + -155.06255062550625, + 19.85936647482984 + ], + [ + -154.80694806948068, + 19.509006843940114 + ], + [ + -154.8321483214832, + 19.453152410030157 + ], + [ + -155.2209522095221, + 19.23989002601033 + ], + [ + -155.54135541355413, + 19.084174634503782 + ], + [ + -155.68895688956889, + 18.91661133277391 + ] + ] + ], + [ + [ + [ + -156.4161641616416, + 20.57193364683262 + ], + [ + -156.58536585365854, + 20.783503472249123 + ], + [ + -156.70056700567005, + 20.86474628520905 + ], + [ + -156.71136711367114, + 20.927370953532346 + ], + [ + -156.61416614166143, + 21.011998883698936 + ], + [ + -156.25776257762578, + 20.917215601912346 + ], + [ + -155.9949599495995, + 20.764885327612475 + ], + [ + -156.07776077760778, + 20.6447136667759 + ], + [ + -156.4161641616416, + 20.57193364683262 + ] + ] + ], + [ + [ + [ + -156.79056790567904, + 21.06954587621223 + ], + [ + -157.3269732697327, + 21.09831937246888 + ], + [ + -157.25137251372513, + 21.22018359190878 + ], + [ + -156.75816758167582, + 21.176177068222145 + ], + [ + -156.79056790567904, + 21.06954587621223 + ] + ] + ], + [ + [ + [ + -157.70857708577086, + 21.26419011559541 + ], + [ + -157.7769777697777, + 21.277730584422073 + ], + [ + -158.12618126181263, + 21.313274315092045 + ], + [ + -158.2521825218252, + 21.538384609335196 + ], + [ + -158.29178291782918, + 21.579006015815168 + ], + [ + -158.02538025380255, + 21.71779582128839 + ], + [ + -157.94257942579426, + 21.653478594361772 + ], + [ + -157.65457654576545, + 21.321737108108707 + ], + [ + -157.70857708577086, + 21.26419011559541 + ] + ] + ], + [ + [ + [ + -159.46539465394653, + 21.883666564414924 + ], + [ + -159.80019800198002, + 22.064770334971456 + ], + [ + -159.74979749797498, + 22.137550354914737 + ], + [ + -159.5949959499595, + 22.23571875390799 + ], + [ + -159.36459364593645, + 22.215408050668003 + ], + [ + -159.34659346593466, + 21.98183496340819 + ], + [ + -159.46539465394653, + 21.883666564414924 + ] + ] + ], + [ + [ + [ + -67.13887138871388, + 45.137729215593424 + ], + [ + -66.9660696606966, + 44.80937284654701 + ], + [ + -68.03168031680316, + 44.325301085994056 + ], + [ + -69.06129061290612, + 43.98001913091434 + ], + [ + -70.1161011610116, + 43.683821375331235 + ], + [ + -70.64530645306452, + 43.08973330556171 + ], + [ + -70.81450814508145, + 42.86462301131854 + ], + [ + -70.82530825308253, + 42.33485216847562 + ], + [ + -70.4941049410494, + 41.8050813256327 + ], + [ + -70.080100801008, + 41.77969294658271 + ], + [ + -70.18450184501845, + 42.14528560490244 + ], + [ + -69.88569885698857, + 41.92356042786594 + ], + [ + -69.9648996489965, + 41.63751802390283 + ], + [ + -70.64170641706417, + 41.47503239798296 + ], + [ + -71.12051120511205, + 41.493650542619605 + ], + [ + -71.85851858518585, + 41.31931700647641 + ], + [ + -72.2941229412294, + 41.27023280697978 + ], + [ + -72.87732877328773, + 41.22114860748316 + ], + [ + -73.70893708937089, + 40.93172108631339 + ], + [ + -72.24012240122401, + 41.11959509128323 + ], + [ + -71.94491944919449, + 40.93002852771005 + ], + [ + -73.34533345333453, + 40.63044565492028 + ], + [ + -73.98253982539825, + 40.628753096316956 + ], + [ + -73.95373953739536, + 40.750617315756855 + ], + [ + -74.2561425614256, + 40.47303770481041 + ], + [ + -73.96093960939609, + 40.42733862252044 + ], + [ + -74.1769417694177, + 39.709693774707674 + ], + [ + -74.90774907749078, + 38.9395796101916 + ], + [ + -74.97974979749797, + 39.196848517898076 + ], + [ + -75.19935199351993, + 39.24762527599803 + ], + [ + -75.52695526955269, + 39.49812394929117 + ], + [ + -75.32175321753218, + 38.959890313431586 + ], + [ + -75.07335073350733, + 38.78217166008173 + ], + [ + -75.05535055350553, + 38.40473109153869 + ], + [ + -75.37575375753757, + 38.01544261277233 + ], + [ + -75.94095940959409, + 37.21655495199961 + ], + [ + -76.03096030960309, + 37.25717635847958 + ], + [ + -75.72135721357213, + 37.93758491701905 + ], + [ + -76.23256232562325, + 38.31841060276875 + ], + [ + -76.35136351363514, + 39.14945687700478 + ], + [ + -76.54216542165422, + 38.71785443315511 + ], + [ + -76.32976329763298, + 38.08314495690561 + ], + [ + -76.98856988569885, + 38.240552907015484 + ], + [ + -76.3009630096301, + 37.917274213779066 + ], + [ + -76.25776257762577, + 36.966056278706475 + ], + [ + -75.97335973359733, + 36.89666137596987 + ], + [ + -75.86895868958689, + 36.55137942089014 + ], + [ + -75.72855728557285, + 35.55107728632092 + ], + [ + -76.36216362163621, + 34.80804405945817 + ], + [ + -77.3989739897399, + 34.51184630387506 + ], + [ + -78.05418054180541, + 33.92622102712218 + ], + [ + -78.55458554585546, + 33.86190380019558 + ], + [ + -79.06219062190621, + 33.494618583272526 + ], + [ + -79.20259202592025, + 33.15779942120946 + ], + [ + -80.30060300603006, + 32.50954947613329 + ], + [ + -80.86580865808658, + 32.033940508597 + ], + [ + -81.33741337413373, + 31.439852438827458 + ], + [ + -81.49221492214922, + 30.730670384031356 + ], + [ + -81.31221312213121, + 30.035028798061887 + ], + [ + -80.9810098100981, + 29.180286703379224 + ], + [ + -80.53460534605345, + 28.472797207186446 + ], + [ + -80.5310053100531, + 28.039502204733452 + ], + [ + -80.05580055800557, + 26.88009956145102 + ], + [ + -80.08820088200882, + 26.206461237324888 + ], + [ + -80.13140131401313, + 25.817172758558527 + ], + [ + -80.37980379803798, + 25.206159102755663 + ], + [ + -80.67860678606786, + 25.079217207505764 + ], + [ + -81.17181171811718, + 25.201081426945677 + ], + [ + -81.33021330213302, + 25.639454105208657 + ], + [ + -81.70821708217082, + 25.869642075261808 + ], + [ + -82.2410224102241, + 26.72946184575447 + ], + [ + -82.70542705427054, + 27.494498334460545 + ], + [ + -82.85662856628566, + 27.885479371830243 + ], + [ + -82.65142651426514, + 28.550654902939726 + ], + [ + -82.92862928629286, + 29.10073644902262 + ], + [ + -83.70983709837098, + 29.936860399068635 + ], + [ + -84.09864098640986, + 30.08919067336852 + ], + [ + -85.11025110251101, + 29.63558496767554 + ], + [ + -85.28665286652866, + 29.686361725775498 + ], + [ + -85.77265772657726, + 30.1518153416918 + ], + [ + -86.3990639906399, + 30.400621456381614 + ], + [ + -87.52947529475294, + 30.2736795611317 + ], + [ + -88.41868418684186, + 30.385388428951615 + ], + [ + -89.18189181891819, + 30.31599352621501 + ], + [ + -89.59229592295922, + 30.160278134708463 + ], + [ + -89.41229412294122, + 29.89454643398534 + ], + [ + -89.43029430294303, + 29.488332369185656 + ], + [ + -89.21789217892179, + 29.290303012595814 + ], + [ + -89.40869408694087, + 29.15997600013924 + ], + [ + -89.77949779497794, + 29.307228598629123 + ], + [ + -90.1539015390154, + 29.117662035055943 + ], + [ + -90.88110881108811, + 29.148128089915915 + ], + [ + -91.62631626316262, + 29.676206374155512 + ], + [ + -92.49752497524975, + 29.552649596112275 + ], + [ + -93.22473224732246, + 29.78453012476875 + ], + [ + -93.84753847538475, + 29.713442663428808 + ], + [ + -94.68994689946899, + 29.479869576168994 + ], + [ + -95.60075600756008, + 28.73852890790957 + ], + [ + -96.59436594365944, + 28.306926464059913 + ], + [ + -97.14157141571415, + 27.829624937920286 + ], + [ + -97.36837368373683, + 27.37940434943397 + ], + [ + -97.37917379173791, + 26.69053299787784 + ], + [ + -97.32877328773287, + 26.20984635453155 + ], + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -117.29457294572946, + 33.04609055338955 + ], + [ + -117.94257942579426, + 33.621560478522426 + ], + [ + -118.41058410584105, + 33.741732139359 + ], + [ + -118.51858518585186, + 34.02777454332211 + ], + [ + -119.08019080190802, + 34.07855130142207 + ], + [ + -119.44019440194401, + 34.34766811935185 + ], + [ + -120.36900369003689, + 34.44752907694844 + ], + [ + -120.62460624606246, + 34.60832214426499 + ], + [ + -120.74340743407434, + 35.15671113174456 + ], + [ + -121.71541715417155, + 36.16209094212377 + ], + [ + -122.54702547025471, + 37.55168155545935 + ], + [ + -122.5110251102511, + 37.78356208411584 + ], + [ + -122.95382953829538, + 38.113611011765585 + ], + [ + -123.72783727837279, + 38.951427520414924 + ], + [ + -123.86463864638645, + 39.767240767220954 + ], + [ + -124.39744397443974, + 40.3139371960972 + ], + [ + -124.17784177841779, + 41.141598353126554 + ], + [ + -124.21384213842138, + 41.99972556501588 + ], + [ + -124.53424534245343, + 42.766454612325276 + ], + [ + -124.14184141841417, + 43.70920975438122 + ], + [ + -124.01944019440194, + 44.61642116576718 + ], + [ + -123.90063900639007, + 45.52363257715314 + ], + [ + -124.08064080640807, + 46.864138990992075 + ], + [ + -124.39744397443974, + 47.72057364427809 + ], + [ + -124.68544685446855, + 48.18433470159104 + ], + [ + -124.56664566645667, + 48.378978940974235 + ], + [ + -123.11943119431194, + 48.04046722030782 + ], + [ + -122.58662586625866, + 47.096019519648564 + ], + [ + -122.33822338223382, + 47.36005866176836 + ], + [ + -122.50022500225002, + 48.179257025781055 + ], + [ + -122.83862838628386, + 49.000147948397085 + ], + [ + -120.00180001800018, + 49.000147948397085 + ], + [ + -117.03177031770318, + 49.000147948397085 + ], + [ + -116.0489604896049, + 49.000147948397085 + ], + [ + -112.99972999729997, + 49.000147948397085 + ], + [ + -110.05130051300513, + 49.000147948397085 + ], + [ + -107.04887048870488, + 49.000147948397085 + ], + [ + -104.050040500405, + 49.000147948397085 + ], + [ + -100.65160651606516, + 49.000147948397085 + ], + [ + -97.22797227972279, + 49.000147948397085 + ], + [ + -95.1579515795158, + 49.000147948397085 + ], + [ + -95.15435154351543, + 49.38435875135343 + ], + [ + -94.8159481594816, + 49.389436427163446 + ], + [ + -94.63954639546395, + 48.83935488108054 + ], + [ + -94.329943299433, + 48.67009902074733 + ], + [ + -93.63153631536315, + 48.60916691102739 + ], + [ + -92.6091260912609, + 48.45006640231418 + ], + [ + -91.64071640716406, + 48.14032817790442 + ], + [ + -90.83070830708307, + 48.27065519036097 + ], + [ + -89.59949599495995, + 48.01000116544785 + ], + [ + -89.27189271892719, + 48.020156517067846 + ], + [ + -88.37908379083791, + 48.30281380382428 + ], + [ + -87.43947439474394, + 47.94060626271124 + ], + [ + -86.46026460264602, + 47.55301034254822 + ], + [ + -85.65385653856538, + 47.219576297691816 + ], + [ + -84.87624876248762, + 46.89968272166206 + ], + [ + -84.7790477904779, + 46.6373361381456 + ], + [ + -84.5450454504545, + 46.53916773915233 + ], + [ + -84.60624606246063, + 46.43930678155576 + ], + [ + -84.33624336243362, + 46.40884072669576 + ], + [ + -84.14184141841417, + 46.51208680149901 + ], + [ + -84.09144091440913, + 46.275128597032534 + ], + [ + -83.88983889838899, + 46.11772064692266 + ], + [ + -83.61623616236162, + 46.11772064692266 + ], + [ + -83.46863468634686, + 45.99416386887944 + ], + [ + -83.59463594635946, + 45.81644521552957 + ], + [ + -82.55062550625506, + 45.347606482406604 + ], + [ + -82.33822338223382, + 44.440395071020646 + ], + [ + -82.13662136621366, + 43.57041994890798 + ], + [ + -82.42822428224282, + 42.979716996345104 + ], + [ + -82.89982899828998, + 42.429635450262225 + ], + [ + -83.11943119431194, + 42.079275819372484 + ], + [ + -83.1410314103141, + 41.97602974456923 + ], + [ + -83.02943029430294, + 41.83216226328601 + ], + [ + -82.6910269102691, + 41.67475431317614 + ], + [ + -82.4390243902439, + 41.67475431317614 + ], + [ + -81.27621276212761, + 42.209602831829045 + ], + [ + -80.24660246602465, + 42.36701078193893 + ], + [ + -78.93978939789397, + 42.862930452715204 + ], + [ + -78.92178921789217, + 42.96448396891512 + ], + [ + -79.01179011790117, + 43.27083707611823 + ], + [ + -79.17019170191702, + 43.46717387410473 + ], + [ + -78.72018720187201, + 43.6245818242146 + ], + [ + -77.73737737377374, + 43.629659500024616 + ], + [ + -76.81936819368194, + 43.62796694142128 + ], + [ + -76.49896498964989, + 44.018947978790976 + ], + [ + -76.37656376563766, + 44.09680567454424 + ], + [ + -75.31815318153181, + 44.81614308096036 + ], + [ + -74.86814868148682, + 45.000631968723525 + ], + [ + -73.34893348933488, + 45.00740220313688 + ], + [ + -71.50571505715057, + 45.00740220313688 + ], + [ + -71.40491404914049, + 45.25451575922335 + ], + [ + -71.08451084510845, + 45.305292517323295 + ], + [ + -70.65970659706596, + 45.45931535022652 + ], + [ + -70.30330303303033, + 45.914613614522835 + ], + [ + -70.00090000900009, + 46.693190572055556 + ], + [ + -69.23769237692376, + 47.44807170914163 + ], + [ + -68.90648906489065, + 47.18572512562517 + ], + [ + -68.23328233282332, + 47.35498098595838 + ], + [ + -67.79047790477904, + 47.06555346478859 + ], + [ + -67.79047790477904, + 45.70304378910632 + ], + [ + -67.13887138871388, + 45.137729215593424 + ] + ] + ], + [ + [ + [ + -154.0041400414004, + 56.73514076562438 + ], + [ + -154.51534515345153, + 56.992409673330826 + ], + [ + -154.67014670146702, + 57.46124840645379 + ], + [ + -153.7629376293763, + 57.81668571315353 + ], + [ + -153.230132301323, + 57.96901598745342 + ], + [ + -152.5641256412564, + 57.90131364332012 + ], + [ + -152.14292142921428, + 57.59157541891037 + ], + [ + -153.0069300693007, + 57.11596645137408 + ], + [ + -154.0041400414004, + 56.73514076562438 + ] + ] + ], + [ + [ + [ + -166.1938619386194, + 59.75466531396867 + ], + [ + -166.8490684906849, + 59.940846760335205 + ], + [ + -167.4538745387454, + 60.213348695471666 + ], + [ + -166.46746467464675, + 60.384297114408184 + ], + [ + -165.67545675456753, + 60.29289894982827 + ], + [ + -165.57825578255782, + 59.910380705475234 + ], + [ + -166.1938619386194, + 59.75466531396867 + ] + ] + ], + [ + [ + [ + -169.5310953109531, + 62.97729689471282 + ], + [ + -170.29070290702907, + 63.193944395939326 + ], + [ + -170.67230672306724, + 63.375048166495844 + ], + [ + -171.55431554315544, + 63.31750117398255 + ], + [ + -171.79191791917918, + 63.405514221355816 + ], + [ + -171.73071730717308, + 63.78295478989887 + ], + [ + -171.1151111511115, + 63.59169566772235 + ], + [ + -170.49230492304923, + 63.6949417425256 + ], + [ + -169.68229682296823, + 63.4309026004058 + ], + [ + -168.68868688686888, + 63.29719047074258 + ], + [ + -168.77148771487714, + 63.18886672012934 + ], + [ + -169.5310953109531, + 62.97729689471282 + ] + ] + ], + [ + [ + [ + -140.98640986409865, + 69.7119875773709 + ], + [ + -140.99360993609935, + 66.00020656026379 + ], + [ + -140.9972099720997, + 60.30643941865492 + ], + [ + -140.01440014400146, + 60.277665922398256 + ], + [ + -139.03879038790387, + 60.00008631145181 + ], + [ + -138.34038340383404, + 59.561713633188816 + ], + [ + -137.4511745117451, + 58.90500089509601 + ], + [ + -136.47916479164792, + 59.46354523419558 + ], + [ + -135.47475474754748, + 59.78851648603532 + ], + [ + -134.94554945549456, + 59.27059355341572 + ], + [ + -134.27234272342724, + 58.86099437140936 + ], + [ + -133.35433354333543, + 58.41077378292306 + ], + [ + -132.73152731527315, + 57.69312893511028 + ], + [ + -131.70911709117092, + 56.55234443646452 + ], + [ + -130.00630006300062, + 55.91594240161169 + ], + [ + -129.9810998109981, + 55.28461804256884 + ], + [ + -130.53550535505354, + 54.802238840619225 + ], + [ + -131.08631086310862, + 55.17967940916225 + ], + [ + -131.96831968319682, + 55.497880426588665 + ], + [ + -132.2491224912249, + 56.36954810730467 + ], + [ + -133.5379353793538, + 57.17859111969736 + ], + [ + -134.07794077940778, + 58.12303882035661 + ], + [ + -135.0391503915039, + 58.18735604728323 + ], + [ + -136.62676626766267, + 58.21274442633322 + ], + [ + -137.80037800378005, + 58.50047938889966 + ], + [ + -139.86679866798667, + 59.53801781274217 + ], + [ + -140.82440824408243, + 59.72758437631538 + ], + [ + -142.5740257402574, + 60.08471424161843 + ], + [ + -143.960039600396, + 59.9983937528485 + ], + [ + -145.92565925659255, + 60.4587696929548 + ], + [ + -147.11367113671136, + 60.88529446099446 + ], + [ + -148.2260822608226, + 60.67372463557797 + ], + [ + -148.01728017280172, + 59.9780830496085 + ], + [ + -148.57168571685716, + 59.91376582268188 + ], + [ + -149.72729727297272, + 59.70558111447204 + ], + [ + -150.60930609306092, + 59.36876195240899 + ], + [ + -151.7181171811718, + 59.15549956838913 + ], + [ + -151.85851858518586, + 59.74450996234867 + ], + [ + -151.40851408514084, + 60.72619395228125 + ], + [ + -150.34650346503466, + 61.03423961808767 + ], + [ + -150.62010620106201, + 61.28473829138082 + ], + [ + -151.89451894518945, + 60.72788651088459 + ], + [ + -152.57852578525785, + 60.06101842117178 + ], + [ + -154.01854018540186, + 59.35014380777233 + ], + [ + -153.28773287732878, + 58.86437948861604 + ], + [ + -154.23094230942309, + 58.14673464080326 + ], + [ + -155.30735307353075, + 57.72698010717693 + ], + [ + -156.30816308163082, + 57.42231955857716 + ], + [ + -156.55656556565566, + 56.98056176310752 + ], + [ + -158.1189811898119, + 56.46433138909126 + ], + [ + -158.4321843218432, + 55.993800097364954 + ], + [ + -159.60219602196022, + 55.56727532932527 + ], + [ + -160.289802898029, + 55.64344046647523 + ], + [ + -161.2222122221222, + 55.36416829692544 + ], + [ + -162.23742237422374, + 55.023964017655715 + ], + [ + -163.0690306903069, + 54.69052997279931 + ], + [ + -164.78624786247863, + 54.4044875688362 + ], + [ + -164.94104941049412, + 54.57205087056607 + ], + [ + -163.84663846638466, + 55.0391970450857 + ], + [ + -162.8710287102871, + 55.34724271089212 + ], + [ + -161.80541805418054, + 55.89563169837169 + ], + [ + -160.56340563405635, + 56.0073405661916 + ], + [ + -160.070200702007, + 56.41863230680127 + ], + [ + -158.6841868418684, + 57.016105493777474 + ], + [ + -158.4609846098461, + 57.21751996757399 + ], + [ + -157.7229772297723, + 57.56957215706706 + ], + [ + -157.550175501755, + 58.32783841135978 + ], + [ + -157.04257042570424, + 58.91854136392266 + ], + [ + -158.19458194581946, + 58.615573373926225 + ], + [ + -158.51858518585186, + 58.78821435146611 + ], + [ + -159.05859058590585, + 58.424314251749706 + ], + [ + -159.710197101971, + 58.93208183274933 + ], + [ + -159.98019980199803, + 58.573259408842944 + ], + [ + -160.35460354603546, + 59.07087163822254 + ], + [ + -161.35541355413554, + 58.67142780783618 + ], + [ + -161.96741967419675, + 58.67142780783618 + ], + [ + -162.05382053820537, + 59.267208436209046 + ], + [ + -161.87381873818737, + 59.63280109452876 + ], + [ + -162.51822518225183, + 59.98993095983184 + ], + [ + -163.81783817838178, + 59.79867183765532 + ], + [ + -164.6638466384664, + 60.267510570778285 + ], + [ + -165.34785347853477, + 60.507853892451436 + ], + [ + -165.35145351453514, + 61.0731684659643 + ], + [ + -166.1218612186122, + 61.499693234003985 + ], + [ + -165.7330573305733, + 62.07516315913688 + ], + [ + -164.91944919449193, + 62.63370749823642 + ], + [ + -164.56304563045632, + 63.14655275504603 + ], + [ + -163.7530375303753, + 63.21933277498931 + ], + [ + -163.06543065430654, + 63.0602322662761 + ], + [ + -162.2590225902259, + 63.542611468225715 + ], + [ + -161.53541535415354, + 63.45629097945579 + ], + [ + -160.7722077220772, + 63.76602920386554 + ], + [ + -160.95940959409594, + 64.2230200267652 + ], + [ + -161.51741517415175, + 64.40243123871838 + ], + [ + -160.77940779407794, + 64.78833460027809 + ], + [ + -161.39141391413915, + 64.77648669005475 + ], + [ + -162.45342453424536, + 64.55983918882825 + ], + [ + -162.75942759427593, + 64.33811401179176 + ], + [ + -163.54783547835478, + 64.55983918882825 + ], + [ + -164.9590495904959, + 64.44643776240503 + ], + [ + -166.42426424264244, + 64.68678108407815 + ], + [ + -166.84546845468455, + 65.08961003167119 + ], + [ + -168.10908109081092, + 65.67015763261406 + ], + [ + -166.7050670506705, + 66.08821960763706 + ], + [ + -164.4730447304473, + 66.57736904400002 + ], + [ + -163.65223652236523, + 66.57736904400002 + ], + [ + -163.7890378903789, + 66.07637169741375 + ], + [ + -161.67941679416793, + 66.11530054529038 + ], + [ + -162.48942489424894, + 66.7347769941099 + ], + [ + -163.72063720637206, + 67.11560267985959 + ], + [ + -164.429844298443, + 67.61660002644587 + ], + [ + -165.3910539105391, + 68.04312479448555 + ], + [ + -166.76266762667626, + 68.35963325330863 + ], + [ + -166.20466204662046, + 68.88263386173821 + ], + [ + -164.429844298443, + 68.91479247520152 + ], + [ + -163.16983169831698, + 69.37178329810118 + ], + [ + -162.9322293222932, + 69.85754761725744 + ], + [ + -161.90981909819098, + 70.33315658479376 + ], + [ + -160.93420934209342, + 70.44825056982032 + ], + [ + -159.04059040590406, + 70.89170092389332 + ], + [ + -158.1189811898119, + 70.82399857976003 + ], + [ + -156.58176581765818, + 71.35715453980961 + ], + [ + -155.0661506615066, + 71.14727727299643 + ], + [ + -154.34254342543426, + 70.69705668451013 + ], + [ + -153.89973899739, + 70.89000836528999 + ], + [ + -152.21132211322114, + 70.83076881417335 + ], + [ + -152.26892268922688, + 70.6005808441202 + ], + [ + -150.7389073890739, + 70.42963242518368 + ], + [ + -149.72009720097202, + 70.52949338278026 + ], + [ + -147.6140761407614, + 70.21467748256052 + ], + [ + -145.69165691656917, + 70.11989420077393 + ], + [ + -144.9212492124921, + 69.98956718831735 + ], + [ + -143.58923589235891, + 70.15205281423721 + ], + [ + -142.07362073620737, + 69.85246994144745 + ], + [ + -140.98640986409865, + 69.7119875773709 + ] + ] + ] + ] + }, + "countryRef": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1964, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 20338, + "child_mortality": 109555, + "fertility": 3.22, + "life_expect": 70.1364, + "population": 160840616 + }, + "x": 3.22, + "y": 70.1364, + "size": 160840616, + "color": "America", + "map_id": 840 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1964, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 20338, + "child_mortality": 109555, + "fertility": 3.22, + "life_expect": 70.1364, + "population": 160840616 + }, + "x": 3.22, + "y": 70.1364, + "size": 160840616, + "color": "America", + "map_id": 840 + }, + "currentYear": 1964, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.41083443706940814, + "skewed": 0.23990265805654865, + "clumpy": 0.18920358976614726, + "sparse": 0.05447950963788495, + "striated": 0.41449514422150857, + "convex": 0.235905161685247, + "skinny": 0.10501905929453415, + "stringy": 0.19562103663676012, + "monotonic": 0.9213004183156959, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1964, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 20338, + "child_mortality": 109555, + "fertility": 3.22, + "life_expect": 70.1364, + "population": 160840616 + }, + "x": 3.22, + "y": 70.1364, + "size": 160840616, + "color": "America", + "map_id": 840 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -95.11099399171665, + -87.61015347338385 + ], + "drag": [ + -95.11099399171665, + -87.61015347338385 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 126 + }, + { + "attrs": { + "name": "Selected United States (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1964\",\"payload\":{\"numVal\":1964},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"fertility\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.41\",\"payload\":{\"numVal\":0.41083443706940814},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.24\",\"payload\":{\"numVal\":0.23990265805654865},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.19\",\"payload\":{\"numVal\":0.18920358976614726},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.05\",\"payload\":{\"numVal\":0.05447950963788495},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.41\",\"payload\":{\"numVal\":0.41449514422150857},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.24\",\"payload\":{\"numVal\":0.235905161685247},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.11\",\"payload\":{\"numVal\":0.10501905929453415},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.2\",\"payload\":{\"numVal\":0.19562103663676012},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.92\",\"payload\":{\"numVal\":0.9213004183156959},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 127 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United States (1 Countries)", + "timestamp": 1522410376192, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1964, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7200448394002443, + "skewed": 0.18555069278325398, + "clumpy": 0.8289257371044192, + "sparse": 0.5894470676941548, + "striated": 0.24337057885488078, + "convex": 0.4173247678608616, + "skinny": 0.9854074311780179, + "stringy": 0.08613463457174042, + "monotonic": 0.4026601026239065, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 128 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Vietnam (2 Countries)", + "timestamp": 1522410382449, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 704, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 108.04968049680497, + 21.551925078161858 + ], + [ + 106.71406714067143, + 20.697182983479195 + ], + [ + 105.88245882458824, + 19.752735282819927 + ], + [ + 105.66285662856632, + 19.058786255453796 + ], + [ + 106.42606426064259, + 18.004322245577953 + ], + [ + 107.36207362073623, + 16.69766700380565 + ], + [ + 108.26928269282695, + 16.07988311358946 + ], + [ + 108.8776887768878, + 15.275917777006754 + ], + [ + 109.33489334893352, + 13.425951223564866 + ], + [ + 109.20169201692016, + 11.667382834702906 + ], + [ + 108.36648366483666, + 11.00897753800676 + ], + [ + 107.2216722167222, + 10.364112710137263 + ], + [ + 106.40446404464046, + 9.53137387729791 + ], + [ + 105.15885158851592, + 8.600466645465303 + ], + [ + 104.79524795247954, + 9.240253797524801 + ], + [ + 105.0760507605076, + 9.918969797460946 + ], + [ + 104.33444334443345, + 10.485976929577163 + ], + [ + 105.19845198451986, + 10.888805877170185 + ], + [ + 106.24966249662498, + 10.961585897113466 + ], + [ + 105.81045810458107, + 11.567521877106316 + ], + [ + 107.49167491674916, + 12.337636041622389 + ], + [ + 107.61407614076143, + 13.535967532781456 + ], + [ + 107.38367383673835, + 14.202835622494263 + ], + [ + 107.56367563675639, + 15.20144519846015 + ], + [ + 107.31167311673119, + 15.908934694652928 + ], + [ + 106.55566555665558, + 16.604576280622382 + ], + [ + 105.92565925659255, + 17.48470675435503 + ], + [ + 105.09405094050942, + 18.667805218084112 + ], + [ + 103.89523895238955, + 19.2652784050603 + ], + [ + 104.18324183241833, + 19.62410082896669 + ], + [ + 104.8240482404824, + 19.88644741248315 + ], + [ + 104.43524435244353, + 20.758115093199137 + ], + [ + 103.20403204032039, + 20.7665778862158 + ], + [ + 102.75402754027539, + 21.675481856205096 + ], + [ + 102.17082170821709, + 22.464214165357802 + ], + [ + 102.70722707227071, + 22.709635162840954 + ], + [ + 103.50283502835032, + 22.704557487030954 + ], + [ + 104.47844478444784, + 22.81965147205753 + ], + [ + 105.3280532805328, + 23.352807432107113 + ], + [ + 105.81045810458107, + 22.977059422167414 + ], + [ + 106.72486724867252, + 22.794263093007544 + ], + [ + 106.56646566465668, + 22.218793167874665 + ], + [ + 107.04167041670416, + 21.81257910307498 + ], + [ + 108.04968049680497, + 21.551925078161858 + ] + ] + ] + }, + "countryRef": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 1964, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1285, + "child_mortality": 133715, + "fertility": 6.46, + "life_expect": 59.32128, + "population": 25609407 + }, + "x": 6.46, + "y": 59.32128, + "size": 25609407, + "color": "Asia", + "map_id": 704 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 1964, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1285, + "child_mortality": 133715, + "fertility": 6.46, + "life_expect": 59.32128, + "population": 25609407 + }, + "x": 6.46, + "y": 59.32128, + "size": 25609407, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 1964, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8379886159738257, + "skewed": 0.10020373223537504, + "clumpy": 0.29519877324868427, + "sparse": 0.9536494591962068, + "striated": 0.6243557941758449, + "convex": 0.4587863523571625, + "skinny": 0.20439084334630153, + "stringy": 0.8340401337250605, + "monotonic": 0.9604178136969028, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1964, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 20338, + "child_mortality": 109555, + "fertility": 3.22, + "life_expect": 70.1364, + "population": 160840616 + }, + "x": 3.22, + "y": 70.1364, + "size": 160840616, + "color": "America", + "map_id": 840 + }, + { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 1964, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1285, + "child_mortality": 133715, + "fertility": 6.46, + "life_expect": 59.32128, + "population": 25609407 + }, + "x": 6.46, + "y": 59.32128, + "size": 25609407, + "color": "Asia", + "map_id": 704 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 106.57014989433313, + -88.53578432981698 + ], + "drag": [ + 106.57014989433313, + -88.53578432981698 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 129 + }, + { + "attrs": { + "name": "Selected Vietnam (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1964\",\"payload\":{\"numVal\":1964},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"fertility\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.84\",\"payload\":{\"numVal\":0.8379886159738257},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.1\",\"payload\":{\"numVal\":0.10020373223537504},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.3\",\"payload\":{\"numVal\":0.29519877324868427},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.95\",\"payload\":{\"numVal\":0.9536494591962068},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.62\",\"payload\":{\"numVal\":0.6243557941758449},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.46\",\"payload\":{\"numVal\":0.4587863523571625},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.2\",\"payload\":{\"numVal\":0.20439084334630153},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.83\",\"payload\":{\"numVal\":0.8340401337250605},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.96\",\"payload\":{\"numVal\":0.9604178136969028},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Vietnam\",\"text\":\"Vietnam\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 130 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Vietnam (2 Countries)", + "timestamp": 1522410382449, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 840, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -155.68895688956889, + 18.91661133277391 + ], + [ + -155.93735937359372, + 19.058786255453796 + ], + [ + -155.90855908559087, + 19.33805842500358 + ], + [ + -156.07416074160741, + 19.703651083323294 + ], + [ + -156.02376023760237, + 19.813667392539884 + ], + [ + -155.8509585095851, + 19.97784557706308 + ], + [ + -155.91935919359193, + 20.174182375049597 + ], + [ + -155.8617586175862, + 20.267273098232863 + ], + [ + -155.7861578615786, + 20.2486549535962 + ], + [ + -155.4009540095401, + 20.079399093263007 + ], + [ + -155.22455224552246, + 19.99307860449308 + ], + [ + -155.06255062550625, + 19.85936647482984 + ], + [ + -154.80694806948068, + 19.509006843940114 + ], + [ + -154.8321483214832, + 19.453152410030157 + ], + [ + -155.2209522095221, + 19.23989002601033 + ], + [ + -155.54135541355413, + 19.084174634503782 + ], + [ + -155.68895688956889, + 18.91661133277391 + ] + ] + ], + [ + [ + [ + -156.4161641616416, + 20.57193364683262 + ], + [ + -156.58536585365854, + 20.783503472249123 + ], + [ + -156.70056700567005, + 20.86474628520905 + ], + [ + -156.71136711367114, + 20.927370953532346 + ], + [ + -156.61416614166143, + 21.011998883698936 + ], + [ + -156.25776257762578, + 20.917215601912346 + ], + [ + -155.9949599495995, + 20.764885327612475 + ], + [ + -156.07776077760778, + 20.6447136667759 + ], + [ + -156.4161641616416, + 20.57193364683262 + ] + ] + ], + [ + [ + [ + -156.79056790567904, + 21.06954587621223 + ], + [ + -157.3269732697327, + 21.09831937246888 + ], + [ + -157.25137251372513, + 21.22018359190878 + ], + [ + -156.75816758167582, + 21.176177068222145 + ], + [ + -156.79056790567904, + 21.06954587621223 + ] + ] + ], + [ + [ + [ + -157.70857708577086, + 21.26419011559541 + ], + [ + -157.7769777697777, + 21.277730584422073 + ], + [ + -158.12618126181263, + 21.313274315092045 + ], + [ + -158.2521825218252, + 21.538384609335196 + ], + [ + -158.29178291782918, + 21.579006015815168 + ], + [ + -158.02538025380255, + 21.71779582128839 + ], + [ + -157.94257942579426, + 21.653478594361772 + ], + [ + -157.65457654576545, + 21.321737108108707 + ], + [ + -157.70857708577086, + 21.26419011559541 + ] + ] + ], + [ + [ + [ + -159.46539465394653, + 21.883666564414924 + ], + [ + -159.80019800198002, + 22.064770334971456 + ], + [ + -159.74979749797498, + 22.137550354914737 + ], + [ + -159.5949959499595, + 22.23571875390799 + ], + [ + -159.36459364593645, + 22.215408050668003 + ], + [ + -159.34659346593466, + 21.98183496340819 + ], + [ + -159.46539465394653, + 21.883666564414924 + ] + ] + ], + [ + [ + [ + -67.13887138871388, + 45.137729215593424 + ], + [ + -66.9660696606966, + 44.80937284654701 + ], + [ + -68.03168031680316, + 44.325301085994056 + ], + [ + -69.06129061290612, + 43.98001913091434 + ], + [ + -70.1161011610116, + 43.683821375331235 + ], + [ + -70.64530645306452, + 43.08973330556171 + ], + [ + -70.81450814508145, + 42.86462301131854 + ], + [ + -70.82530825308253, + 42.33485216847562 + ], + [ + -70.4941049410494, + 41.8050813256327 + ], + [ + -70.080100801008, + 41.77969294658271 + ], + [ + -70.18450184501845, + 42.14528560490244 + ], + [ + -69.88569885698857, + 41.92356042786594 + ], + [ + -69.9648996489965, + 41.63751802390283 + ], + [ + -70.64170641706417, + 41.47503239798296 + ], + [ + -71.12051120511205, + 41.493650542619605 + ], + [ + -71.85851858518585, + 41.31931700647641 + ], + [ + -72.2941229412294, + 41.27023280697978 + ], + [ + -72.87732877328773, + 41.22114860748316 + ], + [ + -73.70893708937089, + 40.93172108631339 + ], + [ + -72.24012240122401, + 41.11959509128323 + ], + [ + -71.94491944919449, + 40.93002852771005 + ], + [ + -73.34533345333453, + 40.63044565492028 + ], + [ + -73.98253982539825, + 40.628753096316956 + ], + [ + -73.95373953739536, + 40.750617315756855 + ], + [ + -74.2561425614256, + 40.47303770481041 + ], + [ + -73.96093960939609, + 40.42733862252044 + ], + [ + -74.1769417694177, + 39.709693774707674 + ], + [ + -74.90774907749078, + 38.9395796101916 + ], + [ + -74.97974979749797, + 39.196848517898076 + ], + [ + -75.19935199351993, + 39.24762527599803 + ], + [ + -75.52695526955269, + 39.49812394929117 + ], + [ + -75.32175321753218, + 38.959890313431586 + ], + [ + -75.07335073350733, + 38.78217166008173 + ], + [ + -75.05535055350553, + 38.40473109153869 + ], + [ + -75.37575375753757, + 38.01544261277233 + ], + [ + -75.94095940959409, + 37.21655495199961 + ], + [ + -76.03096030960309, + 37.25717635847958 + ], + [ + -75.72135721357213, + 37.93758491701905 + ], + [ + -76.23256232562325, + 38.31841060276875 + ], + [ + -76.35136351363514, + 39.14945687700478 + ], + [ + -76.54216542165422, + 38.71785443315511 + ], + [ + -76.32976329763298, + 38.08314495690561 + ], + [ + -76.98856988569885, + 38.240552907015484 + ], + [ + -76.3009630096301, + 37.917274213779066 + ], + [ + -76.25776257762577, + 36.966056278706475 + ], + [ + -75.97335973359733, + 36.89666137596987 + ], + [ + -75.86895868958689, + 36.55137942089014 + ], + [ + -75.72855728557285, + 35.55107728632092 + ], + [ + -76.36216362163621, + 34.80804405945817 + ], + [ + -77.3989739897399, + 34.51184630387506 + ], + [ + -78.05418054180541, + 33.92622102712218 + ], + [ + -78.55458554585546, + 33.86190380019558 + ], + [ + -79.06219062190621, + 33.494618583272526 + ], + [ + -79.20259202592025, + 33.15779942120946 + ], + [ + -80.30060300603006, + 32.50954947613329 + ], + [ + -80.86580865808658, + 32.033940508597 + ], + [ + -81.33741337413373, + 31.439852438827458 + ], + [ + -81.49221492214922, + 30.730670384031356 + ], + [ + -81.31221312213121, + 30.035028798061887 + ], + [ + -80.9810098100981, + 29.180286703379224 + ], + [ + -80.53460534605345, + 28.472797207186446 + ], + [ + -80.5310053100531, + 28.039502204733452 + ], + [ + -80.05580055800557, + 26.88009956145102 + ], + [ + -80.08820088200882, + 26.206461237324888 + ], + [ + -80.13140131401313, + 25.817172758558527 + ], + [ + -80.37980379803798, + 25.206159102755663 + ], + [ + -80.67860678606786, + 25.079217207505764 + ], + [ + -81.17181171811718, + 25.201081426945677 + ], + [ + -81.33021330213302, + 25.639454105208657 + ], + [ + -81.70821708217082, + 25.869642075261808 + ], + [ + -82.2410224102241, + 26.72946184575447 + ], + [ + -82.70542705427054, + 27.494498334460545 + ], + [ + -82.85662856628566, + 27.885479371830243 + ], + [ + -82.65142651426514, + 28.550654902939726 + ], + [ + -82.92862928629286, + 29.10073644902262 + ], + [ + -83.70983709837098, + 29.936860399068635 + ], + [ + -84.09864098640986, + 30.08919067336852 + ], + [ + -85.11025110251101, + 29.63558496767554 + ], + [ + -85.28665286652866, + 29.686361725775498 + ], + [ + -85.77265772657726, + 30.1518153416918 + ], + [ + -86.3990639906399, + 30.400621456381614 + ], + [ + -87.52947529475294, + 30.2736795611317 + ], + [ + -88.41868418684186, + 30.385388428951615 + ], + [ + -89.18189181891819, + 30.31599352621501 + ], + [ + -89.59229592295922, + 30.160278134708463 + ], + [ + -89.41229412294122, + 29.89454643398534 + ], + [ + -89.43029430294303, + 29.488332369185656 + ], + [ + -89.21789217892179, + 29.290303012595814 + ], + [ + -89.40869408694087, + 29.15997600013924 + ], + [ + -89.77949779497794, + 29.307228598629123 + ], + [ + -90.1539015390154, + 29.117662035055943 + ], + [ + -90.88110881108811, + 29.148128089915915 + ], + [ + -91.62631626316262, + 29.676206374155512 + ], + [ + -92.49752497524975, + 29.552649596112275 + ], + [ + -93.22473224732246, + 29.78453012476875 + ], + [ + -93.84753847538475, + 29.713442663428808 + ], + [ + -94.68994689946899, + 29.479869576168994 + ], + [ + -95.60075600756008, + 28.73852890790957 + ], + [ + -96.59436594365944, + 28.306926464059913 + ], + [ + -97.14157141571415, + 27.829624937920286 + ], + [ + -97.36837368373683, + 27.37940434943397 + ], + [ + -97.37917379173791, + 26.69053299787784 + ], + [ + -97.32877328773287, + 26.20984635453155 + ], + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -117.29457294572946, + 33.04609055338955 + ], + [ + -117.94257942579426, + 33.621560478522426 + ], + [ + -118.41058410584105, + 33.741732139359 + ], + [ + -118.51858518585186, + 34.02777454332211 + ], + [ + -119.08019080190802, + 34.07855130142207 + ], + [ + -119.44019440194401, + 34.34766811935185 + ], + [ + -120.36900369003689, + 34.44752907694844 + ], + [ + -120.62460624606246, + 34.60832214426499 + ], + [ + -120.74340743407434, + 35.15671113174456 + ], + [ + -121.71541715417155, + 36.16209094212377 + ], + [ + -122.54702547025471, + 37.55168155545935 + ], + [ + -122.5110251102511, + 37.78356208411584 + ], + [ + -122.95382953829538, + 38.113611011765585 + ], + [ + -123.72783727837279, + 38.951427520414924 + ], + [ + -123.86463864638645, + 39.767240767220954 + ], + [ + -124.39744397443974, + 40.3139371960972 + ], + [ + -124.17784177841779, + 41.141598353126554 + ], + [ + -124.21384213842138, + 41.99972556501588 + ], + [ + -124.53424534245343, + 42.766454612325276 + ], + [ + -124.14184141841417, + 43.70920975438122 + ], + [ + -124.01944019440194, + 44.61642116576718 + ], + [ + -123.90063900639007, + 45.52363257715314 + ], + [ + -124.08064080640807, + 46.864138990992075 + ], + [ + -124.39744397443974, + 47.72057364427809 + ], + [ + -124.68544685446855, + 48.18433470159104 + ], + [ + -124.56664566645667, + 48.378978940974235 + ], + [ + -123.11943119431194, + 48.04046722030782 + ], + [ + -122.58662586625866, + 47.096019519648564 + ], + [ + -122.33822338223382, + 47.36005866176836 + ], + [ + -122.50022500225002, + 48.179257025781055 + ], + [ + -122.83862838628386, + 49.000147948397085 + ], + [ + -120.00180001800018, + 49.000147948397085 + ], + [ + -117.03177031770318, + 49.000147948397085 + ], + [ + -116.0489604896049, + 49.000147948397085 + ], + [ + -112.99972999729997, + 49.000147948397085 + ], + [ + -110.05130051300513, + 49.000147948397085 + ], + [ + -107.04887048870488, + 49.000147948397085 + ], + [ + -104.050040500405, + 49.000147948397085 + ], + [ + -100.65160651606516, + 49.000147948397085 + ], + [ + -97.22797227972279, + 49.000147948397085 + ], + [ + -95.1579515795158, + 49.000147948397085 + ], + [ + -95.15435154351543, + 49.38435875135343 + ], + [ + -94.8159481594816, + 49.389436427163446 + ], + [ + -94.63954639546395, + 48.83935488108054 + ], + [ + -94.329943299433, + 48.67009902074733 + ], + [ + -93.63153631536315, + 48.60916691102739 + ], + [ + -92.6091260912609, + 48.45006640231418 + ], + [ + -91.64071640716406, + 48.14032817790442 + ], + [ + -90.83070830708307, + 48.27065519036097 + ], + [ + -89.59949599495995, + 48.01000116544785 + ], + [ + -89.27189271892719, + 48.020156517067846 + ], + [ + -88.37908379083791, + 48.30281380382428 + ], + [ + -87.43947439474394, + 47.94060626271124 + ], + [ + -86.46026460264602, + 47.55301034254822 + ], + [ + -85.65385653856538, + 47.219576297691816 + ], + [ + -84.87624876248762, + 46.89968272166206 + ], + [ + -84.7790477904779, + 46.6373361381456 + ], + [ + -84.5450454504545, + 46.53916773915233 + ], + [ + -84.60624606246063, + 46.43930678155576 + ], + [ + -84.33624336243362, + 46.40884072669576 + ], + [ + -84.14184141841417, + 46.51208680149901 + ], + [ + -84.09144091440913, + 46.275128597032534 + ], + [ + -83.88983889838899, + 46.11772064692266 + ], + [ + -83.61623616236162, + 46.11772064692266 + ], + [ + -83.46863468634686, + 45.99416386887944 + ], + [ + -83.59463594635946, + 45.81644521552957 + ], + [ + -82.55062550625506, + 45.347606482406604 + ], + [ + -82.33822338223382, + 44.440395071020646 + ], + [ + -82.13662136621366, + 43.57041994890798 + ], + [ + -82.42822428224282, + 42.979716996345104 + ], + [ + -82.89982899828998, + 42.429635450262225 + ], + [ + -83.11943119431194, + 42.079275819372484 + ], + [ + -83.1410314103141, + 41.97602974456923 + ], + [ + -83.02943029430294, + 41.83216226328601 + ], + [ + -82.6910269102691, + 41.67475431317614 + ], + [ + -82.4390243902439, + 41.67475431317614 + ], + [ + -81.27621276212761, + 42.209602831829045 + ], + [ + -80.24660246602465, + 42.36701078193893 + ], + [ + -78.93978939789397, + 42.862930452715204 + ], + [ + -78.92178921789217, + 42.96448396891512 + ], + [ + -79.01179011790117, + 43.27083707611823 + ], + [ + -79.17019170191702, + 43.46717387410473 + ], + [ + -78.72018720187201, + 43.6245818242146 + ], + [ + -77.73737737377374, + 43.629659500024616 + ], + [ + -76.81936819368194, + 43.62796694142128 + ], + [ + -76.49896498964989, + 44.018947978790976 + ], + [ + -76.37656376563766, + 44.09680567454424 + ], + [ + -75.31815318153181, + 44.81614308096036 + ], + [ + -74.86814868148682, + 45.000631968723525 + ], + [ + -73.34893348933488, + 45.00740220313688 + ], + [ + -71.50571505715057, + 45.00740220313688 + ], + [ + -71.40491404914049, + 45.25451575922335 + ], + [ + -71.08451084510845, + 45.305292517323295 + ], + [ + -70.65970659706596, + 45.45931535022652 + ], + [ + -70.30330303303033, + 45.914613614522835 + ], + [ + -70.00090000900009, + 46.693190572055556 + ], + [ + -69.23769237692376, + 47.44807170914163 + ], + [ + -68.90648906489065, + 47.18572512562517 + ], + [ + -68.23328233282332, + 47.35498098595838 + ], + [ + -67.79047790477904, + 47.06555346478859 + ], + [ + -67.79047790477904, + 45.70304378910632 + ], + [ + -67.13887138871388, + 45.137729215593424 + ] + ] + ], + [ + [ + [ + -154.0041400414004, + 56.73514076562438 + ], + [ + -154.51534515345153, + 56.992409673330826 + ], + [ + -154.67014670146702, + 57.46124840645379 + ], + [ + -153.7629376293763, + 57.81668571315353 + ], + [ + -153.230132301323, + 57.96901598745342 + ], + [ + -152.5641256412564, + 57.90131364332012 + ], + [ + -152.14292142921428, + 57.59157541891037 + ], + [ + -153.0069300693007, + 57.11596645137408 + ], + [ + -154.0041400414004, + 56.73514076562438 + ] + ] + ], + [ + [ + [ + -166.1938619386194, + 59.75466531396867 + ], + [ + -166.8490684906849, + 59.940846760335205 + ], + [ + -167.4538745387454, + 60.213348695471666 + ], + [ + -166.46746467464675, + 60.384297114408184 + ], + [ + -165.67545675456753, + 60.29289894982827 + ], + [ + -165.57825578255782, + 59.910380705475234 + ], + [ + -166.1938619386194, + 59.75466531396867 + ] + ] + ], + [ + [ + [ + -169.5310953109531, + 62.97729689471282 + ], + [ + -170.29070290702907, + 63.193944395939326 + ], + [ + -170.67230672306724, + 63.375048166495844 + ], + [ + -171.55431554315544, + 63.31750117398255 + ], + [ + -171.79191791917918, + 63.405514221355816 + ], + [ + -171.73071730717308, + 63.78295478989887 + ], + [ + -171.1151111511115, + 63.59169566772235 + ], + [ + -170.49230492304923, + 63.6949417425256 + ], + [ + -169.68229682296823, + 63.4309026004058 + ], + [ + -168.68868688686888, + 63.29719047074258 + ], + [ + -168.77148771487714, + 63.18886672012934 + ], + [ + -169.5310953109531, + 62.97729689471282 + ] + ] + ], + [ + [ + [ + -140.98640986409865, + 69.7119875773709 + ], + [ + -140.99360993609935, + 66.00020656026379 + ], + [ + -140.9972099720997, + 60.30643941865492 + ], + [ + -140.01440014400146, + 60.277665922398256 + ], + [ + -139.03879038790387, + 60.00008631145181 + ], + [ + -138.34038340383404, + 59.561713633188816 + ], + [ + -137.4511745117451, + 58.90500089509601 + ], + [ + -136.47916479164792, + 59.46354523419558 + ], + [ + -135.47475474754748, + 59.78851648603532 + ], + [ + -134.94554945549456, + 59.27059355341572 + ], + [ + -134.27234272342724, + 58.86099437140936 + ], + [ + -133.35433354333543, + 58.41077378292306 + ], + [ + -132.73152731527315, + 57.69312893511028 + ], + [ + -131.70911709117092, + 56.55234443646452 + ], + [ + -130.00630006300062, + 55.91594240161169 + ], + [ + -129.9810998109981, + 55.28461804256884 + ], + [ + -130.53550535505354, + 54.802238840619225 + ], + [ + -131.08631086310862, + 55.17967940916225 + ], + [ + -131.96831968319682, + 55.497880426588665 + ], + [ + -132.2491224912249, + 56.36954810730467 + ], + [ + -133.5379353793538, + 57.17859111969736 + ], + [ + -134.07794077940778, + 58.12303882035661 + ], + [ + -135.0391503915039, + 58.18735604728323 + ], + [ + -136.62676626766267, + 58.21274442633322 + ], + [ + -137.80037800378005, + 58.50047938889966 + ], + [ + -139.86679866798667, + 59.53801781274217 + ], + [ + -140.82440824408243, + 59.72758437631538 + ], + [ + -142.5740257402574, + 60.08471424161843 + ], + [ + -143.960039600396, + 59.9983937528485 + ], + [ + -145.92565925659255, + 60.4587696929548 + ], + [ + -147.11367113671136, + 60.88529446099446 + ], + [ + -148.2260822608226, + 60.67372463557797 + ], + [ + -148.01728017280172, + 59.9780830496085 + ], + [ + -148.57168571685716, + 59.91376582268188 + ], + [ + -149.72729727297272, + 59.70558111447204 + ], + [ + -150.60930609306092, + 59.36876195240899 + ], + [ + -151.7181171811718, + 59.15549956838913 + ], + [ + -151.85851858518586, + 59.74450996234867 + ], + [ + -151.40851408514084, + 60.72619395228125 + ], + [ + -150.34650346503466, + 61.03423961808767 + ], + [ + -150.62010620106201, + 61.28473829138082 + ], + [ + -151.89451894518945, + 60.72788651088459 + ], + [ + -152.57852578525785, + 60.06101842117178 + ], + [ + -154.01854018540186, + 59.35014380777233 + ], + [ + -153.28773287732878, + 58.86437948861604 + ], + [ + -154.23094230942309, + 58.14673464080326 + ], + [ + -155.30735307353075, + 57.72698010717693 + ], + [ + -156.30816308163082, + 57.42231955857716 + ], + [ + -156.55656556565566, + 56.98056176310752 + ], + [ + -158.1189811898119, + 56.46433138909126 + ], + [ + -158.4321843218432, + 55.993800097364954 + ], + [ + -159.60219602196022, + 55.56727532932527 + ], + [ + -160.289802898029, + 55.64344046647523 + ], + [ + -161.2222122221222, + 55.36416829692544 + ], + [ + -162.23742237422374, + 55.023964017655715 + ], + [ + -163.0690306903069, + 54.69052997279931 + ], + [ + -164.78624786247863, + 54.4044875688362 + ], + [ + -164.94104941049412, + 54.57205087056607 + ], + [ + -163.84663846638466, + 55.0391970450857 + ], + [ + -162.8710287102871, + 55.34724271089212 + ], + [ + -161.80541805418054, + 55.89563169837169 + ], + [ + -160.56340563405635, + 56.0073405661916 + ], + [ + -160.070200702007, + 56.41863230680127 + ], + [ + -158.6841868418684, + 57.016105493777474 + ], + [ + -158.4609846098461, + 57.21751996757399 + ], + [ + -157.7229772297723, + 57.56957215706706 + ], + [ + -157.550175501755, + 58.32783841135978 + ], + [ + -157.04257042570424, + 58.91854136392266 + ], + [ + -158.19458194581946, + 58.615573373926225 + ], + [ + -158.51858518585186, + 58.78821435146611 + ], + [ + -159.05859058590585, + 58.424314251749706 + ], + [ + -159.710197101971, + 58.93208183274933 + ], + [ + -159.98019980199803, + 58.573259408842944 + ], + [ + -160.35460354603546, + 59.07087163822254 + ], + [ + -161.35541355413554, + 58.67142780783618 + ], + [ + -161.96741967419675, + 58.67142780783618 + ], + [ + -162.05382053820537, + 59.267208436209046 + ], + [ + -161.87381873818737, + 59.63280109452876 + ], + [ + -162.51822518225183, + 59.98993095983184 + ], + [ + -163.81783817838178, + 59.79867183765532 + ], + [ + -164.6638466384664, + 60.267510570778285 + ], + [ + -165.34785347853477, + 60.507853892451436 + ], + [ + -165.35145351453514, + 61.0731684659643 + ], + [ + -166.1218612186122, + 61.499693234003985 + ], + [ + -165.7330573305733, + 62.07516315913688 + ], + [ + -164.91944919449193, + 62.63370749823642 + ], + [ + -164.56304563045632, + 63.14655275504603 + ], + [ + -163.7530375303753, + 63.21933277498931 + ], + [ + -163.06543065430654, + 63.0602322662761 + ], + [ + -162.2590225902259, + 63.542611468225715 + ], + [ + -161.53541535415354, + 63.45629097945579 + ], + [ + -160.7722077220772, + 63.76602920386554 + ], + [ + -160.95940959409594, + 64.2230200267652 + ], + [ + -161.51741517415175, + 64.40243123871838 + ], + [ + -160.77940779407794, + 64.78833460027809 + ], + [ + -161.39141391413915, + 64.77648669005475 + ], + [ + -162.45342453424536, + 64.55983918882825 + ], + [ + -162.75942759427593, + 64.33811401179176 + ], + [ + -163.54783547835478, + 64.55983918882825 + ], + [ + -164.9590495904959, + 64.44643776240503 + ], + [ + -166.42426424264244, + 64.68678108407815 + ], + [ + -166.84546845468455, + 65.08961003167119 + ], + [ + -168.10908109081092, + 65.67015763261406 + ], + [ + -166.7050670506705, + 66.08821960763706 + ], + [ + -164.4730447304473, + 66.57736904400002 + ], + [ + -163.65223652236523, + 66.57736904400002 + ], + [ + -163.7890378903789, + 66.07637169741375 + ], + [ + -161.67941679416793, + 66.11530054529038 + ], + [ + -162.48942489424894, + 66.7347769941099 + ], + [ + -163.72063720637206, + 67.11560267985959 + ], + [ + -164.429844298443, + 67.61660002644587 + ], + [ + -165.3910539105391, + 68.04312479448555 + ], + [ + -166.76266762667626, + 68.35963325330863 + ], + [ + -166.20466204662046, + 68.88263386173821 + ], + [ + -164.429844298443, + 68.91479247520152 + ], + [ + -163.16983169831698, + 69.37178329810118 + ], + [ + -162.9322293222932, + 69.85754761725744 + ], + [ + -161.90981909819098, + 70.33315658479376 + ], + [ + -160.93420934209342, + 70.44825056982032 + ], + [ + -159.04059040590406, + 70.89170092389332 + ], + [ + -158.1189811898119, + 70.82399857976003 + ], + [ + -156.58176581765818, + 71.35715453980961 + ], + [ + -155.0661506615066, + 71.14727727299643 + ], + [ + -154.34254342543426, + 70.69705668451013 + ], + [ + -153.89973899739, + 70.89000836528999 + ], + [ + -152.21132211322114, + 70.83076881417335 + ], + [ + -152.26892268922688, + 70.6005808441202 + ], + [ + -150.7389073890739, + 70.42963242518368 + ], + [ + -149.72009720097202, + 70.52949338278026 + ], + [ + -147.6140761407614, + 70.21467748256052 + ], + [ + -145.69165691656917, + 70.11989420077393 + ], + [ + -144.9212492124921, + 69.98956718831735 + ], + [ + -143.58923589235891, + 70.15205281423721 + ], + [ + -142.07362073620737, + 69.85246994144745 + ], + [ + -140.98640986409865, + 69.7119875773709 + ] + ] + ] + ] + }, + "countryRef": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1964, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 20338, + "child_mortality": 109555, + "fertility": 3.22, + "life_expect": 70.1364, + "population": 160840616 + }, + "x": 3.22, + "y": 70.1364, + "size": 160840616, + "color": "America", + "map_id": 840 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1964, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 20338, + "child_mortality": 109555, + "fertility": 3.22, + "life_expect": 70.1364, + "population": 160840616 + }, + "x": 3.22, + "y": 70.1364, + "size": 160840616, + "color": "America", + "map_id": 840 + }, + "currentYear": 1964, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.41083443706940814, + "skewed": 0.23990265805654865, + "clumpy": 0.18920358976614726, + "sparse": 0.05447950963788495, + "striated": 0.41449514422150857, + "convex": 0.235905161685247, + "skinny": 0.10501905929453415, + "stringy": 0.19562103663676012, + "monotonic": 0.9213004183156959, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1964, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 20338, + "child_mortality": 109555, + "fertility": 3.22, + "life_expect": 70.1364, + "population": 160840616 + }, + "x": 3.22, + "y": 70.1364, + "size": 160840616, + "color": "America", + "map_id": 840 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -95.11099399171665, + -87.61015347338385 + ], + "drag": [ + -95.11099399171665, + -87.61015347338385 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 131 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2003", + "timestamp": 1522410400571, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 1.91, + "y": 73.9, + "size": 28395611, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2003, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8128352434807904, + "skewed": 0.001395866795265377, + "clumpy": 0.2653170802005371, + "sparse": 0.8404981837840231, + "striated": 0.8800254141104686, + "convex": 0.45857728850058743, + "skinny": 0.0008757575377886795, + "stringy": 0.10422857177873368, + "monotonic": 0.7657367353166444, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2003, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 47260, + "child_mortality": 32671, + "fertility": 2.05, + "life_expect": 77.3, + "population": 171720661 + }, + "x": 2.05, + "y": 77.3, + "size": 171720661, + "color": "America", + "map_id": 840 + }, + { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 1.91, + "y": 73.9, + "size": 28395611, + "color": "Asia", + "map_id": 704 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 106.57014989433313, + -88.53578432981698 + ], + "drag": [ + 106.57014989433313, + -88.53578432981698 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 132 + }, + { + "attrs": { + "name": "Selected Year 2003", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"fertility\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.81\",\"payload\":{\"numVal\":0.8128352434807904},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0\",\"payload\":{\"numVal\":0.001395866795265377},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.27\",\"payload\":{\"numVal\":0.2653170802005371},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.84\",\"payload\":{\"numVal\":0.8404981837840231},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.88\",\"payload\":{\"numVal\":0.8800254141104686},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.46\",\"payload\":{\"numVal\":0.45857728850058743},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0\",\"payload\":{\"numVal\":0.0008757575377886795},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.1\",\"payload\":{\"numVal\":0.10422857177873368},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.77\",\"payload\":{\"numVal\":0.7657367353166444},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Vietnam\",\"text\":\"Vietnam\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 133 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2003", + "timestamp": 1522410400571, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 704, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 108.04968049680497, + 21.551925078161858 + ], + [ + 106.71406714067143, + 20.697182983479195 + ], + [ + 105.88245882458824, + 19.752735282819927 + ], + [ + 105.66285662856632, + 19.058786255453796 + ], + [ + 106.42606426064259, + 18.004322245577953 + ], + [ + 107.36207362073623, + 16.69766700380565 + ], + [ + 108.26928269282695, + 16.07988311358946 + ], + [ + 108.8776887768878, + 15.275917777006754 + ], + [ + 109.33489334893352, + 13.425951223564866 + ], + [ + 109.20169201692016, + 11.667382834702906 + ], + [ + 108.36648366483666, + 11.00897753800676 + ], + [ + 107.2216722167222, + 10.364112710137263 + ], + [ + 106.40446404464046, + 9.53137387729791 + ], + [ + 105.15885158851592, + 8.600466645465303 + ], + [ + 104.79524795247954, + 9.240253797524801 + ], + [ + 105.0760507605076, + 9.918969797460946 + ], + [ + 104.33444334443345, + 10.485976929577163 + ], + [ + 105.19845198451986, + 10.888805877170185 + ], + [ + 106.24966249662498, + 10.961585897113466 + ], + [ + 105.81045810458107, + 11.567521877106316 + ], + [ + 107.49167491674916, + 12.337636041622389 + ], + [ + 107.61407614076143, + 13.535967532781456 + ], + [ + 107.38367383673835, + 14.202835622494263 + ], + [ + 107.56367563675639, + 15.20144519846015 + ], + [ + 107.31167311673119, + 15.908934694652928 + ], + [ + 106.55566555665558, + 16.604576280622382 + ], + [ + 105.92565925659255, + 17.48470675435503 + ], + [ + 105.09405094050942, + 18.667805218084112 + ], + [ + 103.89523895238955, + 19.2652784050603 + ], + [ + 104.18324183241833, + 19.62410082896669 + ], + [ + 104.8240482404824, + 19.88644741248315 + ], + [ + 104.43524435244353, + 20.758115093199137 + ], + [ + 103.20403204032039, + 20.7665778862158 + ], + [ + 102.75402754027539, + 21.675481856205096 + ], + [ + 102.17082170821709, + 22.464214165357802 + ], + [ + 102.70722707227071, + 22.709635162840954 + ], + [ + 103.50283502835032, + 22.704557487030954 + ], + [ + 104.47844478444784, + 22.81965147205753 + ], + [ + 105.3280532805328, + 23.352807432107113 + ], + [ + 105.81045810458107, + 22.977059422167414 + ], + [ + 106.72486724867252, + 22.794263093007544 + ], + [ + 106.56646566465668, + 22.218793167874665 + ], + [ + 107.04167041670416, + 21.81257910307498 + ], + [ + 108.04968049680497, + 21.551925078161858 + ] + ] + ] + }, + "countryRef": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 1.91, + "y": 73.9, + "size": 28395611, + "color": "Asia", + "map_id": 704 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 1.91, + "y": 73.9, + "size": 28395611, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 1964, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8379886159738257, + "skewed": 0.10020373223537504, + "clumpy": 0.29519877324868427, + "sparse": 0.9536494591962068, + "striated": 0.6243557941758449, + "convex": 0.4587863523571625, + "skinny": 0.20439084334630153, + "stringy": 0.8340401337250605, + "monotonic": 0.9604178136969028, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2003, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 47260, + "child_mortality": 32671, + "fertility": 2.05, + "life_expect": 77.3, + "population": 171720661 + }, + "x": 2.05, + "y": 77.3, + "size": 171720661, + "color": "America", + "map_id": 840 + }, + { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 1.91, + "y": 73.9, + "size": 28395611, + "color": "Asia", + "map_id": 704 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 106.57014989433313, + -88.53578432981698 + ], + "drag": [ + 106.57014989433313, + -88.53578432981698 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 134 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522410411219, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 1.91, + "y": 73.9, + "size": 28395611, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2003, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.5150324170148335, + "skewed": 0.12030248614942551, + "clumpy": 0.9697101554825476, + "sparse": 0.17528286585063868, + "striated": 0.5516616910698795, + "convex": 0.1332084498674737, + "skinny": 0.4607188999551166, + "stringy": 0.7360794064989593, + "monotonic": 0.2865534115243449, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 76.2033867523995, + -58.02547646485103 + ], + "drag": [ + 76.2033867523995, + -58.02547646485103 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 135 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"fertility\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.52\",\"payload\":{\"numVal\":0.5150324170148335},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.12\",\"payload\":{\"numVal\":0.12030248614942551},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.97\",\"payload\":{\"numVal\":0.9697101554825476},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.18\",\"payload\":{\"numVal\":0.17528286585063868},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.55\",\"payload\":{\"numVal\":0.5516616910698795},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.13\",\"payload\":{\"numVal\":0.1332084498674737},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.46\",\"payload\":{\"numVal\":0.4607188999551166},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.74\",\"payload\":{\"numVal\":0.7360794064989593},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.29\",\"payload\":{\"numVal\":0.2865534115243449},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 136 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522410411219, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 1.91, + "y": 73.9, + "size": 28395611, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2003, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8128352434807904, + "skewed": 0.001395866795265377, + "clumpy": 0.2653170802005371, + "sparse": 0.8404981837840231, + "striated": 0.8800254141104686, + "convex": 0.45857728850058743, + "skinny": 0.0008757575377886795, + "stringy": 0.10422857177873368, + "monotonic": 0.7657367353166444, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2003, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 47260, + "child_mortality": 32671, + "fertility": 2.05, + "life_expect": 77.3, + "population": 171720661 + }, + "x": 2.05, + "y": 77.3, + "size": 171720661, + "color": "America", + "map_id": 840 + }, + { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 1.91, + "y": 73.9, + "size": 28395611, + "color": "Asia", + "map_id": 704 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 106.57014989433313, + -88.53578432981698 + ], + "drag": [ + 106.57014989433313, + -88.53578432981698 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 137 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "X = gdp", + "timestamp": 1522410438612, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 3085, + "y": 73.9, + "size": 28395611, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.00044581481840344495, + "skewed": 0.15659248132301729, + "clumpy": 0.6770058368087324, + "sparse": 0.2422324527379418, + "striated": 0.3258160794195877, + "convex": 0.4732605372374512, + "skinny": 0.2841125105888165, + "stringy": 0.9940503369296676, + "monotonic": 0.20561222645873656, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 76.2033867523995, + -58.02547646485103 + ], + "drag": [ + 76.2033867523995, + -58.02547646485103 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 138 + }, + { + "attrs": { + "name": "X = gdp", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0\",\"payload\":{\"numVal\":0.00044581481840344495},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.16\",\"payload\":{\"numVal\":0.15659248132301729},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.68\",\"payload\":{\"numVal\":0.6770058368087324},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.24\",\"payload\":{\"numVal\":0.2422324527379418},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.33\",\"payload\":{\"numVal\":0.3258160794195877},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.47\",\"payload\":{\"numVal\":0.4732605372374512},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.28\",\"payload\":{\"numVal\":0.2841125105888165},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.99\",\"payload\":{\"numVal\":0.9940503369296676},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.21\",\"payload\":{\"numVal\":0.20561222645873656},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 139 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "X = gdp", + "timestamp": 1522410438612, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 3085, + "y": 73.9, + "size": 28395611, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2003, + "xField": "fertility", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.5150324170148335, + "skewed": 0.12030248614942551, + "clumpy": 0.9697101554825476, + "sparse": 0.17528286585063868, + "striated": 0.5516616910698795, + "convex": 0.1332084498674737, + "skinny": 0.4607188999551166, + "stringy": 0.7360794064989593, + "monotonic": 0.2865534115243449, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 76.2033867523995, + -58.02547646485103 + ], + "drag": [ + 76.2033867523995, + -58.02547646485103 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 140 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Y = child_mortality", + "timestamp": 1522410446566, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 3085, + "y": 41273, + "size": 28395611, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.26364181967658085, + "skewed": 0.17331296619394365, + "clumpy": 0.35700779400958704, + "sparse": 0.5749251185840052, + "striated": 0.1002869088160927, + "convex": 0.01181179112128139, + "skinny": 0.9532938187742825, + "stringy": 0.61428193211769, + "monotonic": 0.26564561912582296, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 76.2033867523995, + -58.02547646485103 + ], + "drag": [ + 76.2033867523995, + -58.02547646485103 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 141 + }, + { + "attrs": { + "name": "Y = child_mortality", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.26\",\"payload\":{\"numVal\":0.26364181967658085},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.17\",\"payload\":{\"numVal\":0.17331296619394365},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.36\",\"payload\":{\"numVal\":0.35700779400958704},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.57\",\"payload\":{\"numVal\":0.5749251185840052},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.1\",\"payload\":{\"numVal\":0.1002869088160927},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.01\",\"payload\":{\"numVal\":0.01181179112128139},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.95\",\"payload\":{\"numVal\":0.9532938187742825},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.61\",\"payload\":{\"numVal\":0.61428193211769},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.27\",\"payload\":{\"numVal\":0.26564561912582296},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 142 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Y = child_mortality", + "timestamp": 1522410446566, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 3085, + "y": 41273, + "size": 28395611, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.00044581481840344495, + "skewed": 0.15659248132301729, + "clumpy": 0.6770058368087324, + "sparse": 0.2422324527379418, + "striated": 0.3258160794195877, + "convex": 0.4732605372374512, + "skinny": 0.2841125105888165, + "stringy": 0.9940503369296676, + "monotonic": 0.20561222645873656, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 76.2033867523995, + -58.02547646485103 + ], + "drag": [ + 76.2033867523995, + -58.02547646485103 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 143 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Sierra Leone (1 Countries)", + "timestamp": 1522410816895, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 694, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -11.439114391143903, + 6.786043822693387 + ], + [ + -11.709117091170896, + 6.860516401239991 + ], + [ + -12.429124291242914, + 7.263345348833013 + ], + [ + -12.947529475294743, + 7.798193867485935 + ], + [ + -13.123931239312384, + 8.163786525805648 + ], + [ + -13.24633246332462, + 8.903434635461736 + ], + [ + -12.713527135271335, + 9.343499872328053 + ], + [ + -12.598325983259826, + 9.619386924671176 + ], + [ + -12.42552425524255, + 9.83603442589768 + ], + [ + -12.151921519215193, + 9.858037687740989 + ], + [ + -11.917919179191784, + 10.04760425131417 + ], + [ + -11.11871118711187, + 10.045911692710845 + ], + [ + -10.837908379083785, + 9.688781827407794 + ], + [ + -10.621906219062197, + 9.267334735178125 + ], + [ + -10.654306543065417, + 8.97790721400834 + ], + [ + -10.495904959049597, + 8.71556063049188 + ], + [ + -10.50670506705066, + 8.348275413568842 + ], + [ + -10.22950229502294, + 8.405822406082123 + ], + [ + -10.693906939069393, + 7.938676231562482 + ], + [ + -11.147511475114754, + 7.397057478496251 + ], + [ + -11.201512015120159, + 7.1059373987231425 + ], + [ + -11.439114391143903, + 6.786043822693387 + ] + ] + ] + }, + "countryRef": { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.1236917716329402, + "skewed": 0.7478271799446377, + "clumpy": 0.9236582452248236, + "sparse": 0.7020174415044129, + "striated": 0.10009390147267672, + "convex": 0.48385900186932207, + "skinny": 0.5152931753934649, + "stringy": 0.11863167752075388, + "monotonic": 0.8130395931852581, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -12.032113697747288, + -88.59319116117973 + ], + "drag": [ + -12.032113697747288, + -88.59319116117973 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 144 + }, + { + "attrs": { + "name": "Selected Sierra Leone (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.12\",\"payload\":{\"numVal\":0.1236917716329402},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.75\",\"payload\":{\"numVal\":0.7478271799446377},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.92\",\"payload\":{\"numVal\":0.9236582452248236},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.7\",\"payload\":{\"numVal\":0.7020174415044129},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.1\",\"payload\":{\"numVal\":0.10009390147267672},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.48\",\"payload\":{\"numVal\":0.48385900186932207},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.52\",\"payload\":{\"numVal\":0.5152931753934649},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.12\",\"payload\":{\"numVal\":0.11863167752075388},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.81\",\"payload\":{\"numVal\":0.8130395931852581},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Sierra Leone\",\"text\":\"Sierra Leone\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 145 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Sierra Leone (1 Countries)", + "timestamp": 1522410816895, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 2003, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 3085, + "child_mortality": 41273, + "fertility": 1.91, + "life_expect": 73.9, + "population": 28395611 + }, + "x": 3085, + "y": 41273, + "size": 28395611, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.26364181967658085, + "skewed": 0.17331296619394365, + "clumpy": 0.35700779400958704, + "sparse": 0.5749251185840052, + "striated": 0.1002869088160927, + "convex": 0.01181179112128139, + "skinny": 0.9532938187742825, + "stringy": 0.61428193211769, + "monotonic": 0.26564561912582296, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 76.2033867523995, + -58.02547646485103 + ], + "drag": [ + 76.2033867523995, + -58.02547646485103 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 146 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Mauritius (2 Countries)", + "timestamp": 1522411169869, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": { + "country": "Mauritius", + "count": 216, + "this": { + "country": "Mauritius", + "year": 2003, + "map_id": 480, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 12052, + "child_mortality": 297, + "fertility": 1.88, + "life_expect": 71.6, + "population": 575836 + }, + "x": 12052, + "y": 297, + "size": 575836, + "color": "Africa", + "map_id": 480 + }, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Mauritius", + "count": 216, + "this": { + "country": "Mauritius", + "year": 2003, + "map_id": 480, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 12052, + "child_mortality": 297, + "fertility": 1.88, + "life_expect": 71.6, + "population": 575836 + }, + "x": 12052, + "y": 297, + "size": 575836, + "color": "Africa", + "map_id": 480 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.16988446710100624, + "skewed": 0.06282185179418054, + "clumpy": 0.6295773895024224, + "sparse": 0.4414746769005129, + "striated": 0.8395367119930064, + "convex": 0.5915055895782915, + "skinny": 0.43792187113072156, + "stringy": 0.6620209915824196, + "monotonic": 0.5554794360894517, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + }, + { + "country": "Mauritius", + "count": 216, + "this": { + "country": "Mauritius", + "year": 2003, + "map_id": 480, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 12052, + "child_mortality": 297, + "fertility": 1.88, + "life_expect": 71.6, + "population": 575836 + }, + "x": 12052, + "y": 297, + "size": 575836, + "color": "Africa", + "map_id": 480 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -167.87663397333122, + 74.43234347543184 + ], + "drag": [ + -167.87663397333122, + 74.43234347543184 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 147 + }, + { + "attrs": { + "name": "Selected Mauritius (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.17\",\"payload\":{\"numVal\":0.16988446710100624},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.06\",\"payload\":{\"numVal\":0.06282185179418054},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.63\",\"payload\":{\"numVal\":0.6295773895024224},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.44\",\"payload\":{\"numVal\":0.4414746769005129},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.84\",\"payload\":{\"numVal\":0.8395367119930064},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.59\",\"payload\":{\"numVal\":0.5915055895782915},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.44\",\"payload\":{\"numVal\":0.43792187113072156},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.66\",\"payload\":{\"numVal\":0.6620209915824196},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.56\",\"payload\":{\"numVal\":0.5554794360894517},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Sierra Leone\",\"text\":\"Sierra Leone\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Mauritius\",\"text\":\"Mauritius\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 148 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Mauritius (2 Countries)", + "timestamp": 1522411169869, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 694, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -11.439114391143903, + 6.786043822693387 + ], + [ + -11.709117091170896, + 6.860516401239991 + ], + [ + -12.429124291242914, + 7.263345348833013 + ], + [ + -12.947529475294743, + 7.798193867485935 + ], + [ + -13.123931239312384, + 8.163786525805648 + ], + [ + -13.24633246332462, + 8.903434635461736 + ], + [ + -12.713527135271335, + 9.343499872328053 + ], + [ + -12.598325983259826, + 9.619386924671176 + ], + [ + -12.42552425524255, + 9.83603442589768 + ], + [ + -12.151921519215193, + 9.858037687740989 + ], + [ + -11.917919179191784, + 10.04760425131417 + ], + [ + -11.11871118711187, + 10.045911692710845 + ], + [ + -10.837908379083785, + 9.688781827407794 + ], + [ + -10.621906219062197, + 9.267334735178125 + ], + [ + -10.654306543065417, + 8.97790721400834 + ], + [ + -10.495904959049597, + 8.71556063049188 + ], + [ + -10.50670506705066, + 8.348275413568842 + ], + [ + -10.22950229502294, + 8.405822406082123 + ], + [ + -10.693906939069393, + 7.938676231562482 + ], + [ + -11.147511475114754, + 7.397057478496251 + ], + [ + -11.201512015120159, + 7.1059373987231425 + ], + [ + -11.439114391143903, + 6.786043822693387 + ] + ] + ] + }, + "countryRef": { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.1236917716329402, + "skewed": 0.7478271799446377, + "clumpy": 0.9236582452248236, + "sparse": 0.7020174415044129, + "striated": 0.10009390147267672, + "convex": 0.48385900186932207, + "skinny": 0.5152931753934649, + "stringy": 0.11863167752075388, + "monotonic": 0.8130395931852581, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -12.032113697747288, + -88.59319116117973 + ], + "drag": [ + -12.032113697747288, + -88.59319116117973 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 149 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Ghana (3 Countries)", + "timestamp": 1522411180847, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 288, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0602106021060251, + 5.929609169407385 + ], + [ + -0.5094050940509476, + 5.343983892654521 + ], + [ + -1.0638106381063608, + 5.000394496178117 + ], + [ + -1.9638196381963837, + 4.710966975008347 + ], + [ + -2.85662856628565, + 4.995316820368117 + ], + [ + -2.809828098280974, + 5.389682974944478 + ], + [ + -3.2454324543245434, + 6.251195304040479 + ], + [ + -2.9826298262982505, + 7.380131892462927 + ], + [ + -2.5614256142561374, + 8.219640959715605 + ], + [ + -2.827828278282766, + 9.643082745117823 + ], + [ + -2.9646296462964585, + 10.394578764997235 + ], + [ + -2.9394293942939385, + 10.96327845571679 + ], + [ + -1.2042120421204174, + 11.00897753800676 + ], + [ + -0.7614076140761483, + 10.93619751806348 + ], + [ + -0.437404374043723, + 11.09868314398335 + ], + [ + 0.02340023400233804, + 11.019132889626746 + ], + [ + -0.04860048600485811, + 10.707702106613652 + ], + [ + 0.36900369003691935, + 10.191471732597392 + ], + [ + 0.3654036540365553, + 9.465364091767967 + ], + [ + 0.4626046260462715, + 8.676631782615246 + ], + [ + 0.7110071100711082, + 8.312731682898857 + ], + [ + 0.49140491404915565, + 7.4122905059262365 + ], + [ + 0.5706057060570799, + 6.914678276546624 + ], + [ + 0.8370083700837085, + 6.279968800297112 + ], + [ + 1.0602106021060251, + 5.929609169407385 + ] + ] + ] + }, + "countryRef": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2003, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2409, + "child_mortality": 60959, + "fertility": 4.51, + "life_expect": 60.8, + "population": 5735390 + }, + "x": 2409, + "y": 60959, + "size": 5735390, + "color": "Africa", + "map_id": 288 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2003, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2409, + "child_mortality": 60959, + "fertility": 4.51, + "life_expect": 60.8, + "population": 5735390 + }, + "x": 2409, + "y": 60959, + "size": 5735390, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.5767994422037994, + "skewed": 0.8999247399615913, + "clumpy": 0.34817169615540067, + "sparse": 0.03774693710688548, + "striated": 0.6606316402010521, + "convex": 0.8158919346168045, + "skinny": 0.41604392458726847, + "stringy": 0.948234043866458, + "monotonic": 0.8588203089457254, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + }, + { + "country": "Mauritius", + "count": 216, + "this": { + "country": "Mauritius", + "year": 2003, + "map_id": 480, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 12052, + "child_mortality": 297, + "fertility": 1.88, + "life_expect": 71.6, + "population": 575836 + }, + "x": 12052, + "y": 297, + "size": 575836, + "color": "Africa", + "map_id": 480 + }, + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2003, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2409, + "child_mortality": 60959, + "fertility": 4.51, + "life_expect": 60.8, + "population": 5735390 + }, + "x": 2409, + "y": 60959, + "size": 5735390, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.1459155902616465, + -88.63476465163913 + ], + "drag": [ + -1.1459155902616465, + -88.63476465163913 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 150 + }, + { + "attrs": { + "name": "Selected Ghana (3 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.58\",\"payload\":{\"numVal\":0.5767994422037994},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.9\",\"payload\":{\"numVal\":0.8999247399615913},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.35\",\"payload\":{\"numVal\":0.34817169615540067},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.04\",\"payload\":{\"numVal\":0.03774693710688548},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.66\",\"payload\":{\"numVal\":0.6606316402010521},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.82\",\"payload\":{\"numVal\":0.8158919346168045},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.42\",\"payload\":{\"numVal\":0.41604392458726847},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.95\",\"payload\":{\"numVal\":0.948234043866458},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.86\",\"payload\":{\"numVal\":0.8588203089457254},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Sierra Leone\",\"text\":\"Sierra Leone\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Mauritius\",\"text\":\"Mauritius\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Ghana\",\"text\":\"Ghana\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 151 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Ghana (3 Countries)", + "timestamp": 1522411180847, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": { + "country": "Mauritius", + "count": 216, + "this": { + "country": "Mauritius", + "year": 2003, + "map_id": 480, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 12052, + "child_mortality": 297, + "fertility": 1.88, + "life_expect": 71.6, + "population": 575836 + }, + "x": 12052, + "y": 297, + "size": 575836, + "color": "Africa", + "map_id": 480 + }, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Mauritius", + "count": 216, + "this": { + "country": "Mauritius", + "year": 2003, + "map_id": 480, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 12052, + "child_mortality": 297, + "fertility": 1.88, + "life_expect": 71.6, + "population": 575836 + }, + "x": 12052, + "y": 297, + "size": 575836, + "color": "Africa", + "map_id": 480 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.16988446710100624, + "skewed": 0.06282185179418054, + "clumpy": 0.6295773895024224, + "sparse": 0.4414746769005129, + "striated": 0.8395367119930064, + "convex": 0.5915055895782915, + "skinny": 0.43792187113072156, + "stringy": 0.6620209915824196, + "monotonic": 0.5554794360894517, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + }, + { + "country": "Mauritius", + "count": 216, + "this": { + "country": "Mauritius", + "year": 2003, + "map_id": 480, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 12052, + "child_mortality": 297, + "fertility": 1.88, + "life_expect": 71.6, + "population": 575836 + }, + "x": 12052, + "y": 297, + "size": 575836, + "color": "Africa", + "map_id": 480 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -167.87663397333122, + 74.43234347543184 + ], + "drag": [ + -167.87663397333122, + 74.43234347543184 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 152 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Uganda (4 Countries)", + "timestamp": 1522411225151, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 800, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 30.418504185041854, + -1.1351304409004257 + ], + [ + 29.8208982089821, + -1.4431761067068436 + ], + [ + 29.579695796957964, + -1.3416225905069297 + ], + [ + 29.586895868958692, + -0.5867414534208564 + ], + [ + 29.8208982089821, + -0.2059157676711436 + ], + [ + 29.874898748987505, + 0.5980495689115628 + ], + [ + 30.08730087300873, + 1.0618106262245277 + ], + [ + 30.468904689046894, + 1.5831186760507876 + ], + [ + 30.854108541085424, + 1.8488503767739104 + ], + [ + 31.174511745117456, + 2.2042876834736376 + ], + [ + 30.7749077490775, + 2.339692371740199 + ], + [ + 30.832508325083268, + 3.5092503666426182 + ], + [ + 31.246512465124653, + 3.781752301779065 + ], + [ + 31.88011880118802, + 3.558334566139237 + ], + [ + 32.68652686526866, + 3.7919076533990648 + ], + [ + 33.38853388533886, + 3.7902150947957267 + ], + [ + 34.00414004140043, + 4.25059103490203 + ], + [ + 34.47934479344795, + 3.5549494489325753 + ], + [ + 34.59454594545946, + 3.053952102346301 + ], + [ + 35.037350373503756, + 1.9063973692872054 + ], + [ + 34.67374673746738, + 1.1769046112511035 + ], + [ + 34.18054180541807, + 0.5151141973482822 + ], + [ + 33.89253892538926, + 0.11059269115193615 + ], + [ + 33.90333903339035, + -0.9506415531372312 + ], + [ + 31.86571865718659, + -1.0268066902871738 + ], + [ + 30.771307713077135, + -1.01495878006385 + ], + [ + 30.418504185041854, + -1.1351304409004257 + ] + ] + ] + }, + "countryRef": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9794250318529913, + "skewed": 0.9483510300522267, + "clumpy": 0.5657022719650557, + "sparse": 0.5986956409371791, + "striated": 0.5088455445430085, + "convex": 0.4917464241667364, + "skinny": 0.733766090202993, + "stringy": 0.04202839783222445, + "monotonic": 0.3724092129838885, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + }, + { + "country": "Mauritius", + "count": 216, + "this": { + "country": "Mauritius", + "year": 2003, + "map_id": 480, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 12052, + "child_mortality": 297, + "fertility": 1.88, + "life_expect": 71.6, + "population": 575836 + }, + "x": 12052, + "y": 297, + "size": 575836, + "color": "Africa", + "map_id": 480 + }, + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2003, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2409, + "child_mortality": 60959, + "fertility": 4.51, + "life_expect": 60.8, + "population": 5735390 + }, + "x": 2409, + "y": 60959, + "size": 5735390, + "color": "Africa", + "map_id": 288 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 33.231552117587746, + -88.75225911521514 + ], + "drag": [ + 33.231552117587746, + -88.75225911521514 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 153 + }, + { + "attrs": { + "name": "Selected Uganda (4 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.98\",\"payload\":{\"numVal\":0.9794250318529913},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.95\",\"payload\":{\"numVal\":0.9483510300522267},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.57\",\"payload\":{\"numVal\":0.5657022719650557},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.6\",\"payload\":{\"numVal\":0.5986956409371791},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.51\",\"payload\":{\"numVal\":0.5088455445430085},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.49\",\"payload\":{\"numVal\":0.4917464241667364},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.73\",\"payload\":{\"numVal\":0.733766090202993},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.04\",\"payload\":{\"numVal\":0.04202839783222445},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.37\",\"payload\":{\"numVal\":0.3724092129838885},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Sierra Leone\",\"text\":\"Sierra Leone\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Mauritius\",\"text\":\"Mauritius\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Ghana\",\"text\":\"Ghana\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Uganda\",\"text\":\"Uganda\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 154 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Uganda (4 Countries)", + "timestamp": 1522411225151, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 288, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0602106021060251, + 5.929609169407385 + ], + [ + -0.5094050940509476, + 5.343983892654521 + ], + [ + -1.0638106381063608, + 5.000394496178117 + ], + [ + -1.9638196381963837, + 4.710966975008347 + ], + [ + -2.85662856628565, + 4.995316820368117 + ], + [ + -2.809828098280974, + 5.389682974944478 + ], + [ + -3.2454324543245434, + 6.251195304040479 + ], + [ + -2.9826298262982505, + 7.380131892462927 + ], + [ + -2.5614256142561374, + 8.219640959715605 + ], + [ + -2.827828278282766, + 9.643082745117823 + ], + [ + -2.9646296462964585, + 10.394578764997235 + ], + [ + -2.9394293942939385, + 10.96327845571679 + ], + [ + -1.2042120421204174, + 11.00897753800676 + ], + [ + -0.7614076140761483, + 10.93619751806348 + ], + [ + -0.437404374043723, + 11.09868314398335 + ], + [ + 0.02340023400233804, + 11.019132889626746 + ], + [ + -0.04860048600485811, + 10.707702106613652 + ], + [ + 0.36900369003691935, + 10.191471732597392 + ], + [ + 0.3654036540365553, + 9.465364091767967 + ], + [ + 0.4626046260462715, + 8.676631782615246 + ], + [ + 0.7110071100711082, + 8.312731682898857 + ], + [ + 0.49140491404915565, + 7.4122905059262365 + ], + [ + 0.5706057060570799, + 6.914678276546624 + ], + [ + 0.8370083700837085, + 6.279968800297112 + ], + [ + 1.0602106021060251, + 5.929609169407385 + ] + ] + ] + }, + "countryRef": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2003, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2409, + "child_mortality": 60959, + "fertility": 4.51, + "life_expect": 60.8, + "population": 5735390 + }, + "x": 2409, + "y": 60959, + "size": 5735390, + "color": "Africa", + "map_id": 288 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2003, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2409, + "child_mortality": 60959, + "fertility": 4.51, + "life_expect": 60.8, + "population": 5735390 + }, + "x": 2409, + "y": 60959, + "size": 5735390, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.5767994422037994, + "skewed": 0.8999247399615913, + "clumpy": 0.34817169615540067, + "sparse": 0.03774693710688548, + "striated": 0.6606316402010521, + "convex": 0.8158919346168045, + "skinny": 0.41604392458726847, + "stringy": 0.948234043866458, + "monotonic": 0.8588203089457254, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + }, + { + "country": "Mauritius", + "count": 216, + "this": { + "country": "Mauritius", + "year": 2003, + "map_id": 480, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 12052, + "child_mortality": 297, + "fertility": 1.88, + "life_expect": 71.6, + "population": 575836 + }, + "x": 12052, + "y": 297, + "size": 575836, + "color": "Africa", + "map_id": 480 + }, + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2003, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2409, + "child_mortality": 60959, + "fertility": 4.51, + "life_expect": 60.8, + "population": 5735390 + }, + "x": 2409, + "y": 60959, + "size": 5735390, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.1459155902616465, + -88.63476465163913 + ], + "drag": [ + -1.1459155902616465, + -88.63476465163913 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 155 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411231755, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.5819855289897626, + "skewed": 0.016621109990200944, + "clumpy": 0.3132352261497331, + "sparse": 0.7457349443116188, + "striated": 0.5996473252344545, + "convex": 0.8037401029918096, + "skinny": 0.45834708192017004, + "stringy": 0.2708243771966483, + "monotonic": 0.7905905247307441, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 93.965078401455, + -89.32202002222618 + ], + "drag": [ + 93.965078401455, + -89.32202002222618 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 156 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.58\",\"payload\":{\"numVal\":0.5819855289897626},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.02\",\"payload\":{\"numVal\":0.016621109990200944},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.31\",\"payload\":{\"numVal\":0.3132352261497331},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.75\",\"payload\":{\"numVal\":0.7457349443116188},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.6\",\"payload\":{\"numVal\":0.5996473252344545},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.8\",\"payload\":{\"numVal\":0.8037401029918096},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.46\",\"payload\":{\"numVal\":0.45834708192017004},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.27\",\"payload\":{\"numVal\":0.2708243771966483},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.79\",\"payload\":{\"numVal\":0.7905905247307441},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 157 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411231755, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 800, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 30.418504185041854, + -1.1351304409004257 + ], + [ + 29.8208982089821, + -1.4431761067068436 + ], + [ + 29.579695796957964, + -1.3416225905069297 + ], + [ + 29.586895868958692, + -0.5867414534208564 + ], + [ + 29.8208982089821, + -0.2059157676711436 + ], + [ + 29.874898748987505, + 0.5980495689115628 + ], + [ + 30.08730087300873, + 1.0618106262245277 + ], + [ + 30.468904689046894, + 1.5831186760507876 + ], + [ + 30.854108541085424, + 1.8488503767739104 + ], + [ + 31.174511745117456, + 2.2042876834736376 + ], + [ + 30.7749077490775, + 2.339692371740199 + ], + [ + 30.832508325083268, + 3.5092503666426182 + ], + [ + 31.246512465124653, + 3.781752301779065 + ], + [ + 31.88011880118802, + 3.558334566139237 + ], + [ + 32.68652686526866, + 3.7919076533990648 + ], + [ + 33.38853388533886, + 3.7902150947957267 + ], + [ + 34.00414004140043, + 4.25059103490203 + ], + [ + 34.47934479344795, + 3.5549494489325753 + ], + [ + 34.59454594545946, + 3.053952102346301 + ], + [ + 35.037350373503756, + 1.9063973692872054 + ], + [ + 34.67374673746738, + 1.1769046112511035 + ], + [ + 34.18054180541807, + 0.5151141973482822 + ], + [ + 33.89253892538926, + 0.11059269115193615 + ], + [ + 33.90333903339035, + -0.9506415531372312 + ], + [ + 31.86571865718659, + -1.0268066902871738 + ], + [ + 30.771307713077135, + -1.01495878006385 + ], + [ + 30.418504185041854, + -1.1351304409004257 + ] + ] + ] + }, + "countryRef": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9794250318529913, + "skewed": 0.9483510300522267, + "clumpy": 0.5657022719650557, + "sparse": 0.5986956409371791, + "striated": 0.5088455445430085, + "convex": 0.4917464241667364, + "skinny": 0.733766090202993, + "stringy": 0.04202839783222445, + "monotonic": 0.3724092129838885, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sierra Leone", + "count": 216, + "this": { + "country": "Sierra Leone", + "year": 2003, + "map_id": 694, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 1133, + "child_mortality": 42315, + "fertility": 5.66, + "life_expect": 53.3, + "population": 2059200 + }, + "x": 1133, + "y": 42315, + "size": 2059200, + "color": "Africa", + "map_id": 694 + }, + { + "country": "Mauritius", + "count": 216, + "this": { + "country": "Mauritius", + "year": 2003, + "map_id": 480, + "continent": "Africa", + "main_religion": "Not Categorized", + "gdp": 12052, + "child_mortality": 297, + "fertility": 1.88, + "life_expect": 71.6, + "population": 575836 + }, + "x": 12052, + "y": 297, + "size": 575836, + "color": "Africa", + "map_id": 480 + }, + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 2003, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 2409, + "child_mortality": 60959, + "fertility": 4.51, + "life_expect": 60.8, + "population": 5735390 + }, + "x": 2409, + "y": 60959, + "size": 5735390, + "color": "Africa", + "map_id": 288 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 33.231552117587746, + -88.75225911521514 + ], + "drag": [ + 33.231552117587746, + -88.75225911521514 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 158 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Afghanistan (1 Countries)", + "timestamp": 1522411237356, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 4, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 61.20961209612096, + 35.64924568531417 + ], + [ + 62.23202232022322, + 35.27011255816781 + ], + [ + 62.98442984429846, + 35.40382468783103 + ], + [ + 63.19323193231932, + 35.85743039352401 + ], + [ + 63.98163981639817, + 36.00806810922056 + ], + [ + 64.5468454684547, + 36.31272865782033 + ], + [ + 64.7448474484745, + 37.111616318593036 + ], + [ + 65.58725587255873, + 37.30456799937288 + ], + [ + 65.74565745657458, + 37.66169786467593 + ], + [ + 66.21726217262173, + 37.39427360534948 + ], + [ + 66.51966519665197, + 37.36211499188617 + ], + [ + 67.07407074070741, + 37.355344757472835 + ], + [ + 67.83007830078301, + 37.14546749065967 + ], + [ + 68.13608136081362, + 37.02360327121977 + ], + [ + 68.85968859688597, + 37.34349684724951 + ], + [ + 69.19449194491946, + 37.15054516646967 + ], + [ + 69.51849518495186, + 37.60922854797265 + ], + [ + 70.11610116101161, + 37.58891784473266 + ], + [ + 70.2709027090271, + 37.73447788461921 + ], + [ + 70.37530375303754, + 38.13899939081557 + ], + [ + 70.80730807308075, + 38.48597390449862 + ], + [ + 71.34731347313473, + 38.25917105165213 + ], + [ + 71.23931239312395, + 37.95281794444904 + ], + [ + 71.5417154171542, + 37.90542630355574 + ], + [ + 71.44811448114481, + 37.065917236303065 + ], + [ + 71.84411844118443, + 36.73756086725666 + ], + [ + 72.19332193321935, + 36.949130692673165 + ], + [ + 72.63612636126362, + 37.04729909166642 + ], + [ + 73.2589325893259, + 37.4958271215494 + ], + [ + 73.95013950139503, + 37.42135454300279 + ], + [ + 74.97974979749799, + 37.419661984399454 + ], + [ + 75.15975159751599, + 37.133619580436346 + ], + [ + 74.57654576545767, + 37.02021815401311 + ], + [ + 74.0689406894069, + 36.83572926624991 + ], + [ + 72.92052920529207, + 36.72063528122334 + ], + [ + 71.84771847718477, + 36.51075801441017 + ], + [ + 71.26091260912611, + 36.074077894750516 + ], + [ + 71.49851498514985, + 35.65093824391751 + ], + [ + 71.61371613716139, + 35.153326014537896 + ], + [ + 71.11331113311135, + 34.73357148091155 + ], + [ + 71.15651156511566, + 34.34936067795519 + ], + [ + 70.88290882908831, + 33.98884569544548 + ], + [ + 69.92889928899291, + 34.01931175030545 + ], + [ + 70.3249032490325, + 33.359213895005965 + ], + [ + 69.68769687696877, + 33.105330104506166 + ], + [ + 69.2628926289263, + 32.50277924171996 + ], + [ + 69.3168931689317, + 31.9019209375371 + ], + [ + 68.9280892808928, + 31.62095620938399 + ], + [ + 68.55728557285573, + 31.714046932567243 + ], + [ + 67.7940779407794, + 31.58371992011068 + ], + [ + 67.68247682476826, + 31.302755191957573 + ], + [ + 66.93726937269375, + 31.304447750560897 + ], + [ + 66.3828638286383, + 30.739133177048004 + ], + [ + 66.3468634686347, + 29.887776199572002 + ], + [ + 65.04725047250474, + 29.471406783152332 + ], + [ + 64.34884348843488, + 29.5594198305256 + ], + [ + 64.14724147241472, + 29.34107977069577 + ], + [ + 63.549635496354966, + 29.46802166594567 + ], + [ + 62.54882548825489, + 29.319076508852447 + ], + [ + 60.8748087480875, + 29.828536648455383 + ], + [ + 61.7820178201782, + 30.73574805984134 + ], + [ + 61.69921699216994, + 31.378920329107515 + ], + [ + 60.943209432094335, + 31.54817618944071 + ], + [ + 60.86400864008641, + 32.18288566569022 + ], + [ + 60.53640536405365, + 32.98177332646293 + ], + [ + 60.96480964809649, + 33.52846975533916 + ], + [ + 60.52920529205292, + 33.675722353829045 + ], + [ + 60.80280802808028, + 34.40352255326181 + ], + [ + 61.20961209612096, + 35.64924568531417 + ] + ] + ] + }, + "countryRef": { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 2003, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 127140, + "fertility": 7.32, + "life_expect": 52.1, + "population": 8308510 + }, + "x": 1097, + "y": 127140, + "size": 8308510, + "color": "Asia", + "map_id": 4 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 2003, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 127140, + "fertility": 7.32, + "life_expect": 52.1, + "population": 8308510 + }, + "x": 1097, + "y": 127140, + "size": 8308510, + "color": "Asia", + "map_id": 4 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.020740782079232245, + "skewed": 0.19046022804849283, + "clumpy": 0.06429608736382209, + "sparse": 0.54794436543396, + "striated": 0.13142483152630358, + "convex": 0.2840508744815746, + "skinny": 0.6841105595401131, + "stringy": 0.40190404307340577, + "monotonic": 0.3165588754654838, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 2003, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 127140, + "fertility": 7.32, + "life_expect": 52.1, + "population": 8308510 + }, + "x": 1097, + "y": 127140, + "size": 8308510, + "color": "Asia", + "map_id": 4 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 64.74423084978302, + -87.70383510329775 + ], + "drag": [ + 64.74423084978302, + -87.70383510329775 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 159 + }, + { + "attrs": { + "name": "Selected Afghanistan (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.02\",\"payload\":{\"numVal\":0.020740782079232245},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.19\",\"payload\":{\"numVal\":0.19046022804849283},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.06\",\"payload\":{\"numVal\":0.06429608736382209},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.55\",\"payload\":{\"numVal\":0.54794436543396},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.13\",\"payload\":{\"numVal\":0.13142483152630358},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.28\",\"payload\":{\"numVal\":0.2840508744815746},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.68\",\"payload\":{\"numVal\":0.6841105595401131},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.4\",\"payload\":{\"numVal\":0.40190404307340577},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.32\",\"payload\":{\"numVal\":0.3165588754654838},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Afghanistan\",\"text\":\"Afghanistan\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 160 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Afghanistan (1 Countries)", + "timestamp": 1522411237356, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.5819855289897626, + "skewed": 0.016621109990200944, + "clumpy": 0.3132352261497331, + "sparse": 0.7457349443116188, + "striated": 0.5996473252344545, + "convex": 0.8037401029918096, + "skinny": 0.45834708192017004, + "stringy": 0.2708243771966483, + "monotonic": 0.7905905247307441, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 93.965078401455, + -89.32202002222618 + ], + "drag": [ + 93.965078401455, + -89.32202002222618 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 161 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Sri Lanka (2 Countries)", + "timestamp": 1522411353565, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": { + "country": "Sri Lanka", + "count": 216, + "this": { + "country": "Sri Lanka", + "year": 2003, + "map_id": 144, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 5344, + "child_mortality": 5369, + "fertility": 2.26, + "life_expect": 73.9, + "population": 8890252 + }, + "x": 5344, + "y": 5369, + "size": 8890252, + "color": "Asia", + "map_id": 144 + }, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Sri Lanka", + "count": 216, + "this": { + "country": "Sri Lanka", + "year": 2003, + "map_id": 144, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 5344, + "child_mortality": 5369, + "fertility": 2.26, + "life_expect": 73.9, + "population": 8890252 + }, + "x": 5344, + "y": 5369, + "size": 8890252, + "color": "Asia", + "map_id": 144 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7704314453915373, + "skewed": 0.4578884625327069, + "clumpy": 0.42532754715922017, + "sparse": 0.6255904639708467, + "striated": 0.24227885813851047, + "convex": 0.7462422515357576, + "skinny": 0.6114817944275068, + "stringy": 0.21260675182073863, + "monotonic": 0.9027478457988114, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 2003, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 127140, + "fertility": 7.32, + "life_expect": 52.1, + "population": 8308510 + }, + "x": 1097, + "y": 127140, + "size": 8308510, + "color": "Asia", + "map_id": 4 + }, + { + "country": "Sri Lanka", + "count": 216, + "this": { + "country": "Sri Lanka", + "year": 2003, + "map_id": 144, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 5344, + "child_mortality": 5369, + "fertility": 2.26, + "life_expect": 73.9, + "population": 8890252 + }, + "x": 5344, + "y": 5369, + "size": 8890252, + "color": "Asia", + "map_id": 144 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -170.1684651538545, + 69.29433393519638 + ], + "drag": [ + -170.1684651538545, + 69.29433393519638 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 162 + }, + { + "attrs": { + "name": "Selected Sri Lanka (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.77\",\"payload\":{\"numVal\":0.7704314453915373},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.46\",\"payload\":{\"numVal\":0.4578884625327069},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.43\",\"payload\":{\"numVal\":0.42532754715922017},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.63\",\"payload\":{\"numVal\":0.6255904639708467},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.24\",\"payload\":{\"numVal\":0.24227885813851047},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.75\",\"payload\":{\"numVal\":0.7462422515357576},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.61\",\"payload\":{\"numVal\":0.6114817944275068},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.21\",\"payload\":{\"numVal\":0.21260675182073863},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.9\",\"payload\":{\"numVal\":0.9027478457988114},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Afghanistan\",\"text\":\"Afghanistan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Sri Lanka\",\"text\":\"Sri Lanka\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 163 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Sri Lanka (2 Countries)", + "timestamp": 1522411353565, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 4, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 61.20961209612096, + 35.64924568531417 + ], + [ + 62.23202232022322, + 35.27011255816781 + ], + [ + 62.98442984429846, + 35.40382468783103 + ], + [ + 63.19323193231932, + 35.85743039352401 + ], + [ + 63.98163981639817, + 36.00806810922056 + ], + [ + 64.5468454684547, + 36.31272865782033 + ], + [ + 64.7448474484745, + 37.111616318593036 + ], + [ + 65.58725587255873, + 37.30456799937288 + ], + [ + 65.74565745657458, + 37.66169786467593 + ], + [ + 66.21726217262173, + 37.39427360534948 + ], + [ + 66.51966519665197, + 37.36211499188617 + ], + [ + 67.07407074070741, + 37.355344757472835 + ], + [ + 67.83007830078301, + 37.14546749065967 + ], + [ + 68.13608136081362, + 37.02360327121977 + ], + [ + 68.85968859688597, + 37.34349684724951 + ], + [ + 69.19449194491946, + 37.15054516646967 + ], + [ + 69.51849518495186, + 37.60922854797265 + ], + [ + 70.11610116101161, + 37.58891784473266 + ], + [ + 70.2709027090271, + 37.73447788461921 + ], + [ + 70.37530375303754, + 38.13899939081557 + ], + [ + 70.80730807308075, + 38.48597390449862 + ], + [ + 71.34731347313473, + 38.25917105165213 + ], + [ + 71.23931239312395, + 37.95281794444904 + ], + [ + 71.5417154171542, + 37.90542630355574 + ], + [ + 71.44811448114481, + 37.065917236303065 + ], + [ + 71.84411844118443, + 36.73756086725666 + ], + [ + 72.19332193321935, + 36.949130692673165 + ], + [ + 72.63612636126362, + 37.04729909166642 + ], + [ + 73.2589325893259, + 37.4958271215494 + ], + [ + 73.95013950139503, + 37.42135454300279 + ], + [ + 74.97974979749799, + 37.419661984399454 + ], + [ + 75.15975159751599, + 37.133619580436346 + ], + [ + 74.57654576545767, + 37.02021815401311 + ], + [ + 74.0689406894069, + 36.83572926624991 + ], + [ + 72.92052920529207, + 36.72063528122334 + ], + [ + 71.84771847718477, + 36.51075801441017 + ], + [ + 71.26091260912611, + 36.074077894750516 + ], + [ + 71.49851498514985, + 35.65093824391751 + ], + [ + 71.61371613716139, + 35.153326014537896 + ], + [ + 71.11331113311135, + 34.73357148091155 + ], + [ + 71.15651156511566, + 34.34936067795519 + ], + [ + 70.88290882908831, + 33.98884569544548 + ], + [ + 69.92889928899291, + 34.01931175030545 + ], + [ + 70.3249032490325, + 33.359213895005965 + ], + [ + 69.68769687696877, + 33.105330104506166 + ], + [ + 69.2628926289263, + 32.50277924171996 + ], + [ + 69.3168931689317, + 31.9019209375371 + ], + [ + 68.9280892808928, + 31.62095620938399 + ], + [ + 68.55728557285573, + 31.714046932567243 + ], + [ + 67.7940779407794, + 31.58371992011068 + ], + [ + 67.68247682476826, + 31.302755191957573 + ], + [ + 66.93726937269375, + 31.304447750560897 + ], + [ + 66.3828638286383, + 30.739133177048004 + ], + [ + 66.3468634686347, + 29.887776199572002 + ], + [ + 65.04725047250474, + 29.471406783152332 + ], + [ + 64.34884348843488, + 29.5594198305256 + ], + [ + 64.14724147241472, + 29.34107977069577 + ], + [ + 63.549635496354966, + 29.46802166594567 + ], + [ + 62.54882548825489, + 29.319076508852447 + ], + [ + 60.8748087480875, + 29.828536648455383 + ], + [ + 61.7820178201782, + 30.73574805984134 + ], + [ + 61.69921699216994, + 31.378920329107515 + ], + [ + 60.943209432094335, + 31.54817618944071 + ], + [ + 60.86400864008641, + 32.18288566569022 + ], + [ + 60.53640536405365, + 32.98177332646293 + ], + [ + 60.96480964809649, + 33.52846975533916 + ], + [ + 60.52920529205292, + 33.675722353829045 + ], + [ + 60.80280802808028, + 34.40352255326181 + ], + [ + 61.20961209612096, + 35.64924568531417 + ] + ] + ] + }, + "countryRef": { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 2003, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 127140, + "fertility": 7.32, + "life_expect": 52.1, + "population": 8308510 + }, + "x": 1097, + "y": 127140, + "size": 8308510, + "color": "Asia", + "map_id": 4 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 2003, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 127140, + "fertility": 7.32, + "life_expect": 52.1, + "population": 8308510 + }, + "x": 1097, + "y": 127140, + "size": 8308510, + "color": "Asia", + "map_id": 4 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.020740782079232245, + "skewed": 0.19046022804849283, + "clumpy": 0.06429608736382209, + "sparse": 0.54794436543396, + "striated": 0.13142483152630358, + "convex": 0.2840508744815746, + "skinny": 0.6841105595401131, + "stringy": 0.40190404307340577, + "monotonic": 0.3165588754654838, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 2003, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 127140, + "fertility": 7.32, + "life_expect": 52.1, + "population": 8308510 + }, + "x": 1097, + "y": 127140, + "size": 8308510, + "color": "Asia", + "map_id": 4 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 64.74423084978302, + -87.70383510329775 + ], + "drag": [ + 64.74423084978302, + -87.70383510329775 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 164 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411367602, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Sri Lanka", + "count": 216, + "this": { + "country": "Sri Lanka", + "year": 2003, + "map_id": 144, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 5344, + "child_mortality": 5369, + "fertility": 2.26, + "life_expect": 73.9, + "population": 8890252 + }, + "x": 5344, + "y": 5369, + "size": 8890252, + "color": "Asia", + "map_id": 144 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.2829470818229749, + "skewed": 0.34380820534687095, + "clumpy": 0.6341526228420069, + "sparse": 0.6620347737045837, + "striated": 0.057914895128311716, + "convex": 0.21573732004472257, + "skinny": 0.33182166797190993, + "stringy": 0.8598535270984737, + "monotonic": 0.6813691857476256, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 60.73352628386726, + -39.87217273710631 + ], + "drag": [ + 60.73352628386726, + -39.87217273710631 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 165 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.28\",\"payload\":{\"numVal\":0.2829470818229749},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.34\",\"payload\":{\"numVal\":0.34380820534687095},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.63\",\"payload\":{\"numVal\":0.6341526228420069},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.66\",\"payload\":{\"numVal\":0.6620347737045837},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.06\",\"payload\":{\"numVal\":0.057914895128311716},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.22\",\"payload\":{\"numVal\":0.21573732004472257},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.33\",\"payload\":{\"numVal\":0.33182166797190993},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.86\",\"payload\":{\"numVal\":0.8598535270984737},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.68\",\"payload\":{\"numVal\":0.6813691857476256},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 166 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411367602, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": { + "country": "Sri Lanka", + "count": 216, + "this": { + "country": "Sri Lanka", + "year": 2003, + "map_id": 144, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 5344, + "child_mortality": 5369, + "fertility": 2.26, + "life_expect": 73.9, + "population": 8890252 + }, + "x": 5344, + "y": 5369, + "size": 8890252, + "color": "Asia", + "map_id": 144 + }, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Sri Lanka", + "count": 216, + "this": { + "country": "Sri Lanka", + "year": 2003, + "map_id": 144, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 5344, + "child_mortality": 5369, + "fertility": 2.26, + "life_expect": 73.9, + "population": 8890252 + }, + "x": 5344, + "y": 5369, + "size": 8890252, + "color": "Asia", + "map_id": 144 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7704314453915373, + "skewed": 0.4578884625327069, + "clumpy": 0.42532754715922017, + "sparse": 0.6255904639708467, + "striated": 0.24227885813851047, + "convex": 0.7462422515357576, + "skinny": 0.6114817944275068, + "stringy": 0.21260675182073863, + "monotonic": 0.9027478457988114, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 2003, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 127140, + "fertility": 7.32, + "life_expect": 52.1, + "population": 8308510 + }, + "x": 1097, + "y": 127140, + "size": 8308510, + "color": "Asia", + "map_id": 4 + }, + { + "country": "Sri Lanka", + "count": 216, + "this": { + "country": "Sri Lanka", + "year": 2003, + "map_id": 144, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 5344, + "child_mortality": 5369, + "fertility": 2.26, + "life_expect": 73.9, + "population": 8890252 + }, + "x": 5344, + "y": 5369, + "size": 8890252, + "color": "Asia", + "map_id": 144 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -170.1684651538545, + 69.29433393519638 + ], + "drag": [ + -170.1684651538545, + 69.29433393519638 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 167 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United Arab Emirates (1 Countries)", + "timestamp": 1522411373845, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 784, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 51.57951579515796, + 24.244785816063086 + ], + [ + 51.7559175591756, + 24.29387001555972 + ], + [ + 51.79551795517955, + 24.01967552181992 + ], + [ + 52.57672576725767, + 24.177083471929805 + ], + [ + 53.40473404734047, + 24.15169509287982 + ], + [ + 54.00954009540095, + 24.121229038019848 + ], + [ + 54.69354693546936, + 24.798252479352655 + ], + [ + 55.438754387543895, + 25.43973219001549 + ], + [ + 56.07236072360723, + 26.05582352162834 + ], + [ + 56.259562595625965, + 25.713926683755275 + ], + [ + 56.39636396363966, + 24.925194374602555 + ], + [ + 55.88515885158853, + 24.920116698792555 + ], + [ + 55.80235802358024, + 24.270174195113057 + ], + [ + 55.982359823598244, + 24.131384389639834 + ], + [ + 55.52875528755288, + 23.933355033049992 + ], + [ + 55.52515525155252, + 23.525448409646984 + ], + [ + 55.23355233552337, + 23.110771551830638 + ], + [ + 55.20835208352085, + 22.707942604237616 + ], + [ + 55.00675006750069, + 22.49637277882111 + ], + [ + 52.00072000720007, + 23.000755242614062 + ], + [ + 51.61911619116191, + 24.014597846009934 + ], + [ + 51.57951579515796, + 24.244785816063086 + ] + ] + ] + }, + "countryRef": { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.49062419866917106, + "skewed": 0.5863958801656399, + "clumpy": 0.2302250130468675, + "sparse": 0.5794556926434711, + "striated": 0.5736104040180499, + "convex": 0.41875992685399765, + "skinny": 0.5653864258953349, + "stringy": 0.2961786769263639, + "monotonic": 0.8710307524192651, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 53.85803274229738, + -88.15719671701233 + ], + "drag": [ + 53.85803274229738, + -88.15719671701233 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 168 + }, + { + "attrs": { + "name": "Selected United Arab Emirates (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.49\",\"payload\":{\"numVal\":0.49062419866917106},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.59\",\"payload\":{\"numVal\":0.5863958801656399},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.23\",\"payload\":{\"numVal\":0.2302250130468675},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.58\",\"payload\":{\"numVal\":0.5794556926434711},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.57\",\"payload\":{\"numVal\":0.5736104040180499},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.42\",\"payload\":{\"numVal\":0.41875992685399765},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.57\",\"payload\":{\"numVal\":0.5653864258953349},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.3\",\"payload\":{\"numVal\":0.2961786769263639},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.87\",\"payload\":{\"numVal\":0.8710307524192651},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United Arab Emirates\",\"text\":\"United Arab Emirates\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 169 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United Arab Emirates (1 Countries)", + "timestamp": 1522411373845, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Sri Lanka", + "count": 216, + "this": { + "country": "Sri Lanka", + "year": 2003, + "map_id": 144, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 5344, + "child_mortality": 5369, + "fertility": 2.26, + "life_expect": 73.9, + "population": 8890252 + }, + "x": 5344, + "y": 5369, + "size": 8890252, + "color": "Asia", + "map_id": 144 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.2829470818229749, + "skewed": 0.34380820534687095, + "clumpy": 0.6341526228420069, + "sparse": 0.6620347737045837, + "striated": 0.057914895128311716, + "convex": 0.21573732004472257, + "skinny": 0.33182166797190993, + "stringy": 0.8598535270984737, + "monotonic": 0.6813691857476256, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 60.73352628386726, + -39.87217273710631 + ], + "drag": [ + 60.73352628386726, + -39.87217273710631 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 170 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411375809, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.3116685737502616, + "skewed": 0.7448951956175203, + "clumpy": 0.3973184755607879, + "sparse": 0.49584472494812504, + "striated": 0.9101760162410399, + "convex": 0.3370372776642778, + "skinny": 0.8610718560214174, + "stringy": 0.20620505115040833, + "monotonic": 0.4388404618387991, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 80.78704911344607, + -89.36150165999385 + ], + "drag": [ + 80.78704911344607, + -89.36150165999385 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 171 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.31\",\"payload\":{\"numVal\":0.3116685737502616},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.74\",\"payload\":{\"numVal\":0.7448951956175203},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.4\",\"payload\":{\"numVal\":0.3973184755607879},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.5\",\"payload\":{\"numVal\":0.49584472494812504},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.91\",\"payload\":{\"numVal\":0.9101760162410399},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.34\",\"payload\":{\"numVal\":0.3370372776642778},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.86\",\"payload\":{\"numVal\":0.8610718560214174},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.21\",\"payload\":{\"numVal\":0.20620505115040833},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.44\",\"payload\":{\"numVal\":0.4388404618387991},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 172 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411375809, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 784, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 51.57951579515796, + 24.244785816063086 + ], + [ + 51.7559175591756, + 24.29387001555972 + ], + [ + 51.79551795517955, + 24.01967552181992 + ], + [ + 52.57672576725767, + 24.177083471929805 + ], + [ + 53.40473404734047, + 24.15169509287982 + ], + [ + 54.00954009540095, + 24.121229038019848 + ], + [ + 54.69354693546936, + 24.798252479352655 + ], + [ + 55.438754387543895, + 25.43973219001549 + ], + [ + 56.07236072360723, + 26.05582352162834 + ], + [ + 56.259562595625965, + 25.713926683755275 + ], + [ + 56.39636396363966, + 24.925194374602555 + ], + [ + 55.88515885158853, + 24.920116698792555 + ], + [ + 55.80235802358024, + 24.270174195113057 + ], + [ + 55.982359823598244, + 24.131384389639834 + ], + [ + 55.52875528755288, + 23.933355033049992 + ], + [ + 55.52515525155252, + 23.525448409646984 + ], + [ + 55.23355233552337, + 23.110771551830638 + ], + [ + 55.20835208352085, + 22.707942604237616 + ], + [ + 55.00675006750069, + 22.49637277882111 + ], + [ + 52.00072000720007, + 23.000755242614062 + ], + [ + 51.61911619116191, + 24.014597846009934 + ], + [ + 51.57951579515796, + 24.244785816063086 + ] + ] + ] + }, + "countryRef": { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.49062419866917106, + "skewed": 0.5863958801656399, + "clumpy": 0.2302250130468675, + "sparse": 0.5794556926434711, + "striated": 0.5736104040180499, + "convex": 0.41875992685399765, + "skinny": 0.5653864258953349, + "stringy": 0.2961786769263639, + "monotonic": 0.8710307524192651, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 53.85803274229738, + -88.15719671701233 + ], + "drag": [ + 53.85803274229738, + -88.15719671701233 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 173 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Cambodia (1 Countries)", + "timestamp": 1522411387531, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 116, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 102.5848258482585, + 12.186998325925842 + ], + [ + 102.34722347223476, + 13.393792610101556 + ], + [ + 102.98802988029882, + 14.22653144294091 + ], + [ + 104.28044280442805, + 14.41609800651409 + ], + [ + 105.22005220052199, + 14.273923083834205 + ], + [ + 106.04446044460445, + 13.881249487861183 + ], + [ + 106.49806498064981, + 14.570120839417314 + ], + [ + 107.38367383673835, + 14.202835622494263 + ], + [ + 107.61407614076143, + 13.535967532781456 + ], + [ + 107.49167491674916, + 12.337636041622389 + ], + [ + 105.81045810458107, + 11.567521877106316 + ], + [ + 106.24966249662498, + 10.961585897113466 + ], + [ + 105.19845198451986, + 10.888805877170185 + ], + [ + 104.33444334443345, + 10.485976929577163 + ], + [ + 103.49563495634959, + 10.633229528067048 + ], + [ + 103.09243092430927, + 11.152845019289984 + ], + [ + 102.5848258482585, + 12.186998325925842 + ] + ] + ] + }, + "countryRef": { + "country": "Cambodia", + "count": 216, + "this": { + "country": "Cambodia", + "year": 2003, + "map_id": 116, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1617, + "child_mortality": 25383, + "fertility": 3.4, + "life_expect": 63, + "population": 5084597 + }, + "x": 1617, + "y": 25383, + "size": 5084597, + "color": "Asia", + "map_id": 116 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Cambodia", + "count": 216, + "this": { + "country": "Cambodia", + "year": 2003, + "map_id": 116, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1617, + "child_mortality": 25383, + "fertility": 3.4, + "life_expect": 63, + "population": 5084597 + }, + "x": 1617, + "y": 25383, + "size": 5084597, + "color": "Asia", + "map_id": 116 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8280678286378014, + "skewed": 0.5030002508669209, + "clumpy": 0.5235904309909845, + "sparse": 0.23533492800801148, + "striated": 0.9463947075780603, + "convex": 0.9942701615948233, + "skinny": 0.14676768166249476, + "stringy": 0.32335397740250116, + "monotonic": 0.798677435337718, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Cambodia", + "count": 216, + "this": { + "country": "Cambodia", + "year": 2003, + "map_id": 116, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1617, + "child_mortality": 25383, + "fertility": 3.4, + "life_expect": 63, + "population": 5084597 + }, + "x": 1617, + "y": 25383, + "size": 5084597, + "color": "Asia", + "map_id": 116 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 105.99719209920231, + -88.47603546222223 + ], + "drag": [ + 105.99719209920231, + -88.47603546222223 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 174 + }, + { + "attrs": { + "name": "Selected Cambodia (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.83\",\"payload\":{\"numVal\":0.8280678286378014},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.5\",\"payload\":{\"numVal\":0.5030002508669209},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.52\",\"payload\":{\"numVal\":0.5235904309909845},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.24\",\"payload\":{\"numVal\":0.23533492800801148},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.95\",\"payload\":{\"numVal\":0.9463947075780603},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.99\",\"payload\":{\"numVal\":0.9942701615948233},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.15\",\"payload\":{\"numVal\":0.14676768166249476},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.32\",\"payload\":{\"numVal\":0.32335397740250116},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.8\",\"payload\":{\"numVal\":0.798677435337718},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Cambodia\",\"text\":\"Cambodia\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 175 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Cambodia (1 Countries)", + "timestamp": 1522411387531, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.3116685737502616, + "skewed": 0.7448951956175203, + "clumpy": 0.3973184755607879, + "sparse": 0.49584472494812504, + "striated": 0.9101760162410399, + "convex": 0.3370372776642778, + "skinny": 0.8610718560214174, + "stringy": 0.20620505115040833, + "monotonic": 0.4388404618387991, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 80.78704911344607, + -89.36150165999385 + ], + "drag": [ + 80.78704911344607, + -89.36150165999385 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 176 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Singapore (2 Countries)", + "timestamp": 1522411587568, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": { + "country": "Singapore", + "count": 216, + "this": { + "country": "Singapore", + "year": 2003, + "map_id": 702, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 54515, + "child_mortality": 144, + "fertility": 1.27, + "life_expect": 79.5, + "population": 1325948 + }, + "x": 54515, + "y": 144, + "size": 1325948, + "color": "Asia", + "map_id": 702 + }, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Singapore", + "count": 216, + "this": { + "country": "Singapore", + "year": 2003, + "map_id": 702, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 54515, + "child_mortality": 144, + "fertility": 1.27, + "life_expect": 79.5, + "population": 1325948 + }, + "x": 54515, + "y": 144, + "size": 1325948, + "color": "Asia", + "map_id": 702 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.11312793860691084, + "skewed": 0.9301508588311518, + "clumpy": 0.18701746306503986, + "sparse": 0.9106555174881119, + "striated": 0.5760488569387341, + "convex": 0.27588824391267885, + "skinny": 0.4826733500015803, + "stringy": 0.11193519054283652, + "monotonic": 0.9111041630984684, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Cambodia", + "count": 216, + "this": { + "country": "Cambodia", + "year": 2003, + "map_id": 116, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1617, + "child_mortality": 25383, + "fertility": 3.4, + "life_expect": 63, + "population": 5084597 + }, + "x": 1617, + "y": 25383, + "size": 5084597, + "color": "Asia", + "map_id": 116 + }, + { + "country": "Singapore", + "count": 216, + "this": { + "country": "Singapore", + "year": 2003, + "map_id": 702, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 54515, + "child_mortality": 144, + "fertility": 1.27, + "life_expect": 79.5, + "population": 1325948 + }, + "x": 54515, + "y": 144, + "size": 1325948, + "color": "Asia", + "map_id": 702 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -167.3036761782004, + 74.27783248031085 + ], + "drag": [ + -167.3036761782004, + 74.27783248031085 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 177 + }, + { + "attrs": { + "name": "Selected Singapore (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.11\",\"payload\":{\"numVal\":0.11312793860691084},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.93\",\"payload\":{\"numVal\":0.9301508588311518},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.19\",\"payload\":{\"numVal\":0.18701746306503986},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.91\",\"payload\":{\"numVal\":0.9106555174881119},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.58\",\"payload\":{\"numVal\":0.5760488569387341},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.28\",\"payload\":{\"numVal\":0.27588824391267885},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.48\",\"payload\":{\"numVal\":0.4826733500015803},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.11\",\"payload\":{\"numVal\":0.11193519054283652},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.91\",\"payload\":{\"numVal\":0.9111041630984684},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Cambodia\",\"text\":\"Cambodia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Singapore\",\"text\":\"Singapore\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 178 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Singapore (2 Countries)", + "timestamp": 1522411587568, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 116, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 102.5848258482585, + 12.186998325925842 + ], + [ + 102.34722347223476, + 13.393792610101556 + ], + [ + 102.98802988029882, + 14.22653144294091 + ], + [ + 104.28044280442805, + 14.41609800651409 + ], + [ + 105.22005220052199, + 14.273923083834205 + ], + [ + 106.04446044460445, + 13.881249487861183 + ], + [ + 106.49806498064981, + 14.570120839417314 + ], + [ + 107.38367383673835, + 14.202835622494263 + ], + [ + 107.61407614076143, + 13.535967532781456 + ], + [ + 107.49167491674916, + 12.337636041622389 + ], + [ + 105.81045810458107, + 11.567521877106316 + ], + [ + 106.24966249662498, + 10.961585897113466 + ], + [ + 105.19845198451986, + 10.888805877170185 + ], + [ + 104.33444334443345, + 10.485976929577163 + ], + [ + 103.49563495634959, + 10.633229528067048 + ], + [ + 103.09243092430927, + 11.152845019289984 + ], + [ + 102.5848258482585, + 12.186998325925842 + ] + ] + ] + }, + "countryRef": { + "country": "Cambodia", + "count": 216, + "this": { + "country": "Cambodia", + "year": 2003, + "map_id": 116, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1617, + "child_mortality": 25383, + "fertility": 3.4, + "life_expect": 63, + "population": 5084597 + }, + "x": 1617, + "y": 25383, + "size": 5084597, + "color": "Asia", + "map_id": 116 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Cambodia", + "count": 216, + "this": { + "country": "Cambodia", + "year": 2003, + "map_id": 116, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1617, + "child_mortality": 25383, + "fertility": 3.4, + "life_expect": 63, + "population": 5084597 + }, + "x": 1617, + "y": 25383, + "size": 5084597, + "color": "Asia", + "map_id": 116 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8280678286378014, + "skewed": 0.5030002508669209, + "clumpy": 0.5235904309909845, + "sparse": 0.23533492800801148, + "striated": 0.9463947075780603, + "convex": 0.9942701615948233, + "skinny": 0.14676768166249476, + "stringy": 0.32335397740250116, + "monotonic": 0.798677435337718, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Cambodia", + "count": 216, + "this": { + "country": "Cambodia", + "year": 2003, + "map_id": 116, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1617, + "child_mortality": 25383, + "fertility": 3.4, + "life_expect": 63, + "population": 5084597 + }, + "x": 1617, + "y": 25383, + "size": 5084597, + "color": "Asia", + "map_id": 116 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 105.99719209920231, + -88.47603546222223 + ], + "drag": [ + 105.99719209920231, + -88.47603546222223 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 179 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411597711, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Singapore", + "count": 216, + "this": { + "country": "Singapore", + "year": 2003, + "map_id": 702, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 54515, + "child_mortality": 144, + "fertility": 1.27, + "life_expect": 79.5, + "population": 1325948 + }, + "x": 54515, + "y": 144, + "size": 1325948, + "color": "Asia", + "map_id": 702 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9483020600789311, + "skewed": 0.2604148991369293, + "clumpy": 0.759317199763264, + "sparse": 0.09224089468769248, + "striated": 0.43882258671700947, + "convex": 0.9415269940715558, + "skinny": 0.5681389702097754, + "stringy": 0.25976385122737455, + "monotonic": 0.9610272471236778, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 104.85127650894066, + -63.34164382569089 + ], + "drag": [ + 104.85127650894066, + -63.34164382569089 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 180 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.95\",\"payload\":{\"numVal\":0.9483020600789311},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.26\",\"payload\":{\"numVal\":0.2604148991369293},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.76\",\"payload\":{\"numVal\":0.759317199763264},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.09\",\"payload\":{\"numVal\":0.09224089468769248},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.44\",\"payload\":{\"numVal\":0.43882258671700947},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.94\",\"payload\":{\"numVal\":0.9415269940715558},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.57\",\"payload\":{\"numVal\":0.5681389702097754},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.26\",\"payload\":{\"numVal\":0.25976385122737455},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.96\",\"payload\":{\"numVal\":0.9610272471236778},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 181 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411597711, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": { + "country": "Singapore", + "count": 216, + "this": { + "country": "Singapore", + "year": 2003, + "map_id": 702, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 54515, + "child_mortality": 144, + "fertility": 1.27, + "life_expect": 79.5, + "population": 1325948 + }, + "x": 54515, + "y": 144, + "size": 1325948, + "color": "Asia", + "map_id": 702 + }, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Singapore", + "count": 216, + "this": { + "country": "Singapore", + "year": 2003, + "map_id": 702, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 54515, + "child_mortality": 144, + "fertility": 1.27, + "life_expect": 79.5, + "population": 1325948 + }, + "x": 54515, + "y": 144, + "size": 1325948, + "color": "Asia", + "map_id": 702 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.11312793860691084, + "skewed": 0.9301508588311518, + "clumpy": 0.18701746306503986, + "sparse": 0.9106555174881119, + "striated": 0.5760488569387341, + "convex": 0.27588824391267885, + "skinny": 0.4826733500015803, + "stringy": 0.11193519054283652, + "monotonic": 0.9111041630984684, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Cambodia", + "count": 216, + "this": { + "country": "Cambodia", + "year": 2003, + "map_id": 116, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1617, + "child_mortality": 25383, + "fertility": 3.4, + "life_expect": 63, + "population": 5084597 + }, + "x": 1617, + "y": 25383, + "size": 5084597, + "color": "Asia", + "map_id": 116 + }, + { + "country": "Singapore", + "count": 216, + "this": { + "country": "Singapore", + "year": 2003, + "map_id": 702, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 54515, + "child_mortality": 144, + "fertility": 1.27, + "life_expect": 79.5, + "population": 1325948 + }, + "x": 54515, + "y": 144, + "size": 1325948, + "color": "Asia", + "map_id": 702 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -167.3036761782004, + 74.27783248031085 + ], + "drag": [ + -167.3036761782004, + 74.27783248031085 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 182 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Tajikistan (1 Countries)", + "timestamp": 1522411610949, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 762, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.01251012510127, + 40.24454229336058 + ], + [ + 70.6489064890649, + 39.93649662755416 + ], + [ + 69.55809558095581, + 40.102367370680696 + ], + [ + 69.46449464494646, + 39.52689744554782 + ], + [ + 70.54810548105482, + 39.604755141301084 + ], + [ + 71.7829178291783, + 39.27978388946134 + ], + [ + 73.67653676536767, + 39.43042160515789 + ], + [ + 73.92853928539287, + 38.50628460773861 + ], + [ + 74.25614256142563, + 38.6061455653352 + ], + [ + 74.86454864548645, + 38.37934271248871 + ], + [ + 74.82854828548287, + 37.99005423372235 + ], + [ + 74.97974979749799, + 37.419661984399454 + ], + [ + 73.95013950139503, + 37.42135454300279 + ], + [ + 73.2589325893259, + 37.4958271215494 + ], + [ + 72.63612636126362, + 37.04729909166642 + ], + [ + 72.19332193321935, + 36.949130692673165 + ], + [ + 71.84411844118443, + 36.73756086725666 + ], + [ + 71.44811448114481, + 37.065917236303065 + ], + [ + 71.5417154171542, + 37.90542630355574 + ], + [ + 71.23931239312395, + 37.95281794444904 + ], + [ + 71.34731347313473, + 38.25917105165213 + ], + [ + 70.80730807308075, + 38.48597390449862 + ], + [ + 70.37530375303754, + 38.13899939081557 + ], + [ + 70.2709027090271, + 37.73447788461921 + ], + [ + 70.11610116101161, + 37.58891784473266 + ], + [ + 69.51849518495186, + 37.60922854797265 + ], + [ + 69.19449194491946, + 37.15054516646967 + ], + [ + 68.85968859688597, + 37.34349684724951 + ], + [ + 68.13608136081362, + 37.02360327121977 + ], + [ + 67.83007830078301, + 37.14546749065967 + ], + [ + 68.39168391683918, + 38.15761753545222 + ], + [ + 68.17568175681757, + 38.902343320918305 + ], + [ + 67.44127441274415, + 39.13930152538478 + ], + [ + 67.70047700477005, + 39.581059320854436 + ], + [ + 68.53568535685358, + 39.53366767996114 + ], + [ + 69.0108901089011, + 40.08544178464737 + ], + [ + 69.33129331293313, + 40.728614053913546 + ], + [ + 70.66690666906669, + 40.96049458257002 + ], + [ + 70.45810458104583, + 40.496733525257056 + ], + [ + 70.60210602106022, + 40.21915391431061 + ], + [ + 71.01251012510127, + 40.24454229336058 + ] + ] + ] + }, + "countryRef": { + "country": "Tajikistan", + "count": 216, + "this": { + "country": "Tajikistan", + "year": 2003, + "map_id": 762, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1522, + "child_mortality": 13412, + "fertility": 3.7, + "life_expect": 68, + "population": 1789784 + }, + "x": 1522, + "y": 13412, + "size": 1789784, + "color": "Asia", + "map_id": 762 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Tajikistan", + "count": 216, + "this": { + "country": "Tajikistan", + "year": 2003, + "map_id": 762, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1522, + "child_mortality": 13412, + "fertility": 3.7, + "life_expect": 68, + "population": 1789784 + }, + "x": 1522, + "y": 13412, + "size": 1789784, + "color": "Asia", + "map_id": 762 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6239117470170177, + "skewed": 0.02779302303215614, + "clumpy": 0.8167343523703385, + "sparse": 0.1138803918715221, + "striated": 0.9517828290109456, + "convex": 0.11519794234188718, + "skinny": 0.4171155942532392, + "stringy": 0.4618209677404126, + "monotonic": 0.3982505738497466, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Tajikistan", + "count": 216, + "this": { + "country": "Tajikistan", + "year": 2003, + "map_id": 762, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1522, + "child_mortality": 13412, + "fertility": 3.7, + "life_expect": 68, + "population": 1789784 + }, + "x": 1522, + "y": 13412, + "size": 1789784, + "color": "Asia", + "map_id": 762 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 69.90085100596043, + -87.46242051908752 + ], + "drag": [ + 69.90085100596043, + -87.46242051908752 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 183 + }, + { + "attrs": { + "name": "Selected Tajikistan (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.62\",\"payload\":{\"numVal\":0.6239117470170177},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.03\",\"payload\":{\"numVal\":0.02779302303215614},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.82\",\"payload\":{\"numVal\":0.8167343523703385},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.11\",\"payload\":{\"numVal\":0.1138803918715221},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.95\",\"payload\":{\"numVal\":0.9517828290109456},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.12\",\"payload\":{\"numVal\":0.11519794234188718},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.42\",\"payload\":{\"numVal\":0.4171155942532392},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.46\",\"payload\":{\"numVal\":0.4618209677404126},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.4\",\"payload\":{\"numVal\":0.3982505738497466},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Tajikistan\",\"text\":\"Tajikistan\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 184 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Tajikistan (1 Countries)", + "timestamp": 1522411610949, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Singapore", + "count": 216, + "this": { + "country": "Singapore", + "year": 2003, + "map_id": 702, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 54515, + "child_mortality": 144, + "fertility": 1.27, + "life_expect": 79.5, + "population": 1325948 + }, + "x": 54515, + "y": 144, + "size": 1325948, + "color": "Asia", + "map_id": 702 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.9483020600789311, + "skewed": 0.2604148991369293, + "clumpy": 0.759317199763264, + "sparse": 0.09224089468769248, + "striated": 0.43882258671700947, + "convex": 0.9415269940715558, + "skinny": 0.5681389702097754, + "stringy": 0.25976385122737455, + "monotonic": 0.9610272471236778, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 104.85127650894066, + -63.34164382569089 + ], + "drag": [ + 104.85127650894066, + -63.34164382569089 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 185 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Slovenia (2 Countries)", + "timestamp": 1522411619830, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 705, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.80793807938079, + 46.50870168429236 + ], + [ + 14.632346323463253, + 46.432536547142405 + ], + [ + 15.136351363513654, + 46.65933939998891 + ], + [ + 16.01116011160113, + 46.683035220435556 + ], + [ + 16.201962019620197, + 46.852291080768765 + ], + [ + 16.37116371163711, + 46.842135729148765 + ], + [ + 16.56556565565657, + 46.503624008482376 + ], + [ + 15.769957699576992, + 46.23789230775924 + ], + [ + 15.672756727567275, + 45.83337080156289 + ], + [ + 15.323553235532358, + 45.73181728536298 + ], + [ + 15.327153271532723, + 45.452545115813194 + ], + [ + 14.934749347493494, + 45.47116326044983 + ], + [ + 14.59634596345964, + 45.63534144497305 + ], + [ + 14.412744127441272, + 45.46608558463984 + ], + [ + 13.714337143371438, + 45.49993675670649 + ], + [ + 13.937539375393754, + 45.5913349212864 + ], + [ + 13.696336963369646, + 46.01616713072275 + ], + [ + 13.80793807938079, + 46.50870168429236 + ] + ] + ] + }, + "countryRef": { + "country": "Slovenia", + "count": 216, + "this": { + "country": "Slovenia", + "year": 2003, + "map_id": 705, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 24639, + "child_mortality": 83, + "fertility": 1.25, + "life_expect": 76.5, + "population": 1530979 + }, + "x": 24639, + "y": 83, + "size": 1530979, + "color": "Europe", + "map_id": 705 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Slovenia", + "count": 216, + "this": { + "country": "Slovenia", + "year": 2003, + "map_id": 705, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 24639, + "child_mortality": 83, + "fertility": 1.25, + "life_expect": 76.5, + "population": 1530979 + }, + "x": 24639, + "y": 83, + "size": 1530979, + "color": "Europe", + "map_id": 705 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.14026427654220552, + "skewed": 0.2563299920812445, + "clumpy": 0.3411662737231673, + "sparse": 0.1427687795183119, + "striated": 0.7652912712517086, + "convex": 0.40170122791265994, + "skinny": 0.4792334072726989, + "stringy": 0.7225758411134242, + "monotonic": 0.07950052741443603, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Tajikistan", + "count": 216, + "this": { + "country": "Tajikistan", + "year": 2003, + "map_id": 762, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1522, + "child_mortality": 13412, + "fertility": 3.7, + "life_expect": 68, + "population": 1789784 + }, + "x": 1522, + "y": 13412, + "size": 1789784, + "color": "Asia", + "map_id": 762 + }, + { + "country": "Slovenia", + "count": 216, + "this": { + "country": "Slovenia", + "year": 2003, + "map_id": 705, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 24639, + "child_mortality": 83, + "fertility": 1.25, + "life_expect": 76.5, + "population": 1530979 + }, + "x": 24639, + "y": 83, + "size": 1530979, + "color": "Europe", + "map_id": 705 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 16.04281826366305, + -86.9621809273841 + ], + "drag": [ + 16.04281826366305, + -86.9621809273841 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 186 + }, + { + "attrs": { + "name": "Selected Slovenia (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.14\",\"payload\":{\"numVal\":0.14026427654220552},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.26\",\"payload\":{\"numVal\":0.2563299920812445},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.34\",\"payload\":{\"numVal\":0.3411662737231673},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.14\",\"payload\":{\"numVal\":0.1427687795183119},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.77\",\"payload\":{\"numVal\":0.7652912712517086},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.4\",\"payload\":{\"numVal\":0.40170122791265994},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.48\",\"payload\":{\"numVal\":0.4792334072726989},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.72\",\"payload\":{\"numVal\":0.7225758411134242},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.08\",\"payload\":{\"numVal\":0.07950052741443603},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Tajikistan\",\"text\":\"Tajikistan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Slovenia\",\"text\":\"Slovenia\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 187 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Slovenia (2 Countries)", + "timestamp": 1522411619830, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 762, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 71.01251012510127, + 40.24454229336058 + ], + [ + 70.6489064890649, + 39.93649662755416 + ], + [ + 69.55809558095581, + 40.102367370680696 + ], + [ + 69.46449464494646, + 39.52689744554782 + ], + [ + 70.54810548105482, + 39.604755141301084 + ], + [ + 71.7829178291783, + 39.27978388946134 + ], + [ + 73.67653676536767, + 39.43042160515789 + ], + [ + 73.92853928539287, + 38.50628460773861 + ], + [ + 74.25614256142563, + 38.6061455653352 + ], + [ + 74.86454864548645, + 38.37934271248871 + ], + [ + 74.82854828548287, + 37.99005423372235 + ], + [ + 74.97974979749799, + 37.419661984399454 + ], + [ + 73.95013950139503, + 37.42135454300279 + ], + [ + 73.2589325893259, + 37.4958271215494 + ], + [ + 72.63612636126362, + 37.04729909166642 + ], + [ + 72.19332193321935, + 36.949130692673165 + ], + [ + 71.84411844118443, + 36.73756086725666 + ], + [ + 71.44811448114481, + 37.065917236303065 + ], + [ + 71.5417154171542, + 37.90542630355574 + ], + [ + 71.23931239312395, + 37.95281794444904 + ], + [ + 71.34731347313473, + 38.25917105165213 + ], + [ + 70.80730807308075, + 38.48597390449862 + ], + [ + 70.37530375303754, + 38.13899939081557 + ], + [ + 70.2709027090271, + 37.73447788461921 + ], + [ + 70.11610116101161, + 37.58891784473266 + ], + [ + 69.51849518495186, + 37.60922854797265 + ], + [ + 69.19449194491946, + 37.15054516646967 + ], + [ + 68.85968859688597, + 37.34349684724951 + ], + [ + 68.13608136081362, + 37.02360327121977 + ], + [ + 67.83007830078301, + 37.14546749065967 + ], + [ + 68.39168391683918, + 38.15761753545222 + ], + [ + 68.17568175681757, + 38.902343320918305 + ], + [ + 67.44127441274415, + 39.13930152538478 + ], + [ + 67.70047700477005, + 39.581059320854436 + ], + [ + 68.53568535685358, + 39.53366767996114 + ], + [ + 69.0108901089011, + 40.08544178464737 + ], + [ + 69.33129331293313, + 40.728614053913546 + ], + [ + 70.66690666906669, + 40.96049458257002 + ], + [ + 70.45810458104583, + 40.496733525257056 + ], + [ + 70.60210602106022, + 40.21915391431061 + ], + [ + 71.01251012510127, + 40.24454229336058 + ] + ] + ] + }, + "countryRef": { + "country": "Tajikistan", + "count": 216, + "this": { + "country": "Tajikistan", + "year": 2003, + "map_id": 762, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1522, + "child_mortality": 13412, + "fertility": 3.7, + "life_expect": 68, + "population": 1789784 + }, + "x": 1522, + "y": 13412, + "size": 1789784, + "color": "Asia", + "map_id": 762 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Tajikistan", + "count": 216, + "this": { + "country": "Tajikistan", + "year": 2003, + "map_id": 762, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1522, + "child_mortality": 13412, + "fertility": 3.7, + "life_expect": 68, + "population": 1789784 + }, + "x": 1522, + "y": 13412, + "size": 1789784, + "color": "Asia", + "map_id": 762 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.6239117470170177, + "skewed": 0.02779302303215614, + "clumpy": 0.8167343523703385, + "sparse": 0.1138803918715221, + "striated": 0.9517828290109456, + "convex": 0.11519794234188718, + "skinny": 0.4171155942532392, + "stringy": 0.4618209677404126, + "monotonic": 0.3982505738497466, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Tajikistan", + "count": 216, + "this": { + "country": "Tajikistan", + "year": 2003, + "map_id": 762, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1522, + "child_mortality": 13412, + "fertility": 3.7, + "life_expect": 68, + "population": 1789784 + }, + "x": 1522, + "y": 13412, + "size": 1789784, + "color": "Asia", + "map_id": 762 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 69.90085100596043, + -87.46242051908752 + ], + "drag": [ + 69.90085100596043, + -87.46242051908752 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 188 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411626073, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Slovenia", + "count": 216, + "this": { + "country": "Slovenia", + "year": 2003, + "map_id": 705, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 24639, + "child_mortality": 83, + "fertility": 1.25, + "life_expect": 76.5, + "population": 1530979 + }, + "x": 24639, + "y": 83, + "size": 1530979, + "color": "Europe", + "map_id": 705 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.22629709713990498, + "skewed": 0.1384885510616023, + "clumpy": 0.37078184439434225, + "sparse": 0.592714412107163, + "striated": 0.6411878461447245, + "convex": 0.549796625462329, + "skinny": 0.9575152074986846, + "stringy": 0.8560971557617516, + "monotonic": 0.7139398249553497, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 99.69465635276325, + -67.17124516703613 + ], + "drag": [ + 99.69465635276325, + -67.17124516703613 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 189 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.23\",\"payload\":{\"numVal\":0.22629709713990498},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.14\",\"payload\":{\"numVal\":0.1384885510616023},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.37\",\"payload\":{\"numVal\":0.37078184439434225},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.59\",\"payload\":{\"numVal\":0.592714412107163},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.64\",\"payload\":{\"numVal\":0.6411878461447245},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.55\",\"payload\":{\"numVal\":0.549796625462329},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.96\",\"payload\":{\"numVal\":0.9575152074986846},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.86\",\"payload\":{\"numVal\":0.8560971557617516},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.71\",\"payload\":{\"numVal\":0.7139398249553497},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 190 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411626073, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 705, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 13.80793807938079, + 46.50870168429236 + ], + [ + 14.632346323463253, + 46.432536547142405 + ], + [ + 15.136351363513654, + 46.65933939998891 + ], + [ + 16.01116011160113, + 46.683035220435556 + ], + [ + 16.201962019620197, + 46.852291080768765 + ], + [ + 16.37116371163711, + 46.842135729148765 + ], + [ + 16.56556565565657, + 46.503624008482376 + ], + [ + 15.769957699576992, + 46.23789230775924 + ], + [ + 15.672756727567275, + 45.83337080156289 + ], + [ + 15.323553235532358, + 45.73181728536298 + ], + [ + 15.327153271532723, + 45.452545115813194 + ], + [ + 14.934749347493494, + 45.47116326044983 + ], + [ + 14.59634596345964, + 45.63534144497305 + ], + [ + 14.412744127441272, + 45.46608558463984 + ], + [ + 13.714337143371438, + 45.49993675670649 + ], + [ + 13.937539375393754, + 45.5913349212864 + ], + [ + 13.696336963369646, + 46.01616713072275 + ], + [ + 13.80793807938079, + 46.50870168429236 + ] + ] + ] + }, + "countryRef": { + "country": "Slovenia", + "count": 216, + "this": { + "country": "Slovenia", + "year": 2003, + "map_id": 705, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 24639, + "child_mortality": 83, + "fertility": 1.25, + "life_expect": 76.5, + "population": 1530979 + }, + "x": 24639, + "y": 83, + "size": 1530979, + "color": "Europe", + "map_id": 705 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Slovenia", + "count": 216, + "this": { + "country": "Slovenia", + "year": 2003, + "map_id": 705, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 24639, + "child_mortality": 83, + "fertility": 1.25, + "life_expect": 76.5, + "population": 1530979 + }, + "x": 24639, + "y": 83, + "size": 1530979, + "color": "Europe", + "map_id": 705 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.14026427654220552, + "skewed": 0.2563299920812445, + "clumpy": 0.3411662737231673, + "sparse": 0.1427687795183119, + "striated": 0.7652912712517086, + "convex": 0.40170122791265994, + "skinny": 0.4792334072726989, + "stringy": 0.7225758411134242, + "monotonic": 0.07950052741443603, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Tajikistan", + "count": 216, + "this": { + "country": "Tajikistan", + "year": 2003, + "map_id": 762, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1522, + "child_mortality": 13412, + "fertility": 3.7, + "life_expect": 68, + "population": 1789784 + }, + "x": 1522, + "y": 13412, + "size": 1789784, + "color": "Asia", + "map_id": 762 + }, + { + "country": "Slovenia", + "count": 216, + "this": { + "country": "Slovenia", + "year": 2003, + "map_id": 705, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 24639, + "child_mortality": 83, + "fertility": 1.25, + "life_expect": 76.5, + "population": 1530979 + }, + "x": 24639, + "y": 83, + "size": 1530979, + "color": "Europe", + "map_id": 705 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 16.04281826366305, + -86.9621809273841 + ], + "drag": [ + 16.04281826366305, + -86.9621809273841 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 191 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Haiti (1 Countries)", + "timestamp": 1522411687034, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": { + "country": "Haiti", + "count": 216, + "this": { + "country": "Haiti", + "year": 2003, + "map_id": 332, + "continent": "America", + "main_religion": "Christian", + "gdp": 1637, + "child_mortality": 25004, + "fertility": 3.95, + "life_expect": 59.9, + "population": 3533767 + }, + "x": 1637, + "y": 25004, + "size": 3533767, + "color": "America", + "map_id": 332 + }, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Haiti", + "count": 216, + "this": { + "country": "Haiti", + "year": 2003, + "map_id": 332, + "continent": "America", + "main_religion": "Christian", + "gdp": 1637, + "child_mortality": 25004, + "fertility": 3.95, + "life_expect": 59.9, + "population": 3533767 + }, + "x": 1637, + "y": 25004, + "size": 3533767, + "color": "America", + "map_id": 332 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.49365348792441255, + "skewed": 0.02107872139133593, + "clumpy": 0.8354812640471125, + "sparse": 0.07475474840364704, + "striated": 0.3211265428651071, + "convex": 0.3977050925901213, + "skinny": 0.9141763321004905, + "stringy": 0.7949424211163587, + "monotonic": 0.19950162823681716, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Haiti", + "count": 216, + "this": { + "country": "Haiti", + "year": 2003, + "map_id": 332, + "continent": "America", + "main_religion": "Christian", + "gdp": 1637, + "child_mortality": 25004, + "fertility": 3.95, + "life_expect": 59.9, + "population": 3533767 + }, + "x": 1637, + "y": 25004, + "size": 3533767, + "color": "America", + "map_id": 332 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -170.1684651538545, + 74.27783248031085 + ], + "drag": [ + -170.1684651538545, + 74.27783248031085 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 192 + }, + { + "attrs": { + "name": "Selected Haiti (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.49\",\"payload\":{\"numVal\":0.49365348792441255},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.02\",\"payload\":{\"numVal\":0.02107872139133593},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.84\",\"payload\":{\"numVal\":0.8354812640471125},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.07\",\"payload\":{\"numVal\":0.07475474840364704},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.32\",\"payload\":{\"numVal\":0.3211265428651071},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.4\",\"payload\":{\"numVal\":0.3977050925901213},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.91\",\"payload\":{\"numVal\":0.9141763321004905},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.79\",\"payload\":{\"numVal\":0.7949424211163587},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.2\",\"payload\":{\"numVal\":0.19950162823681716},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Haiti\",\"text\":\"Haiti\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 193 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Haiti (1 Countries)", + "timestamp": 1522411687034, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Slovenia", + "count": 216, + "this": { + "country": "Slovenia", + "year": 2003, + "map_id": 705, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 24639, + "child_mortality": 83, + "fertility": 1.25, + "life_expect": 76.5, + "population": 1530979 + }, + "x": 24639, + "y": 83, + "size": 1530979, + "color": "Europe", + "map_id": 705 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.22629709713990498, + "skewed": 0.1384885510616023, + "clumpy": 0.37078184439434225, + "sparse": 0.592714412107163, + "striated": 0.6411878461447245, + "convex": 0.549796625462329, + "skinny": 0.9575152074986846, + "stringy": 0.8560971557617516, + "monotonic": 0.7139398249553497, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 99.69465635276325, + -67.17124516703613 + ], + "drag": [ + 99.69465635276325, + -67.17124516703613 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 194 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Chile (2 Countries)", + "timestamp": 1522411696127, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 152, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -68.63288632886328, + -52.63630362308686 + ], + [ + -68.63288632886328, + -54.868788420881785 + ], + [ + -67.56367563675636, + -54.87048097948511 + ], + [ + -66.95886958869588, + -54.897561917138425 + ], + [ + -67.290072900729, + -55.30208342333478 + ], + [ + -68.14688146881468, + -55.611821647744534 + ], + [ + -68.640086400864, + -55.579663034281225 + ], + [ + -69.23049230492305, + -55.49842022132129 + ], + [ + -69.95769957699576, + -55.19883734853153 + ], + [ + -71.00531005310053, + -55.053277308644965 + ], + [ + -72.26532265322653, + -54.49473296954541 + ], + [ + -73.28413284132841, + -53.95819189228916 + ], + [ + -74.66294662946629, + -52.837718096883364 + ], + [ + -73.83853838538386, + -53.04759536369654 + ], + [ + -72.43452434524345, + -53.71615601201268 + ], + [ + -71.10611106111061, + -54.074978435919064 + ], + [ + -70.59130591305913, + -53.61629505441609 + ], + [ + -70.26730267302672, + -52.93080882006663 + ], + [ + -69.34569345693457, + -52.517824520853615 + ], + [ + -68.63288632886328, + -52.63630362308686 + ] + ] + ], + [ + [ + [ + -67.10647106471065, + -22.73556333662355 + ], + [ + -66.9840698406984, + -22.986062009916687 + ], + [ + -67.32967329673296, + -24.025292992362544 + ], + [ + -68.41688416884169, + -24.517827545932157 + ], + [ + -68.38448384483844, + -26.18499777021419 + ], + [ + -68.59328593285933, + -26.50658390484727 + ], + [ + -68.29448294482944, + -26.899257500820298 + ], + [ + -69.0000900009, + -27.520426508243148 + ], + [ + -69.65529655296552, + -28.45979653309241 + ], + [ + -70.01530015300153, + -29.368700503081698 + ], + [ + -69.9180991809918, + -30.336844024187613 + ], + [ + -70.53370533705336, + -31.36422709641014 + ], + [ + -70.07290072900729, + -33.09063687180879 + ], + [ + -69.81369813698137, + -33.27343320096865 + ], + [ + -69.81729817298172, + -34.19418508118127 + ], + [ + -70.38970389703897, + -35.1690988367005 + ], + [ + -70.36450364503645, + -36.005222786746515 + ], + [ + -71.12051120511205, + -36.658550407632674 + ], + [ + -71.11691116911169, + -37.577609729241956 + ], + [ + -70.81450814508145, + -38.552523484761196 + ], + [ + -71.4121141211412, + -38.91642358447758 + ], + [ + -71.68211682116821, + -39.80840196843354 + ], + [ + -71.9161191611916, + -40.832399923449415 + ], + [ + -71.74691746917469, + -42.05104211784846 + ], + [ + -72.15012150121501, + -42.2541491502483 + ], + [ + -71.9161191611916, + -43.408474117720736 + ], + [ + -71.46251462514624, + -43.787607244867104 + ], + [ + -71.79371793717937, + -44.20736177849344 + ], + [ + -71.32931329313293, + -44.407083693686616 + ], + [ + -71.22131221312213, + -44.78452426222966 + ], + [ + -71.66051660516605, + -44.97409082580284 + ], + [ + -71.55251552515524, + -45.56140866115905 + ], + [ + -71.9161191611916, + -46.884989488964685 + ], + [ + -72.44892448924489, + -47.73803902504402 + ], + [ + -72.330123301233, + -48.24411404744029 + ], + [ + -72.64692646926468, + -48.878823523689796 + ], + [ + -73.41373413734136, + -49.31888876055611 + ], + [ + -73.32733327333273, + -50.37843044624196 + ], + [ + -72.97452974529745, + -50.74063798735501 + ], + [ + -72.30852308523085, + -50.67632076042839 + ], + [ + -72.330123301233, + -51.42612422170447 + ], + [ + -71.9161191611916, + -52.00836438125068 + ], + [ + -69.49689496894969, + -52.14207651091391 + ], + [ + -68.57168571685716, + -52.29948446102379 + ], + [ + -69.46089460894609, + -52.29271422661046 + ], + [ + -69.94329943299432, + -52.5381352240936 + ], + [ + -70.84330843308433, + -52.89865020660332 + ], + [ + -71.00531005310053, + -53.83294255564259 + ], + [ + -71.430114301143, + -53.856638376089236 + ], + [ + -72.55692556925568, + -53.531667124249495 + ], + [ + -73.70173701737016, + -52.8343329796767 + ], + [ + -74.94734947349473, + -52.262248171750485 + ], + [ + -75.26055260552606, + -51.62923125410431 + ], + [ + -74.97614976149761, + -51.04360597735143 + ], + [ + -75.48015480154801, + -50.37843044624196 + ], + [ + -75.60975609756098, + -48.674023932686616 + ], + [ + -75.18135181351813, + -47.71265064599404 + ], + [ + -74.12654126541265, + -46.93915136427131 + ], + [ + -75.64575645756457, + -46.6480312844982 + ], + [ + -74.69174691746917, + -45.76451569355889 + ], + [ + -74.35334353343534, + -44.10242314508686 + ], + [ + -73.24093240932409, + -44.45447533457992 + ], + [ + -72.7189271892719, + -42.38278360410153 + ], + [ + -73.38853388533884, + -42.11705190337841 + ], + [ + -73.70173701737016, + -43.366160152637434 + ], + [ + -74.33174331743317, + -43.22567778856087 + ], + [ + -74.01854018540185, + -41.79546576874532 + ], + [ + -73.67653676536764, + -39.94211409809677 + ], + [ + -73.21933219332193, + -39.25832042235064 + ], + [ + -73.50733507335073, + -38.283406666831404 + ], + [ + -73.58653586535866, + -37.15616263701229 + ], + [ + -73.16533165331653, + -37.12400402354898 + ], + [ + -72.55332553325533, + -35.50930311597023 + ], + [ + -71.86211862118621, + -33.90983523582149 + ], + [ + -71.43731437314372, + -32.41869110628598 + ], + [ + -71.66771667716677, + -30.920776742337154 + ], + [ + -71.36891368913689, + -30.09650070251447 + ], + [ + -71.49131491314913, + -28.8609329220821 + ], + [ + -70.90450904509045, + -27.640598169079716 + ], + [ + -70.72450724507245, + -25.70600368547123 + ], + [ + -70.40410404104041, + -23.629234279182853 + ], + [ + -70.09090090900908, + -21.393364364181267 + ], + [ + -70.16290162901629, + -19.756660194759206 + ], + [ + -70.37170371703716, + -18.348451436786974 + ], + [ + -69.85689856898568, + -18.092875087683836 + ], + [ + -69.59049590495904, + -17.58002983087424 + ], + [ + -69.10089100891008, + -18.260438389413707 + ], + [ + -68.96768967689677, + -18.981468354433147 + ], + [ + -68.44208442084421, + -19.404608005266155 + ], + [ + -68.75888758887588, + -20.372751526372056 + ], + [ + -68.21888218882188, + -21.49491788038118 + ], + [ + -67.82647826478265, + -22.872660583493442 + ], + [ + -67.10647106471065, + -22.73556333662355 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Chile", + "count": 216, + "this": { + "country": "Chile", + "year": 2003, + "map_id": 152, + "continent": "America", + "main_religion": "Christian", + "gdp": 15499, + "child_mortality": 2377, + "fertility": 1.99, + "life_expect": 77.8, + "population": 6909585 + }, + "x": 15499, + "y": 2377, + "size": 6909585, + "color": "America", + "map_id": 152 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Chile", + "count": 216, + "this": { + "country": "Chile", + "year": 2003, + "map_id": 152, + "continent": "America", + "main_religion": "Christian", + "gdp": 15499, + "child_mortality": 2377, + "fertility": 1.99, + "life_expect": 77.8, + "population": 6909585 + }, + "x": 15499, + "y": 2377, + "size": 6909585, + "color": "America", + "map_id": 152 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.30345305389979127, + "skewed": 0.5832745496590879, + "clumpy": 0.5639495978211091, + "sparse": 0.2151005160820858, + "striated": 0.9493126861516521, + "convex": 0.8373768964143575, + "skinny": 0.7498743033908435, + "stringy": 0.6961334320965271, + "monotonic": 0.4728769134495334, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Haiti", + "count": 216, + "this": { + "country": "Haiti", + "year": 2003, + "map_id": 332, + "continent": "America", + "main_religion": "Christian", + "gdp": 1637, + "child_mortality": 25004, + "fertility": 3.95, + "life_expect": 59.9, + "population": 3533767 + }, + "x": 1637, + "y": 25004, + "size": 3533767, + "color": "America", + "map_id": 332 + }, + { + "country": "Chile", + "count": 216, + "this": { + "country": "Chile", + "year": 2003, + "map_id": 152, + "continent": "America", + "main_religion": "Christian", + "gdp": 15499, + "child_mortality": 2377, + "fertility": 1.99, + "life_expect": 77.8, + "population": 6909585 + }, + "x": 15499, + "y": 2377, + "size": 6909585, + "color": "America", + "map_id": 152 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -69.32789321082961, + -89.22014033574892 + ], + "drag": [ + -69.32789321082961, + -89.22014033574892 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 195 + }, + { + "attrs": { + "name": "Selected Chile (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.3\",\"payload\":{\"numVal\":0.30345305389979127},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.58\",\"payload\":{\"numVal\":0.5832745496590879},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.56\",\"payload\":{\"numVal\":0.5639495978211091},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.22\",\"payload\":{\"numVal\":0.2151005160820858},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.95\",\"payload\":{\"numVal\":0.9493126861516521},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.84\",\"payload\":{\"numVal\":0.8373768964143575},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.75\",\"payload\":{\"numVal\":0.7498743033908435},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.7\",\"payload\":{\"numVal\":0.6961334320965271},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.47\",\"payload\":{\"numVal\":0.4728769134495334},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Haiti\",\"text\":\"Haiti\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Chile\",\"text\":\"Chile\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 196 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Chile (2 Countries)", + "timestamp": 1522411696127, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": { + "country": "Haiti", + "count": 216, + "this": { + "country": "Haiti", + "year": 2003, + "map_id": 332, + "continent": "America", + "main_religion": "Christian", + "gdp": 1637, + "child_mortality": 25004, + "fertility": 3.95, + "life_expect": 59.9, + "population": 3533767 + }, + "x": 1637, + "y": 25004, + "size": 3533767, + "color": "America", + "map_id": 332 + }, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Haiti", + "count": 216, + "this": { + "country": "Haiti", + "year": 2003, + "map_id": 332, + "continent": "America", + "main_religion": "Christian", + "gdp": 1637, + "child_mortality": 25004, + "fertility": 3.95, + "life_expect": 59.9, + "population": 3533767 + }, + "x": 1637, + "y": 25004, + "size": 3533767, + "color": "America", + "map_id": 332 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.49365348792441255, + "skewed": 0.02107872139133593, + "clumpy": 0.8354812640471125, + "sparse": 0.07475474840364704, + "striated": 0.3211265428651071, + "convex": 0.3977050925901213, + "skinny": 0.9141763321004905, + "stringy": 0.7949424211163587, + "monotonic": 0.19950162823681716, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Haiti", + "count": 216, + "this": { + "country": "Haiti", + "year": 2003, + "map_id": 332, + "continent": "America", + "main_religion": "Christian", + "gdp": 1637, + "child_mortality": 25004, + "fertility": 3.95, + "life_expect": 59.9, + "population": 3533767 + }, + "x": 1637, + "y": 25004, + "size": 3533767, + "color": "America", + "map_id": 332 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -170.1684651538545, + 74.27783248031085 + ], + "drag": [ + -170.1684651538545, + 74.27783248031085 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 197 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411705225, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Chile", + "count": 216, + "this": { + "country": "Chile", + "year": 2003, + "map_id": 152, + "continent": "America", + "main_religion": "Christian", + "gdp": 15499, + "child_mortality": 2377, + "fertility": 1.99, + "life_expect": 77.8, + "population": 6909585 + }, + "x": 15499, + "y": 2377, + "size": 6909585, + "color": "America", + "map_id": 152 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.044109214595360546, + "skewed": 0.7558059190374453, + "clumpy": 0.41411078666967827, + "sparse": 0.33131698031804935, + "striated": 0.7551952829866582, + "convex": 0.7046859274805535, + "skinny": 0.30936471846599023, + "stringy": 0.44705253172027115, + "monotonic": 0.2807471878607961, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 68.75493541569878, + -35.33551597018147 + ], + "drag": [ + 68.75493541569878, + -35.33551597018147 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 198 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.04\",\"payload\":{\"numVal\":0.044109214595360546},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.76\",\"payload\":{\"numVal\":0.7558059190374453},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.41\",\"payload\":{\"numVal\":0.41411078666967827},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.33\",\"payload\":{\"numVal\":0.33131698031804935},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.76\",\"payload\":{\"numVal\":0.7551952829866582},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.7\",\"payload\":{\"numVal\":0.7046859274805535},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.31\",\"payload\":{\"numVal\":0.30936471846599023},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.45\",\"payload\":{\"numVal\":0.44705253172027115},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.28\",\"payload\":{\"numVal\":0.2807471878607961},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 199 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411705225, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 152, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -68.63288632886328, + -52.63630362308686 + ], + [ + -68.63288632886328, + -54.868788420881785 + ], + [ + -67.56367563675636, + -54.87048097948511 + ], + [ + -66.95886958869588, + -54.897561917138425 + ], + [ + -67.290072900729, + -55.30208342333478 + ], + [ + -68.14688146881468, + -55.611821647744534 + ], + [ + -68.640086400864, + -55.579663034281225 + ], + [ + -69.23049230492305, + -55.49842022132129 + ], + [ + -69.95769957699576, + -55.19883734853153 + ], + [ + -71.00531005310053, + -55.053277308644965 + ], + [ + -72.26532265322653, + -54.49473296954541 + ], + [ + -73.28413284132841, + -53.95819189228916 + ], + [ + -74.66294662946629, + -52.837718096883364 + ], + [ + -73.83853838538386, + -53.04759536369654 + ], + [ + -72.43452434524345, + -53.71615601201268 + ], + [ + -71.10611106111061, + -54.074978435919064 + ], + [ + -70.59130591305913, + -53.61629505441609 + ], + [ + -70.26730267302672, + -52.93080882006663 + ], + [ + -69.34569345693457, + -52.517824520853615 + ], + [ + -68.63288632886328, + -52.63630362308686 + ] + ] + ], + [ + [ + [ + -67.10647106471065, + -22.73556333662355 + ], + [ + -66.9840698406984, + -22.986062009916687 + ], + [ + -67.32967329673296, + -24.025292992362544 + ], + [ + -68.41688416884169, + -24.517827545932157 + ], + [ + -68.38448384483844, + -26.18499777021419 + ], + [ + -68.59328593285933, + -26.50658390484727 + ], + [ + -68.29448294482944, + -26.899257500820298 + ], + [ + -69.0000900009, + -27.520426508243148 + ], + [ + -69.65529655296552, + -28.45979653309241 + ], + [ + -70.01530015300153, + -29.368700503081698 + ], + [ + -69.9180991809918, + -30.336844024187613 + ], + [ + -70.53370533705336, + -31.36422709641014 + ], + [ + -70.07290072900729, + -33.09063687180879 + ], + [ + -69.81369813698137, + -33.27343320096865 + ], + [ + -69.81729817298172, + -34.19418508118127 + ], + [ + -70.38970389703897, + -35.1690988367005 + ], + [ + -70.36450364503645, + -36.005222786746515 + ], + [ + -71.12051120511205, + -36.658550407632674 + ], + [ + -71.11691116911169, + -37.577609729241956 + ], + [ + -70.81450814508145, + -38.552523484761196 + ], + [ + -71.4121141211412, + -38.91642358447758 + ], + [ + -71.68211682116821, + -39.80840196843354 + ], + [ + -71.9161191611916, + -40.832399923449415 + ], + [ + -71.74691746917469, + -42.05104211784846 + ], + [ + -72.15012150121501, + -42.2541491502483 + ], + [ + -71.9161191611916, + -43.408474117720736 + ], + [ + -71.46251462514624, + -43.787607244867104 + ], + [ + -71.79371793717937, + -44.20736177849344 + ], + [ + -71.32931329313293, + -44.407083693686616 + ], + [ + -71.22131221312213, + -44.78452426222966 + ], + [ + -71.66051660516605, + -44.97409082580284 + ], + [ + -71.55251552515524, + -45.56140866115905 + ], + [ + -71.9161191611916, + -46.884989488964685 + ], + [ + -72.44892448924489, + -47.73803902504402 + ], + [ + -72.330123301233, + -48.24411404744029 + ], + [ + -72.64692646926468, + -48.878823523689796 + ], + [ + -73.41373413734136, + -49.31888876055611 + ], + [ + -73.32733327333273, + -50.37843044624196 + ], + [ + -72.97452974529745, + -50.74063798735501 + ], + [ + -72.30852308523085, + -50.67632076042839 + ], + [ + -72.330123301233, + -51.42612422170447 + ], + [ + -71.9161191611916, + -52.00836438125068 + ], + [ + -69.49689496894969, + -52.14207651091391 + ], + [ + -68.57168571685716, + -52.29948446102379 + ], + [ + -69.46089460894609, + -52.29271422661046 + ], + [ + -69.94329943299432, + -52.5381352240936 + ], + [ + -70.84330843308433, + -52.89865020660332 + ], + [ + -71.00531005310053, + -53.83294255564259 + ], + [ + -71.430114301143, + -53.856638376089236 + ], + [ + -72.55692556925568, + -53.531667124249495 + ], + [ + -73.70173701737016, + -52.8343329796767 + ], + [ + -74.94734947349473, + -52.262248171750485 + ], + [ + -75.26055260552606, + -51.62923125410431 + ], + [ + -74.97614976149761, + -51.04360597735143 + ], + [ + -75.48015480154801, + -50.37843044624196 + ], + [ + -75.60975609756098, + -48.674023932686616 + ], + [ + -75.18135181351813, + -47.71265064599404 + ], + [ + -74.12654126541265, + -46.93915136427131 + ], + [ + -75.64575645756457, + -46.6480312844982 + ], + [ + -74.69174691746917, + -45.76451569355889 + ], + [ + -74.35334353343534, + -44.10242314508686 + ], + [ + -73.24093240932409, + -44.45447533457992 + ], + [ + -72.7189271892719, + -42.38278360410153 + ], + [ + -73.38853388533884, + -42.11705190337841 + ], + [ + -73.70173701737016, + -43.366160152637434 + ], + [ + -74.33174331743317, + -43.22567778856087 + ], + [ + -74.01854018540185, + -41.79546576874532 + ], + [ + -73.67653676536764, + -39.94211409809677 + ], + [ + -73.21933219332193, + -39.25832042235064 + ], + [ + -73.50733507335073, + -38.283406666831404 + ], + [ + -73.58653586535866, + -37.15616263701229 + ], + [ + -73.16533165331653, + -37.12400402354898 + ], + [ + -72.55332553325533, + -35.50930311597023 + ], + [ + -71.86211862118621, + -33.90983523582149 + ], + [ + -71.43731437314372, + -32.41869110628598 + ], + [ + -71.66771667716677, + -30.920776742337154 + ], + [ + -71.36891368913689, + -30.09650070251447 + ], + [ + -71.49131491314913, + -28.8609329220821 + ], + [ + -70.90450904509045, + -27.640598169079716 + ], + [ + -70.72450724507245, + -25.70600368547123 + ], + [ + -70.40410404104041, + -23.629234279182853 + ], + [ + -70.09090090900908, + -21.393364364181267 + ], + [ + -70.16290162901629, + -19.756660194759206 + ], + [ + -70.37170371703716, + -18.348451436786974 + ], + [ + -69.85689856898568, + -18.092875087683836 + ], + [ + -69.59049590495904, + -17.58002983087424 + ], + [ + -69.10089100891008, + -18.260438389413707 + ], + [ + -68.96768967689677, + -18.981468354433147 + ], + [ + -68.44208442084421, + -19.404608005266155 + ], + [ + -68.75888758887588, + -20.372751526372056 + ], + [ + -68.21888218882188, + -21.49491788038118 + ], + [ + -67.82647826478265, + -22.872660583493442 + ], + [ + -67.10647106471065, + -22.73556333662355 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Chile", + "count": 216, + "this": { + "country": "Chile", + "year": 2003, + "map_id": 152, + "continent": "America", + "main_religion": "Christian", + "gdp": 15499, + "child_mortality": 2377, + "fertility": 1.99, + "life_expect": 77.8, + "population": 6909585 + }, + "x": 15499, + "y": 2377, + "size": 6909585, + "color": "America", + "map_id": 152 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Chile", + "count": 216, + "this": { + "country": "Chile", + "year": 2003, + "map_id": 152, + "continent": "America", + "main_religion": "Christian", + "gdp": 15499, + "child_mortality": 2377, + "fertility": 1.99, + "life_expect": 77.8, + "population": 6909585 + }, + "x": 15499, + "y": 2377, + "size": 6909585, + "color": "America", + "map_id": 152 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.30345305389979127, + "skewed": 0.5832745496590879, + "clumpy": 0.5639495978211091, + "sparse": 0.2151005160820858, + "striated": 0.9493126861516521, + "convex": 0.8373768964143575, + "skinny": 0.7498743033908435, + "stringy": 0.6961334320965271, + "monotonic": 0.4728769134495334, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Haiti", + "count": 216, + "this": { + "country": "Haiti", + "year": 2003, + "map_id": 332, + "continent": "America", + "main_religion": "Christian", + "gdp": 1637, + "child_mortality": 25004, + "fertility": 3.95, + "life_expect": 59.9, + "population": 3533767 + }, + "x": 1637, + "y": 25004, + "size": 3533767, + "color": "America", + "map_id": 332 + }, + { + "country": "Chile", + "count": 216, + "this": { + "country": "Chile", + "year": 2003, + "map_id": 152, + "continent": "America", + "main_religion": "Christian", + "gdp": 15499, + "child_mortality": 2377, + "fertility": 1.99, + "life_expect": 77.8, + "population": 6909585 + }, + "x": 15499, + "y": 2377, + "size": 6909585, + "color": "America", + "map_id": 152 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -69.32789321082961, + -89.22014033574892 + ], + "drag": [ + -69.32789321082961, + -89.22014033574892 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 200 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Sweden (1 Countries)", + "timestamp": 1522411711517, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 752, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.028710287102882, + 58.855916695599376 + ], + [ + 11.467914679146787, + 59.43307917933561 + ], + [ + 12.29952299522995, + 60.11856541368505 + ], + [ + 12.630726307263075, + 61.29320108439748 + ], + [ + 11.993519935199345, + 61.80096866539708 + ], + [ + 11.93231932319324, + 63.12793461040937 + ], + [ + 12.580325803258035, + 64.0656120766553 + ], + [ + 13.570335703357046, + 64.048686490622 + ], + [ + 13.919539195391962, + 64.44474520380169 + ], + [ + 13.55593555935559, + 64.78664204167475 + ], + [ + 15.10755107551077, + 66.19315824104365 + ], + [ + 16.108361083610845, + 67.30178412622612 + ], + [ + 16.76716767167673, + 68.01435129822889 + ], + [ + 17.728377283772858, + 68.01096618102224 + ], + [ + 17.994779947799486, + 68.56781796151847 + ], + [ + 19.877598775987764, + 68.40702489420192 + ], + [ + 20.02520025200252, + 69.06543019089807 + ], + [ + 20.644406444064458, + 69.10605159737804 + ], + [ + 21.980019800198022, + 68.61690216101508 + ], + [ + 23.538835388353903, + 67.93649360247562 + ], + [ + 23.56763567635676, + 66.39626527344348 + ], + [ + 23.902439024390247, + 66.00697679467712 + ], + [ + 22.181621816218183, + 65.72431950792068 + ], + [ + 21.213212132121328, + 65.02529280474457 + ], + [ + 21.368013680136812, + 64.41427914894172 + ], + [ + 19.780397803978047, + 63.61031381235901 + ], + [ + 17.84717847178473, + 62.74880148326301 + ], + [ + 17.119971199712012, + 61.340592725290776 + ], + [ + 17.832778327783274, + 60.636488346304645 + ], + [ + 18.786787867878672, + 60.08132912441175 + ], + [ + 17.868778687786886, + 58.95408509459264 + ], + [ + 16.828368283682835, + 58.720512007332815 + ], + [ + 16.44676446764467, + 57.04149387282746 + ], + [ + 15.881558815588164, + 56.10381640658153 + ], + [ + 14.668346683466837, + 56.20029224697146 + ], + [ + 14.099540995409967, + 55.40817482061206 + ], + [ + 12.943929439294408, + 55.362475738322104 + ], + [ + 12.623526235262347, + 56.30692343898136 + ], + [ + 11.788317883178848, + 57.44263026181716 + ], + [ + 11.028710287102882, + 58.855916695599376 + ] + ] + ] + }, + "countryRef": { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2003, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 38702, + "child_mortality": 373, + "fertility": 1.73, + "life_expect": 80.1, + "population": 7272218 + }, + "x": 38702, + "y": 373, + "size": 7272218, + "color": "Europe", + "map_id": 752 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2003, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 38702, + "child_mortality": 373, + "fertility": 1.73, + "life_expect": 80.1, + "population": 7272218 + }, + "x": 38702, + "y": 373, + "size": 7272218, + "color": "Europe", + "map_id": 752 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.3655173485064178, + "skewed": 0.32243695904573344, + "clumpy": 0.7978637052464719, + "sparse": 0.6275922274333325, + "striated": 0.37560786534671964, + "convex": 0.9894632917843647, + "skinny": 0.41234074261927156, + "stringy": 0.9519782182445469, + "monotonic": 0.7064162328979189, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2003, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 38702, + "child_mortality": 373, + "fertility": 1.73, + "life_expect": 80.1, + "population": 7272218 + }, + "x": 38702, + "y": 373, + "size": 7272218, + "color": "Europe", + "map_id": 752 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 13.178029288008934, + -85.46940670835903 + ], + "drag": [ + 13.178029288008934, + -85.46940670835903 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 201 + }, + { + "attrs": { + "name": "Selected Sweden (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.37\",\"payload\":{\"numVal\":0.3655173485064178},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.32\",\"payload\":{\"numVal\":0.32243695904573344},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.8\",\"payload\":{\"numVal\":0.7978637052464719},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.63\",\"payload\":{\"numVal\":0.6275922274333325},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.38\",\"payload\":{\"numVal\":0.37560786534671964},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.99\",\"payload\":{\"numVal\":0.9894632917843647},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.41\",\"payload\":{\"numVal\":0.41234074261927156},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.95\",\"payload\":{\"numVal\":0.9519782182445469},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.71\",\"payload\":{\"numVal\":0.7064162328979189},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Sweden\",\"text\":\"Sweden\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 202 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Sweden (1 Countries)", + "timestamp": 1522411711517, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Chile", + "count": 216, + "this": { + "country": "Chile", + "year": 2003, + "map_id": 152, + "continent": "America", + "main_religion": "Christian", + "gdp": 15499, + "child_mortality": 2377, + "fertility": 1.99, + "life_expect": 77.8, + "population": 6909585 + }, + "x": 15499, + "y": 2377, + "size": 6909585, + "color": "America", + "map_id": 152 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.044109214595360546, + "skewed": 0.7558059190374453, + "clumpy": 0.41411078666967827, + "sparse": 0.33131698031804935, + "striated": 0.7551952829866582, + "convex": 0.7046859274805535, + "skinny": 0.30936471846599023, + "stringy": 0.44705253172027115, + "monotonic": 0.2807471878607961, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 68.75493541569878, + -35.33551597018147 + ], + "drag": [ + 68.75493541569878, + -35.33551597018147 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 203 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United States (2 Countries)", + "timestamp": 1522411714370, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 840, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -155.68895688956889, + 18.91661133277391 + ], + [ + -155.93735937359372, + 19.058786255453796 + ], + [ + -155.90855908559087, + 19.33805842500358 + ], + [ + -156.07416074160741, + 19.703651083323294 + ], + [ + -156.02376023760237, + 19.813667392539884 + ], + [ + -155.8509585095851, + 19.97784557706308 + ], + [ + -155.91935919359193, + 20.174182375049597 + ], + [ + -155.8617586175862, + 20.267273098232863 + ], + [ + -155.7861578615786, + 20.2486549535962 + ], + [ + -155.4009540095401, + 20.079399093263007 + ], + [ + -155.22455224552246, + 19.99307860449308 + ], + [ + -155.06255062550625, + 19.85936647482984 + ], + [ + -154.80694806948068, + 19.509006843940114 + ], + [ + -154.8321483214832, + 19.453152410030157 + ], + [ + -155.2209522095221, + 19.23989002601033 + ], + [ + -155.54135541355413, + 19.084174634503782 + ], + [ + -155.68895688956889, + 18.91661133277391 + ] + ] + ], + [ + [ + [ + -156.4161641616416, + 20.57193364683262 + ], + [ + -156.58536585365854, + 20.783503472249123 + ], + [ + -156.70056700567005, + 20.86474628520905 + ], + [ + -156.71136711367114, + 20.927370953532346 + ], + [ + -156.61416614166143, + 21.011998883698936 + ], + [ + -156.25776257762578, + 20.917215601912346 + ], + [ + -155.9949599495995, + 20.764885327612475 + ], + [ + -156.07776077760778, + 20.6447136667759 + ], + [ + -156.4161641616416, + 20.57193364683262 + ] + ] + ], + [ + [ + [ + -156.79056790567904, + 21.06954587621223 + ], + [ + -157.3269732697327, + 21.09831937246888 + ], + [ + -157.25137251372513, + 21.22018359190878 + ], + [ + -156.75816758167582, + 21.176177068222145 + ], + [ + -156.79056790567904, + 21.06954587621223 + ] + ] + ], + [ + [ + [ + -157.70857708577086, + 21.26419011559541 + ], + [ + -157.7769777697777, + 21.277730584422073 + ], + [ + -158.12618126181263, + 21.313274315092045 + ], + [ + -158.2521825218252, + 21.538384609335196 + ], + [ + -158.29178291782918, + 21.579006015815168 + ], + [ + -158.02538025380255, + 21.71779582128839 + ], + [ + -157.94257942579426, + 21.653478594361772 + ], + [ + -157.65457654576545, + 21.321737108108707 + ], + [ + -157.70857708577086, + 21.26419011559541 + ] + ] + ], + [ + [ + [ + -159.46539465394653, + 21.883666564414924 + ], + [ + -159.80019800198002, + 22.064770334971456 + ], + [ + -159.74979749797498, + 22.137550354914737 + ], + [ + -159.5949959499595, + 22.23571875390799 + ], + [ + -159.36459364593645, + 22.215408050668003 + ], + [ + -159.34659346593466, + 21.98183496340819 + ], + [ + -159.46539465394653, + 21.883666564414924 + ] + ] + ], + [ + [ + [ + -67.13887138871388, + 45.137729215593424 + ], + [ + -66.9660696606966, + 44.80937284654701 + ], + [ + -68.03168031680316, + 44.325301085994056 + ], + [ + -69.06129061290612, + 43.98001913091434 + ], + [ + -70.1161011610116, + 43.683821375331235 + ], + [ + -70.64530645306452, + 43.08973330556171 + ], + [ + -70.81450814508145, + 42.86462301131854 + ], + [ + -70.82530825308253, + 42.33485216847562 + ], + [ + -70.4941049410494, + 41.8050813256327 + ], + [ + -70.080100801008, + 41.77969294658271 + ], + [ + -70.18450184501845, + 42.14528560490244 + ], + [ + -69.88569885698857, + 41.92356042786594 + ], + [ + -69.9648996489965, + 41.63751802390283 + ], + [ + -70.64170641706417, + 41.47503239798296 + ], + [ + -71.12051120511205, + 41.493650542619605 + ], + [ + -71.85851858518585, + 41.31931700647641 + ], + [ + -72.2941229412294, + 41.27023280697978 + ], + [ + -72.87732877328773, + 41.22114860748316 + ], + [ + -73.70893708937089, + 40.93172108631339 + ], + [ + -72.24012240122401, + 41.11959509128323 + ], + [ + -71.94491944919449, + 40.93002852771005 + ], + [ + -73.34533345333453, + 40.63044565492028 + ], + [ + -73.98253982539825, + 40.628753096316956 + ], + [ + -73.95373953739536, + 40.750617315756855 + ], + [ + -74.2561425614256, + 40.47303770481041 + ], + [ + -73.96093960939609, + 40.42733862252044 + ], + [ + -74.1769417694177, + 39.709693774707674 + ], + [ + -74.90774907749078, + 38.9395796101916 + ], + [ + -74.97974979749797, + 39.196848517898076 + ], + [ + -75.19935199351993, + 39.24762527599803 + ], + [ + -75.52695526955269, + 39.49812394929117 + ], + [ + -75.32175321753218, + 38.959890313431586 + ], + [ + -75.07335073350733, + 38.78217166008173 + ], + [ + -75.05535055350553, + 38.40473109153869 + ], + [ + -75.37575375753757, + 38.01544261277233 + ], + [ + -75.94095940959409, + 37.21655495199961 + ], + [ + -76.03096030960309, + 37.25717635847958 + ], + [ + -75.72135721357213, + 37.93758491701905 + ], + [ + -76.23256232562325, + 38.31841060276875 + ], + [ + -76.35136351363514, + 39.14945687700478 + ], + [ + -76.54216542165422, + 38.71785443315511 + ], + [ + -76.32976329763298, + 38.08314495690561 + ], + [ + -76.98856988569885, + 38.240552907015484 + ], + [ + -76.3009630096301, + 37.917274213779066 + ], + [ + -76.25776257762577, + 36.966056278706475 + ], + [ + -75.97335973359733, + 36.89666137596987 + ], + [ + -75.86895868958689, + 36.55137942089014 + ], + [ + -75.72855728557285, + 35.55107728632092 + ], + [ + -76.36216362163621, + 34.80804405945817 + ], + [ + -77.3989739897399, + 34.51184630387506 + ], + [ + -78.05418054180541, + 33.92622102712218 + ], + [ + -78.55458554585546, + 33.86190380019558 + ], + [ + -79.06219062190621, + 33.494618583272526 + ], + [ + -79.20259202592025, + 33.15779942120946 + ], + [ + -80.30060300603006, + 32.50954947613329 + ], + [ + -80.86580865808658, + 32.033940508597 + ], + [ + -81.33741337413373, + 31.439852438827458 + ], + [ + -81.49221492214922, + 30.730670384031356 + ], + [ + -81.31221312213121, + 30.035028798061887 + ], + [ + -80.9810098100981, + 29.180286703379224 + ], + [ + -80.53460534605345, + 28.472797207186446 + ], + [ + -80.5310053100531, + 28.039502204733452 + ], + [ + -80.05580055800557, + 26.88009956145102 + ], + [ + -80.08820088200882, + 26.206461237324888 + ], + [ + -80.13140131401313, + 25.817172758558527 + ], + [ + -80.37980379803798, + 25.206159102755663 + ], + [ + -80.67860678606786, + 25.079217207505764 + ], + [ + -81.17181171811718, + 25.201081426945677 + ], + [ + -81.33021330213302, + 25.639454105208657 + ], + [ + -81.70821708217082, + 25.869642075261808 + ], + [ + -82.2410224102241, + 26.72946184575447 + ], + [ + -82.70542705427054, + 27.494498334460545 + ], + [ + -82.85662856628566, + 27.885479371830243 + ], + [ + -82.65142651426514, + 28.550654902939726 + ], + [ + -82.92862928629286, + 29.10073644902262 + ], + [ + -83.70983709837098, + 29.936860399068635 + ], + [ + -84.09864098640986, + 30.08919067336852 + ], + [ + -85.11025110251101, + 29.63558496767554 + ], + [ + -85.28665286652866, + 29.686361725775498 + ], + [ + -85.77265772657726, + 30.1518153416918 + ], + [ + -86.3990639906399, + 30.400621456381614 + ], + [ + -87.52947529475294, + 30.2736795611317 + ], + [ + -88.41868418684186, + 30.385388428951615 + ], + [ + -89.18189181891819, + 30.31599352621501 + ], + [ + -89.59229592295922, + 30.160278134708463 + ], + [ + -89.41229412294122, + 29.89454643398534 + ], + [ + -89.43029430294303, + 29.488332369185656 + ], + [ + -89.21789217892179, + 29.290303012595814 + ], + [ + -89.40869408694087, + 29.15997600013924 + ], + [ + -89.77949779497794, + 29.307228598629123 + ], + [ + -90.1539015390154, + 29.117662035055943 + ], + [ + -90.88110881108811, + 29.148128089915915 + ], + [ + -91.62631626316262, + 29.676206374155512 + ], + [ + -92.49752497524975, + 29.552649596112275 + ], + [ + -93.22473224732246, + 29.78453012476875 + ], + [ + -93.84753847538475, + 29.713442663428808 + ], + [ + -94.68994689946899, + 29.479869576168994 + ], + [ + -95.60075600756008, + 28.73852890790957 + ], + [ + -96.59436594365944, + 28.306926464059913 + ], + [ + -97.14157141571415, + 27.829624937920286 + ], + [ + -97.36837368373683, + 27.37940434943397 + ], + [ + -97.37917379173791, + 26.69053299787784 + ], + [ + -97.32877328773287, + 26.20984635453155 + ], + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -117.29457294572946, + 33.04609055338955 + ], + [ + -117.94257942579426, + 33.621560478522426 + ], + [ + -118.41058410584105, + 33.741732139359 + ], + [ + -118.51858518585186, + 34.02777454332211 + ], + [ + -119.08019080190802, + 34.07855130142207 + ], + [ + -119.44019440194401, + 34.34766811935185 + ], + [ + -120.36900369003689, + 34.44752907694844 + ], + [ + -120.62460624606246, + 34.60832214426499 + ], + [ + -120.74340743407434, + 35.15671113174456 + ], + [ + -121.71541715417155, + 36.16209094212377 + ], + [ + -122.54702547025471, + 37.55168155545935 + ], + [ + -122.5110251102511, + 37.78356208411584 + ], + [ + -122.95382953829538, + 38.113611011765585 + ], + [ + -123.72783727837279, + 38.951427520414924 + ], + [ + -123.86463864638645, + 39.767240767220954 + ], + [ + -124.39744397443974, + 40.3139371960972 + ], + [ + -124.17784177841779, + 41.141598353126554 + ], + [ + -124.21384213842138, + 41.99972556501588 + ], + [ + -124.53424534245343, + 42.766454612325276 + ], + [ + -124.14184141841417, + 43.70920975438122 + ], + [ + -124.01944019440194, + 44.61642116576718 + ], + [ + -123.90063900639007, + 45.52363257715314 + ], + [ + -124.08064080640807, + 46.864138990992075 + ], + [ + -124.39744397443974, + 47.72057364427809 + ], + [ + -124.68544685446855, + 48.18433470159104 + ], + [ + -124.56664566645667, + 48.378978940974235 + ], + [ + -123.11943119431194, + 48.04046722030782 + ], + [ + -122.58662586625866, + 47.096019519648564 + ], + [ + -122.33822338223382, + 47.36005866176836 + ], + [ + -122.50022500225002, + 48.179257025781055 + ], + [ + -122.83862838628386, + 49.000147948397085 + ], + [ + -120.00180001800018, + 49.000147948397085 + ], + [ + -117.03177031770318, + 49.000147948397085 + ], + [ + -116.0489604896049, + 49.000147948397085 + ], + [ + -112.99972999729997, + 49.000147948397085 + ], + [ + -110.05130051300513, + 49.000147948397085 + ], + [ + -107.04887048870488, + 49.000147948397085 + ], + [ + -104.050040500405, + 49.000147948397085 + ], + [ + -100.65160651606516, + 49.000147948397085 + ], + [ + -97.22797227972279, + 49.000147948397085 + ], + [ + -95.1579515795158, + 49.000147948397085 + ], + [ + -95.15435154351543, + 49.38435875135343 + ], + [ + -94.8159481594816, + 49.389436427163446 + ], + [ + -94.63954639546395, + 48.83935488108054 + ], + [ + -94.329943299433, + 48.67009902074733 + ], + [ + -93.63153631536315, + 48.60916691102739 + ], + [ + -92.6091260912609, + 48.45006640231418 + ], + [ + -91.64071640716406, + 48.14032817790442 + ], + [ + -90.83070830708307, + 48.27065519036097 + ], + [ + -89.59949599495995, + 48.01000116544785 + ], + [ + -89.27189271892719, + 48.020156517067846 + ], + [ + -88.37908379083791, + 48.30281380382428 + ], + [ + -87.43947439474394, + 47.94060626271124 + ], + [ + -86.46026460264602, + 47.55301034254822 + ], + [ + -85.65385653856538, + 47.219576297691816 + ], + [ + -84.87624876248762, + 46.89968272166206 + ], + [ + -84.7790477904779, + 46.6373361381456 + ], + [ + -84.5450454504545, + 46.53916773915233 + ], + [ + -84.60624606246063, + 46.43930678155576 + ], + [ + -84.33624336243362, + 46.40884072669576 + ], + [ + -84.14184141841417, + 46.51208680149901 + ], + [ + -84.09144091440913, + 46.275128597032534 + ], + [ + -83.88983889838899, + 46.11772064692266 + ], + [ + -83.61623616236162, + 46.11772064692266 + ], + [ + -83.46863468634686, + 45.99416386887944 + ], + [ + -83.59463594635946, + 45.81644521552957 + ], + [ + -82.55062550625506, + 45.347606482406604 + ], + [ + -82.33822338223382, + 44.440395071020646 + ], + [ + -82.13662136621366, + 43.57041994890798 + ], + [ + -82.42822428224282, + 42.979716996345104 + ], + [ + -82.89982899828998, + 42.429635450262225 + ], + [ + -83.11943119431194, + 42.079275819372484 + ], + [ + -83.1410314103141, + 41.97602974456923 + ], + [ + -83.02943029430294, + 41.83216226328601 + ], + [ + -82.6910269102691, + 41.67475431317614 + ], + [ + -82.4390243902439, + 41.67475431317614 + ], + [ + -81.27621276212761, + 42.209602831829045 + ], + [ + -80.24660246602465, + 42.36701078193893 + ], + [ + -78.93978939789397, + 42.862930452715204 + ], + [ + -78.92178921789217, + 42.96448396891512 + ], + [ + -79.01179011790117, + 43.27083707611823 + ], + [ + -79.17019170191702, + 43.46717387410473 + ], + [ + -78.72018720187201, + 43.6245818242146 + ], + [ + -77.73737737377374, + 43.629659500024616 + ], + [ + -76.81936819368194, + 43.62796694142128 + ], + [ + -76.49896498964989, + 44.018947978790976 + ], + [ + -76.37656376563766, + 44.09680567454424 + ], + [ + -75.31815318153181, + 44.81614308096036 + ], + [ + -74.86814868148682, + 45.000631968723525 + ], + [ + -73.34893348933488, + 45.00740220313688 + ], + [ + -71.50571505715057, + 45.00740220313688 + ], + [ + -71.40491404914049, + 45.25451575922335 + ], + [ + -71.08451084510845, + 45.305292517323295 + ], + [ + -70.65970659706596, + 45.45931535022652 + ], + [ + -70.30330303303033, + 45.914613614522835 + ], + [ + -70.00090000900009, + 46.693190572055556 + ], + [ + -69.23769237692376, + 47.44807170914163 + ], + [ + -68.90648906489065, + 47.18572512562517 + ], + [ + -68.23328233282332, + 47.35498098595838 + ], + [ + -67.79047790477904, + 47.06555346478859 + ], + [ + -67.79047790477904, + 45.70304378910632 + ], + [ + -67.13887138871388, + 45.137729215593424 + ] + ] + ], + [ + [ + [ + -154.0041400414004, + 56.73514076562438 + ], + [ + -154.51534515345153, + 56.992409673330826 + ], + [ + -154.67014670146702, + 57.46124840645379 + ], + [ + -153.7629376293763, + 57.81668571315353 + ], + [ + -153.230132301323, + 57.96901598745342 + ], + [ + -152.5641256412564, + 57.90131364332012 + ], + [ + -152.14292142921428, + 57.59157541891037 + ], + [ + -153.0069300693007, + 57.11596645137408 + ], + [ + -154.0041400414004, + 56.73514076562438 + ] + ] + ], + [ + [ + [ + -166.1938619386194, + 59.75466531396867 + ], + [ + -166.8490684906849, + 59.940846760335205 + ], + [ + -167.4538745387454, + 60.213348695471666 + ], + [ + -166.46746467464675, + 60.384297114408184 + ], + [ + -165.67545675456753, + 60.29289894982827 + ], + [ + -165.57825578255782, + 59.910380705475234 + ], + [ + -166.1938619386194, + 59.75466531396867 + ] + ] + ], + [ + [ + [ + -169.5310953109531, + 62.97729689471282 + ], + [ + -170.29070290702907, + 63.193944395939326 + ], + [ + -170.67230672306724, + 63.375048166495844 + ], + [ + -171.55431554315544, + 63.31750117398255 + ], + [ + -171.79191791917918, + 63.405514221355816 + ], + [ + -171.73071730717308, + 63.78295478989887 + ], + [ + -171.1151111511115, + 63.59169566772235 + ], + [ + -170.49230492304923, + 63.6949417425256 + ], + [ + -169.68229682296823, + 63.4309026004058 + ], + [ + -168.68868688686888, + 63.29719047074258 + ], + [ + -168.77148771487714, + 63.18886672012934 + ], + [ + -169.5310953109531, + 62.97729689471282 + ] + ] + ], + [ + [ + [ + -140.98640986409865, + 69.7119875773709 + ], + [ + -140.99360993609935, + 66.00020656026379 + ], + [ + -140.9972099720997, + 60.30643941865492 + ], + [ + -140.01440014400146, + 60.277665922398256 + ], + [ + -139.03879038790387, + 60.00008631145181 + ], + [ + -138.34038340383404, + 59.561713633188816 + ], + [ + -137.4511745117451, + 58.90500089509601 + ], + [ + -136.47916479164792, + 59.46354523419558 + ], + [ + -135.47475474754748, + 59.78851648603532 + ], + [ + -134.94554945549456, + 59.27059355341572 + ], + [ + -134.27234272342724, + 58.86099437140936 + ], + [ + -133.35433354333543, + 58.41077378292306 + ], + [ + -132.73152731527315, + 57.69312893511028 + ], + [ + -131.70911709117092, + 56.55234443646452 + ], + [ + -130.00630006300062, + 55.91594240161169 + ], + [ + -129.9810998109981, + 55.28461804256884 + ], + [ + -130.53550535505354, + 54.802238840619225 + ], + [ + -131.08631086310862, + 55.17967940916225 + ], + [ + -131.96831968319682, + 55.497880426588665 + ], + [ + -132.2491224912249, + 56.36954810730467 + ], + [ + -133.5379353793538, + 57.17859111969736 + ], + [ + -134.07794077940778, + 58.12303882035661 + ], + [ + -135.0391503915039, + 58.18735604728323 + ], + [ + -136.62676626766267, + 58.21274442633322 + ], + [ + -137.80037800378005, + 58.50047938889966 + ], + [ + -139.86679866798667, + 59.53801781274217 + ], + [ + -140.82440824408243, + 59.72758437631538 + ], + [ + -142.5740257402574, + 60.08471424161843 + ], + [ + -143.960039600396, + 59.9983937528485 + ], + [ + -145.92565925659255, + 60.4587696929548 + ], + [ + -147.11367113671136, + 60.88529446099446 + ], + [ + -148.2260822608226, + 60.67372463557797 + ], + [ + -148.01728017280172, + 59.9780830496085 + ], + [ + -148.57168571685716, + 59.91376582268188 + ], + [ + -149.72729727297272, + 59.70558111447204 + ], + [ + -150.60930609306092, + 59.36876195240899 + ], + [ + -151.7181171811718, + 59.15549956838913 + ], + [ + -151.85851858518586, + 59.74450996234867 + ], + [ + -151.40851408514084, + 60.72619395228125 + ], + [ + -150.34650346503466, + 61.03423961808767 + ], + [ + -150.62010620106201, + 61.28473829138082 + ], + [ + -151.89451894518945, + 60.72788651088459 + ], + [ + -152.57852578525785, + 60.06101842117178 + ], + [ + -154.01854018540186, + 59.35014380777233 + ], + [ + -153.28773287732878, + 58.86437948861604 + ], + [ + -154.23094230942309, + 58.14673464080326 + ], + [ + -155.30735307353075, + 57.72698010717693 + ], + [ + -156.30816308163082, + 57.42231955857716 + ], + [ + -156.55656556565566, + 56.98056176310752 + ], + [ + -158.1189811898119, + 56.46433138909126 + ], + [ + -158.4321843218432, + 55.993800097364954 + ], + [ + -159.60219602196022, + 55.56727532932527 + ], + [ + -160.289802898029, + 55.64344046647523 + ], + [ + -161.2222122221222, + 55.36416829692544 + ], + [ + -162.23742237422374, + 55.023964017655715 + ], + [ + -163.0690306903069, + 54.69052997279931 + ], + [ + -164.78624786247863, + 54.4044875688362 + ], + [ + -164.94104941049412, + 54.57205087056607 + ], + [ + -163.84663846638466, + 55.0391970450857 + ], + [ + -162.8710287102871, + 55.34724271089212 + ], + [ + -161.80541805418054, + 55.89563169837169 + ], + [ + -160.56340563405635, + 56.0073405661916 + ], + [ + -160.070200702007, + 56.41863230680127 + ], + [ + -158.6841868418684, + 57.016105493777474 + ], + [ + -158.4609846098461, + 57.21751996757399 + ], + [ + -157.7229772297723, + 57.56957215706706 + ], + [ + -157.550175501755, + 58.32783841135978 + ], + [ + -157.04257042570424, + 58.91854136392266 + ], + [ + -158.19458194581946, + 58.615573373926225 + ], + [ + -158.51858518585186, + 58.78821435146611 + ], + [ + -159.05859058590585, + 58.424314251749706 + ], + [ + -159.710197101971, + 58.93208183274933 + ], + [ + -159.98019980199803, + 58.573259408842944 + ], + [ + -160.35460354603546, + 59.07087163822254 + ], + [ + -161.35541355413554, + 58.67142780783618 + ], + [ + -161.96741967419675, + 58.67142780783618 + ], + [ + -162.05382053820537, + 59.267208436209046 + ], + [ + -161.87381873818737, + 59.63280109452876 + ], + [ + -162.51822518225183, + 59.98993095983184 + ], + [ + -163.81783817838178, + 59.79867183765532 + ], + [ + -164.6638466384664, + 60.267510570778285 + ], + [ + -165.34785347853477, + 60.507853892451436 + ], + [ + -165.35145351453514, + 61.0731684659643 + ], + [ + -166.1218612186122, + 61.499693234003985 + ], + [ + -165.7330573305733, + 62.07516315913688 + ], + [ + -164.91944919449193, + 62.63370749823642 + ], + [ + -164.56304563045632, + 63.14655275504603 + ], + [ + -163.7530375303753, + 63.21933277498931 + ], + [ + -163.06543065430654, + 63.0602322662761 + ], + [ + -162.2590225902259, + 63.542611468225715 + ], + [ + -161.53541535415354, + 63.45629097945579 + ], + [ + -160.7722077220772, + 63.76602920386554 + ], + [ + -160.95940959409594, + 64.2230200267652 + ], + [ + -161.51741517415175, + 64.40243123871838 + ], + [ + -160.77940779407794, + 64.78833460027809 + ], + [ + -161.39141391413915, + 64.77648669005475 + ], + [ + -162.45342453424536, + 64.55983918882825 + ], + [ + -162.75942759427593, + 64.33811401179176 + ], + [ + -163.54783547835478, + 64.55983918882825 + ], + [ + -164.9590495904959, + 64.44643776240503 + ], + [ + -166.42426424264244, + 64.68678108407815 + ], + [ + -166.84546845468455, + 65.08961003167119 + ], + [ + -168.10908109081092, + 65.67015763261406 + ], + [ + -166.7050670506705, + 66.08821960763706 + ], + [ + -164.4730447304473, + 66.57736904400002 + ], + [ + -163.65223652236523, + 66.57736904400002 + ], + [ + -163.7890378903789, + 66.07637169741375 + ], + [ + -161.67941679416793, + 66.11530054529038 + ], + [ + -162.48942489424894, + 66.7347769941099 + ], + [ + -163.72063720637206, + 67.11560267985959 + ], + [ + -164.429844298443, + 67.61660002644587 + ], + [ + -165.3910539105391, + 68.04312479448555 + ], + [ + -166.76266762667626, + 68.35963325330863 + ], + [ + -166.20466204662046, + 68.88263386173821 + ], + [ + -164.429844298443, + 68.91479247520152 + ], + [ + -163.16983169831698, + 69.37178329810118 + ], + [ + -162.9322293222932, + 69.85754761725744 + ], + [ + -161.90981909819098, + 70.33315658479376 + ], + [ + -160.93420934209342, + 70.44825056982032 + ], + [ + -159.04059040590406, + 70.89170092389332 + ], + [ + -158.1189811898119, + 70.82399857976003 + ], + [ + -156.58176581765818, + 71.35715453980961 + ], + [ + -155.0661506615066, + 71.14727727299643 + ], + [ + -154.34254342543426, + 70.69705668451013 + ], + [ + -153.89973899739, + 70.89000836528999 + ], + [ + -152.21132211322114, + 70.83076881417335 + ], + [ + -152.26892268922688, + 70.6005808441202 + ], + [ + -150.7389073890739, + 70.42963242518368 + ], + [ + -149.72009720097202, + 70.52949338278026 + ], + [ + -147.6140761407614, + 70.21467748256052 + ], + [ + -145.69165691656917, + 70.11989420077393 + ], + [ + -144.9212492124921, + 69.98956718831735 + ], + [ + -143.58923589235891, + 70.15205281423721 + ], + [ + -142.07362073620737, + 69.85246994144745 + ], + [ + -140.98640986409865, + 69.7119875773709 + ] + ] + ] + ] + }, + "countryRef": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2003, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 47260, + "child_mortality": 32671, + "fertility": 2.05, + "life_expect": 77.3, + "population": 171720661 + }, + "x": 47260, + "y": 32671, + "size": 171720661, + "color": "America", + "map_id": 840 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2003, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 47260, + "child_mortality": 32671, + "fertility": 2.05, + "life_expect": 77.3, + "population": 171720661 + }, + "x": 47260, + "y": 32671, + "size": 171720661, + "color": "America", + "map_id": 840 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.10456974018443166, + "skewed": 0.9244260895440433, + "clumpy": 0.9521007378854416, + "sparse": 0.661183603211521, + "striated": 0.41882855835935984, + "convex": 0.5476636639396102, + "skinny": 0.26687979550874386, + "stringy": 0.27377964109217, + "monotonic": 0.6354534821031517, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2003, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 38702, + "child_mortality": 373, + "fertility": 1.73, + "life_expect": 80.1, + "population": 7272218 + }, + "x": 38702, + "y": 373, + "size": 7272218, + "color": "Europe", + "map_id": 752 + }, + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2003, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 47260, + "child_mortality": 32671, + "fertility": 2.05, + "life_expect": 77.3, + "population": 171720661 + }, + "x": 47260, + "y": 32671, + "size": 171720661, + "color": "America", + "map_id": 840 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -85.37071147449267, + -87.70383510329775 + ], + "drag": [ + -85.37071147449267, + -87.70383510329775 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 204 + }, + { + "attrs": { + "name": "Selected United States (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.1\",\"payload\":{\"numVal\":0.10456974018443166},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.92\",\"payload\":{\"numVal\":0.9244260895440433},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.95\",\"payload\":{\"numVal\":0.9521007378854416},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.66\",\"payload\":{\"numVal\":0.661183603211521},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.42\",\"payload\":{\"numVal\":0.41882855835935984},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.55\",\"payload\":{\"numVal\":0.5476636639396102},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.27\",\"payload\":{\"numVal\":0.26687979550874386},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.27\",\"payload\":{\"numVal\":0.27377964109217},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.64\",\"payload\":{\"numVal\":0.6354534821031517},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Sweden\",\"text\":\"Sweden\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 205 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United States (2 Countries)", + "timestamp": 1522411714370, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 752, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 11.028710287102882, + 58.855916695599376 + ], + [ + 11.467914679146787, + 59.43307917933561 + ], + [ + 12.29952299522995, + 60.11856541368505 + ], + [ + 12.630726307263075, + 61.29320108439748 + ], + [ + 11.993519935199345, + 61.80096866539708 + ], + [ + 11.93231932319324, + 63.12793461040937 + ], + [ + 12.580325803258035, + 64.0656120766553 + ], + [ + 13.570335703357046, + 64.048686490622 + ], + [ + 13.919539195391962, + 64.44474520380169 + ], + [ + 13.55593555935559, + 64.78664204167475 + ], + [ + 15.10755107551077, + 66.19315824104365 + ], + [ + 16.108361083610845, + 67.30178412622612 + ], + [ + 16.76716767167673, + 68.01435129822889 + ], + [ + 17.728377283772858, + 68.01096618102224 + ], + [ + 17.994779947799486, + 68.56781796151847 + ], + [ + 19.877598775987764, + 68.40702489420192 + ], + [ + 20.02520025200252, + 69.06543019089807 + ], + [ + 20.644406444064458, + 69.10605159737804 + ], + [ + 21.980019800198022, + 68.61690216101508 + ], + [ + 23.538835388353903, + 67.93649360247562 + ], + [ + 23.56763567635676, + 66.39626527344348 + ], + [ + 23.902439024390247, + 66.00697679467712 + ], + [ + 22.181621816218183, + 65.72431950792068 + ], + [ + 21.213212132121328, + 65.02529280474457 + ], + [ + 21.368013680136812, + 64.41427914894172 + ], + [ + 19.780397803978047, + 63.61031381235901 + ], + [ + 17.84717847178473, + 62.74880148326301 + ], + [ + 17.119971199712012, + 61.340592725290776 + ], + [ + 17.832778327783274, + 60.636488346304645 + ], + [ + 18.786787867878672, + 60.08132912441175 + ], + [ + 17.868778687786886, + 58.95408509459264 + ], + [ + 16.828368283682835, + 58.720512007332815 + ], + [ + 16.44676446764467, + 57.04149387282746 + ], + [ + 15.881558815588164, + 56.10381640658153 + ], + [ + 14.668346683466837, + 56.20029224697146 + ], + [ + 14.099540995409967, + 55.40817482061206 + ], + [ + 12.943929439294408, + 55.362475738322104 + ], + [ + 12.623526235262347, + 56.30692343898136 + ], + [ + 11.788317883178848, + 57.44263026181716 + ], + [ + 11.028710287102882, + 58.855916695599376 + ] + ] + ] + }, + "countryRef": { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2003, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 38702, + "child_mortality": 373, + "fertility": 1.73, + "life_expect": 80.1, + "population": 7272218 + }, + "x": 38702, + "y": 373, + "size": 7272218, + "color": "Europe", + "map_id": 752 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2003, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 38702, + "child_mortality": 373, + "fertility": 1.73, + "life_expect": 80.1, + "population": 7272218 + }, + "x": 38702, + "y": 373, + "size": 7272218, + "color": "Europe", + "map_id": 752 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.3655173485064178, + "skewed": 0.32243695904573344, + "clumpy": 0.7978637052464719, + "sparse": 0.6275922274333325, + "striated": 0.37560786534671964, + "convex": 0.9894632917843647, + "skinny": 0.41234074261927156, + "stringy": 0.9519782182445469, + "monotonic": 0.7064162328979189, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2003, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 38702, + "child_mortality": 373, + "fertility": 1.73, + "life_expect": 80.1, + "population": 7272218 + }, + "x": 38702, + "y": 373, + "size": 7272218, + "color": "Europe", + "map_id": 752 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 13.178029288008934, + -85.46940670835903 + ], + "drag": [ + 13.178029288008934, + -85.46940670835903 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 206 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411783526, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2003, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 47260, + "child_mortality": 32671, + "fertility": 2.05, + "life_expect": 77.3, + "population": 171720661 + }, + "x": 47260, + "y": 32671, + "size": 171720661, + "color": "America", + "map_id": 840 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.1417667936142073, + "skewed": 0.747531154898091, + "clumpy": 0.229178609486699, + "sparse": 0.013099699343096738, + "striated": 0.475563584113071, + "convex": 0.8206444123668488, + "skinny": 0.7477673329788554, + "stringy": 0.4046638437520145, + "monotonic": 0.746546111291116, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 10.313240312354818, + -42.45957662159151 + ], + "drag": [ + 10.313240312354818, + -42.45957662159151 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 207 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.14\",\"payload\":{\"numVal\":0.1417667936142073},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.75\",\"payload\":{\"numVal\":0.747531154898091},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.23\",\"payload\":{\"numVal\":0.229178609486699},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.01\",\"payload\":{\"numVal\":0.013099699343096738},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.48\",\"payload\":{\"numVal\":0.475563584113071},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.82\",\"payload\":{\"numVal\":0.8206444123668488},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.75\",\"payload\":{\"numVal\":0.7477673329788554},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.4\",\"payload\":{\"numVal\":0.4046638437520145},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.75\",\"payload\":{\"numVal\":0.746546111291116},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 208 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411783526, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 840, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -155.68895688956889, + 18.91661133277391 + ], + [ + -155.93735937359372, + 19.058786255453796 + ], + [ + -155.90855908559087, + 19.33805842500358 + ], + [ + -156.07416074160741, + 19.703651083323294 + ], + [ + -156.02376023760237, + 19.813667392539884 + ], + [ + -155.8509585095851, + 19.97784557706308 + ], + [ + -155.91935919359193, + 20.174182375049597 + ], + [ + -155.8617586175862, + 20.267273098232863 + ], + [ + -155.7861578615786, + 20.2486549535962 + ], + [ + -155.4009540095401, + 20.079399093263007 + ], + [ + -155.22455224552246, + 19.99307860449308 + ], + [ + -155.06255062550625, + 19.85936647482984 + ], + [ + -154.80694806948068, + 19.509006843940114 + ], + [ + -154.8321483214832, + 19.453152410030157 + ], + [ + -155.2209522095221, + 19.23989002601033 + ], + [ + -155.54135541355413, + 19.084174634503782 + ], + [ + -155.68895688956889, + 18.91661133277391 + ] + ] + ], + [ + [ + [ + -156.4161641616416, + 20.57193364683262 + ], + [ + -156.58536585365854, + 20.783503472249123 + ], + [ + -156.70056700567005, + 20.86474628520905 + ], + [ + -156.71136711367114, + 20.927370953532346 + ], + [ + -156.61416614166143, + 21.011998883698936 + ], + [ + -156.25776257762578, + 20.917215601912346 + ], + [ + -155.9949599495995, + 20.764885327612475 + ], + [ + -156.07776077760778, + 20.6447136667759 + ], + [ + -156.4161641616416, + 20.57193364683262 + ] + ] + ], + [ + [ + [ + -156.79056790567904, + 21.06954587621223 + ], + [ + -157.3269732697327, + 21.09831937246888 + ], + [ + -157.25137251372513, + 21.22018359190878 + ], + [ + -156.75816758167582, + 21.176177068222145 + ], + [ + -156.79056790567904, + 21.06954587621223 + ] + ] + ], + [ + [ + [ + -157.70857708577086, + 21.26419011559541 + ], + [ + -157.7769777697777, + 21.277730584422073 + ], + [ + -158.12618126181263, + 21.313274315092045 + ], + [ + -158.2521825218252, + 21.538384609335196 + ], + [ + -158.29178291782918, + 21.579006015815168 + ], + [ + -158.02538025380255, + 21.71779582128839 + ], + [ + -157.94257942579426, + 21.653478594361772 + ], + [ + -157.65457654576545, + 21.321737108108707 + ], + [ + -157.70857708577086, + 21.26419011559541 + ] + ] + ], + [ + [ + [ + -159.46539465394653, + 21.883666564414924 + ], + [ + -159.80019800198002, + 22.064770334971456 + ], + [ + -159.74979749797498, + 22.137550354914737 + ], + [ + -159.5949959499595, + 22.23571875390799 + ], + [ + -159.36459364593645, + 22.215408050668003 + ], + [ + -159.34659346593466, + 21.98183496340819 + ], + [ + -159.46539465394653, + 21.883666564414924 + ] + ] + ], + [ + [ + [ + -67.13887138871388, + 45.137729215593424 + ], + [ + -66.9660696606966, + 44.80937284654701 + ], + [ + -68.03168031680316, + 44.325301085994056 + ], + [ + -69.06129061290612, + 43.98001913091434 + ], + [ + -70.1161011610116, + 43.683821375331235 + ], + [ + -70.64530645306452, + 43.08973330556171 + ], + [ + -70.81450814508145, + 42.86462301131854 + ], + [ + -70.82530825308253, + 42.33485216847562 + ], + [ + -70.4941049410494, + 41.8050813256327 + ], + [ + -70.080100801008, + 41.77969294658271 + ], + [ + -70.18450184501845, + 42.14528560490244 + ], + [ + -69.88569885698857, + 41.92356042786594 + ], + [ + -69.9648996489965, + 41.63751802390283 + ], + [ + -70.64170641706417, + 41.47503239798296 + ], + [ + -71.12051120511205, + 41.493650542619605 + ], + [ + -71.85851858518585, + 41.31931700647641 + ], + [ + -72.2941229412294, + 41.27023280697978 + ], + [ + -72.87732877328773, + 41.22114860748316 + ], + [ + -73.70893708937089, + 40.93172108631339 + ], + [ + -72.24012240122401, + 41.11959509128323 + ], + [ + -71.94491944919449, + 40.93002852771005 + ], + [ + -73.34533345333453, + 40.63044565492028 + ], + [ + -73.98253982539825, + 40.628753096316956 + ], + [ + -73.95373953739536, + 40.750617315756855 + ], + [ + -74.2561425614256, + 40.47303770481041 + ], + [ + -73.96093960939609, + 40.42733862252044 + ], + [ + -74.1769417694177, + 39.709693774707674 + ], + [ + -74.90774907749078, + 38.9395796101916 + ], + [ + -74.97974979749797, + 39.196848517898076 + ], + [ + -75.19935199351993, + 39.24762527599803 + ], + [ + -75.52695526955269, + 39.49812394929117 + ], + [ + -75.32175321753218, + 38.959890313431586 + ], + [ + -75.07335073350733, + 38.78217166008173 + ], + [ + -75.05535055350553, + 38.40473109153869 + ], + [ + -75.37575375753757, + 38.01544261277233 + ], + [ + -75.94095940959409, + 37.21655495199961 + ], + [ + -76.03096030960309, + 37.25717635847958 + ], + [ + -75.72135721357213, + 37.93758491701905 + ], + [ + -76.23256232562325, + 38.31841060276875 + ], + [ + -76.35136351363514, + 39.14945687700478 + ], + [ + -76.54216542165422, + 38.71785443315511 + ], + [ + -76.32976329763298, + 38.08314495690561 + ], + [ + -76.98856988569885, + 38.240552907015484 + ], + [ + -76.3009630096301, + 37.917274213779066 + ], + [ + -76.25776257762577, + 36.966056278706475 + ], + [ + -75.97335973359733, + 36.89666137596987 + ], + [ + -75.86895868958689, + 36.55137942089014 + ], + [ + -75.72855728557285, + 35.55107728632092 + ], + [ + -76.36216362163621, + 34.80804405945817 + ], + [ + -77.3989739897399, + 34.51184630387506 + ], + [ + -78.05418054180541, + 33.92622102712218 + ], + [ + -78.55458554585546, + 33.86190380019558 + ], + [ + -79.06219062190621, + 33.494618583272526 + ], + [ + -79.20259202592025, + 33.15779942120946 + ], + [ + -80.30060300603006, + 32.50954947613329 + ], + [ + -80.86580865808658, + 32.033940508597 + ], + [ + -81.33741337413373, + 31.439852438827458 + ], + [ + -81.49221492214922, + 30.730670384031356 + ], + [ + -81.31221312213121, + 30.035028798061887 + ], + [ + -80.9810098100981, + 29.180286703379224 + ], + [ + -80.53460534605345, + 28.472797207186446 + ], + [ + -80.5310053100531, + 28.039502204733452 + ], + [ + -80.05580055800557, + 26.88009956145102 + ], + [ + -80.08820088200882, + 26.206461237324888 + ], + [ + -80.13140131401313, + 25.817172758558527 + ], + [ + -80.37980379803798, + 25.206159102755663 + ], + [ + -80.67860678606786, + 25.079217207505764 + ], + [ + -81.17181171811718, + 25.201081426945677 + ], + [ + -81.33021330213302, + 25.639454105208657 + ], + [ + -81.70821708217082, + 25.869642075261808 + ], + [ + -82.2410224102241, + 26.72946184575447 + ], + [ + -82.70542705427054, + 27.494498334460545 + ], + [ + -82.85662856628566, + 27.885479371830243 + ], + [ + -82.65142651426514, + 28.550654902939726 + ], + [ + -82.92862928629286, + 29.10073644902262 + ], + [ + -83.70983709837098, + 29.936860399068635 + ], + [ + -84.09864098640986, + 30.08919067336852 + ], + [ + -85.11025110251101, + 29.63558496767554 + ], + [ + -85.28665286652866, + 29.686361725775498 + ], + [ + -85.77265772657726, + 30.1518153416918 + ], + [ + -86.3990639906399, + 30.400621456381614 + ], + [ + -87.52947529475294, + 30.2736795611317 + ], + [ + -88.41868418684186, + 30.385388428951615 + ], + [ + -89.18189181891819, + 30.31599352621501 + ], + [ + -89.59229592295922, + 30.160278134708463 + ], + [ + -89.41229412294122, + 29.89454643398534 + ], + [ + -89.43029430294303, + 29.488332369185656 + ], + [ + -89.21789217892179, + 29.290303012595814 + ], + [ + -89.40869408694087, + 29.15997600013924 + ], + [ + -89.77949779497794, + 29.307228598629123 + ], + [ + -90.1539015390154, + 29.117662035055943 + ], + [ + -90.88110881108811, + 29.148128089915915 + ], + [ + -91.62631626316262, + 29.676206374155512 + ], + [ + -92.49752497524975, + 29.552649596112275 + ], + [ + -93.22473224732246, + 29.78453012476875 + ], + [ + -93.84753847538475, + 29.713442663428808 + ], + [ + -94.68994689946899, + 29.479869576168994 + ], + [ + -95.60075600756008, + 28.73852890790957 + ], + [ + -96.59436594365944, + 28.306926464059913 + ], + [ + -97.14157141571415, + 27.829624937920286 + ], + [ + -97.36837368373683, + 27.37940434943397 + ], + [ + -97.37917379173791, + 26.69053299787784 + ], + [ + -97.32877328773287, + 26.20984635453155 + ], + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -117.29457294572946, + 33.04609055338955 + ], + [ + -117.94257942579426, + 33.621560478522426 + ], + [ + -118.41058410584105, + 33.741732139359 + ], + [ + -118.51858518585186, + 34.02777454332211 + ], + [ + -119.08019080190802, + 34.07855130142207 + ], + [ + -119.44019440194401, + 34.34766811935185 + ], + [ + -120.36900369003689, + 34.44752907694844 + ], + [ + -120.62460624606246, + 34.60832214426499 + ], + [ + -120.74340743407434, + 35.15671113174456 + ], + [ + -121.71541715417155, + 36.16209094212377 + ], + [ + -122.54702547025471, + 37.55168155545935 + ], + [ + -122.5110251102511, + 37.78356208411584 + ], + [ + -122.95382953829538, + 38.113611011765585 + ], + [ + -123.72783727837279, + 38.951427520414924 + ], + [ + -123.86463864638645, + 39.767240767220954 + ], + [ + -124.39744397443974, + 40.3139371960972 + ], + [ + -124.17784177841779, + 41.141598353126554 + ], + [ + -124.21384213842138, + 41.99972556501588 + ], + [ + -124.53424534245343, + 42.766454612325276 + ], + [ + -124.14184141841417, + 43.70920975438122 + ], + [ + -124.01944019440194, + 44.61642116576718 + ], + [ + -123.90063900639007, + 45.52363257715314 + ], + [ + -124.08064080640807, + 46.864138990992075 + ], + [ + -124.39744397443974, + 47.72057364427809 + ], + [ + -124.68544685446855, + 48.18433470159104 + ], + [ + -124.56664566645667, + 48.378978940974235 + ], + [ + -123.11943119431194, + 48.04046722030782 + ], + [ + -122.58662586625866, + 47.096019519648564 + ], + [ + -122.33822338223382, + 47.36005866176836 + ], + [ + -122.50022500225002, + 48.179257025781055 + ], + [ + -122.83862838628386, + 49.000147948397085 + ], + [ + -120.00180001800018, + 49.000147948397085 + ], + [ + -117.03177031770318, + 49.000147948397085 + ], + [ + -116.0489604896049, + 49.000147948397085 + ], + [ + -112.99972999729997, + 49.000147948397085 + ], + [ + -110.05130051300513, + 49.000147948397085 + ], + [ + -107.04887048870488, + 49.000147948397085 + ], + [ + -104.050040500405, + 49.000147948397085 + ], + [ + -100.65160651606516, + 49.000147948397085 + ], + [ + -97.22797227972279, + 49.000147948397085 + ], + [ + -95.1579515795158, + 49.000147948397085 + ], + [ + -95.15435154351543, + 49.38435875135343 + ], + [ + -94.8159481594816, + 49.389436427163446 + ], + [ + -94.63954639546395, + 48.83935488108054 + ], + [ + -94.329943299433, + 48.67009902074733 + ], + [ + -93.63153631536315, + 48.60916691102739 + ], + [ + -92.6091260912609, + 48.45006640231418 + ], + [ + -91.64071640716406, + 48.14032817790442 + ], + [ + -90.83070830708307, + 48.27065519036097 + ], + [ + -89.59949599495995, + 48.01000116544785 + ], + [ + -89.27189271892719, + 48.020156517067846 + ], + [ + -88.37908379083791, + 48.30281380382428 + ], + [ + -87.43947439474394, + 47.94060626271124 + ], + [ + -86.46026460264602, + 47.55301034254822 + ], + [ + -85.65385653856538, + 47.219576297691816 + ], + [ + -84.87624876248762, + 46.89968272166206 + ], + [ + -84.7790477904779, + 46.6373361381456 + ], + [ + -84.5450454504545, + 46.53916773915233 + ], + [ + -84.60624606246063, + 46.43930678155576 + ], + [ + -84.33624336243362, + 46.40884072669576 + ], + [ + -84.14184141841417, + 46.51208680149901 + ], + [ + -84.09144091440913, + 46.275128597032534 + ], + [ + -83.88983889838899, + 46.11772064692266 + ], + [ + -83.61623616236162, + 46.11772064692266 + ], + [ + -83.46863468634686, + 45.99416386887944 + ], + [ + -83.59463594635946, + 45.81644521552957 + ], + [ + -82.55062550625506, + 45.347606482406604 + ], + [ + -82.33822338223382, + 44.440395071020646 + ], + [ + -82.13662136621366, + 43.57041994890798 + ], + [ + -82.42822428224282, + 42.979716996345104 + ], + [ + -82.89982899828998, + 42.429635450262225 + ], + [ + -83.11943119431194, + 42.079275819372484 + ], + [ + -83.1410314103141, + 41.97602974456923 + ], + [ + -83.02943029430294, + 41.83216226328601 + ], + [ + -82.6910269102691, + 41.67475431317614 + ], + [ + -82.4390243902439, + 41.67475431317614 + ], + [ + -81.27621276212761, + 42.209602831829045 + ], + [ + -80.24660246602465, + 42.36701078193893 + ], + [ + -78.93978939789397, + 42.862930452715204 + ], + [ + -78.92178921789217, + 42.96448396891512 + ], + [ + -79.01179011790117, + 43.27083707611823 + ], + [ + -79.17019170191702, + 43.46717387410473 + ], + [ + -78.72018720187201, + 43.6245818242146 + ], + [ + -77.73737737377374, + 43.629659500024616 + ], + [ + -76.81936819368194, + 43.62796694142128 + ], + [ + -76.49896498964989, + 44.018947978790976 + ], + [ + -76.37656376563766, + 44.09680567454424 + ], + [ + -75.31815318153181, + 44.81614308096036 + ], + [ + -74.86814868148682, + 45.000631968723525 + ], + [ + -73.34893348933488, + 45.00740220313688 + ], + [ + -71.50571505715057, + 45.00740220313688 + ], + [ + -71.40491404914049, + 45.25451575922335 + ], + [ + -71.08451084510845, + 45.305292517323295 + ], + [ + -70.65970659706596, + 45.45931535022652 + ], + [ + -70.30330303303033, + 45.914613614522835 + ], + [ + -70.00090000900009, + 46.693190572055556 + ], + [ + -69.23769237692376, + 47.44807170914163 + ], + [ + -68.90648906489065, + 47.18572512562517 + ], + [ + -68.23328233282332, + 47.35498098595838 + ], + [ + -67.79047790477904, + 47.06555346478859 + ], + [ + -67.79047790477904, + 45.70304378910632 + ], + [ + -67.13887138871388, + 45.137729215593424 + ] + ] + ], + [ + [ + [ + -154.0041400414004, + 56.73514076562438 + ], + [ + -154.51534515345153, + 56.992409673330826 + ], + [ + -154.67014670146702, + 57.46124840645379 + ], + [ + -153.7629376293763, + 57.81668571315353 + ], + [ + -153.230132301323, + 57.96901598745342 + ], + [ + -152.5641256412564, + 57.90131364332012 + ], + [ + -152.14292142921428, + 57.59157541891037 + ], + [ + -153.0069300693007, + 57.11596645137408 + ], + [ + -154.0041400414004, + 56.73514076562438 + ] + ] + ], + [ + [ + [ + -166.1938619386194, + 59.75466531396867 + ], + [ + -166.8490684906849, + 59.940846760335205 + ], + [ + -167.4538745387454, + 60.213348695471666 + ], + [ + -166.46746467464675, + 60.384297114408184 + ], + [ + -165.67545675456753, + 60.29289894982827 + ], + [ + -165.57825578255782, + 59.910380705475234 + ], + [ + -166.1938619386194, + 59.75466531396867 + ] + ] + ], + [ + [ + [ + -169.5310953109531, + 62.97729689471282 + ], + [ + -170.29070290702907, + 63.193944395939326 + ], + [ + -170.67230672306724, + 63.375048166495844 + ], + [ + -171.55431554315544, + 63.31750117398255 + ], + [ + -171.79191791917918, + 63.405514221355816 + ], + [ + -171.73071730717308, + 63.78295478989887 + ], + [ + -171.1151111511115, + 63.59169566772235 + ], + [ + -170.49230492304923, + 63.6949417425256 + ], + [ + -169.68229682296823, + 63.4309026004058 + ], + [ + -168.68868688686888, + 63.29719047074258 + ], + [ + -168.77148771487714, + 63.18886672012934 + ], + [ + -169.5310953109531, + 62.97729689471282 + ] + ] + ], + [ + [ + [ + -140.98640986409865, + 69.7119875773709 + ], + [ + -140.99360993609935, + 66.00020656026379 + ], + [ + -140.9972099720997, + 60.30643941865492 + ], + [ + -140.01440014400146, + 60.277665922398256 + ], + [ + -139.03879038790387, + 60.00008631145181 + ], + [ + -138.34038340383404, + 59.561713633188816 + ], + [ + -137.4511745117451, + 58.90500089509601 + ], + [ + -136.47916479164792, + 59.46354523419558 + ], + [ + -135.47475474754748, + 59.78851648603532 + ], + [ + -134.94554945549456, + 59.27059355341572 + ], + [ + -134.27234272342724, + 58.86099437140936 + ], + [ + -133.35433354333543, + 58.41077378292306 + ], + [ + -132.73152731527315, + 57.69312893511028 + ], + [ + -131.70911709117092, + 56.55234443646452 + ], + [ + -130.00630006300062, + 55.91594240161169 + ], + [ + -129.9810998109981, + 55.28461804256884 + ], + [ + -130.53550535505354, + 54.802238840619225 + ], + [ + -131.08631086310862, + 55.17967940916225 + ], + [ + -131.96831968319682, + 55.497880426588665 + ], + [ + -132.2491224912249, + 56.36954810730467 + ], + [ + -133.5379353793538, + 57.17859111969736 + ], + [ + -134.07794077940778, + 58.12303882035661 + ], + [ + -135.0391503915039, + 58.18735604728323 + ], + [ + -136.62676626766267, + 58.21274442633322 + ], + [ + -137.80037800378005, + 58.50047938889966 + ], + [ + -139.86679866798667, + 59.53801781274217 + ], + [ + -140.82440824408243, + 59.72758437631538 + ], + [ + -142.5740257402574, + 60.08471424161843 + ], + [ + -143.960039600396, + 59.9983937528485 + ], + [ + -145.92565925659255, + 60.4587696929548 + ], + [ + -147.11367113671136, + 60.88529446099446 + ], + [ + -148.2260822608226, + 60.67372463557797 + ], + [ + -148.01728017280172, + 59.9780830496085 + ], + [ + -148.57168571685716, + 59.91376582268188 + ], + [ + -149.72729727297272, + 59.70558111447204 + ], + [ + -150.60930609306092, + 59.36876195240899 + ], + [ + -151.7181171811718, + 59.15549956838913 + ], + [ + -151.85851858518586, + 59.74450996234867 + ], + [ + -151.40851408514084, + 60.72619395228125 + ], + [ + -150.34650346503466, + 61.03423961808767 + ], + [ + -150.62010620106201, + 61.28473829138082 + ], + [ + -151.89451894518945, + 60.72788651088459 + ], + [ + -152.57852578525785, + 60.06101842117178 + ], + [ + -154.01854018540186, + 59.35014380777233 + ], + [ + -153.28773287732878, + 58.86437948861604 + ], + [ + -154.23094230942309, + 58.14673464080326 + ], + [ + -155.30735307353075, + 57.72698010717693 + ], + [ + -156.30816308163082, + 57.42231955857716 + ], + [ + -156.55656556565566, + 56.98056176310752 + ], + [ + -158.1189811898119, + 56.46433138909126 + ], + [ + -158.4321843218432, + 55.993800097364954 + ], + [ + -159.60219602196022, + 55.56727532932527 + ], + [ + -160.289802898029, + 55.64344046647523 + ], + [ + -161.2222122221222, + 55.36416829692544 + ], + [ + -162.23742237422374, + 55.023964017655715 + ], + [ + -163.0690306903069, + 54.69052997279931 + ], + [ + -164.78624786247863, + 54.4044875688362 + ], + [ + -164.94104941049412, + 54.57205087056607 + ], + [ + -163.84663846638466, + 55.0391970450857 + ], + [ + -162.8710287102871, + 55.34724271089212 + ], + [ + -161.80541805418054, + 55.89563169837169 + ], + [ + -160.56340563405635, + 56.0073405661916 + ], + [ + -160.070200702007, + 56.41863230680127 + ], + [ + -158.6841868418684, + 57.016105493777474 + ], + [ + -158.4609846098461, + 57.21751996757399 + ], + [ + -157.7229772297723, + 57.56957215706706 + ], + [ + -157.550175501755, + 58.32783841135978 + ], + [ + -157.04257042570424, + 58.91854136392266 + ], + [ + -158.19458194581946, + 58.615573373926225 + ], + [ + -158.51858518585186, + 58.78821435146611 + ], + [ + -159.05859058590585, + 58.424314251749706 + ], + [ + -159.710197101971, + 58.93208183274933 + ], + [ + -159.98019980199803, + 58.573259408842944 + ], + [ + -160.35460354603546, + 59.07087163822254 + ], + [ + -161.35541355413554, + 58.67142780783618 + ], + [ + -161.96741967419675, + 58.67142780783618 + ], + [ + -162.05382053820537, + 59.267208436209046 + ], + [ + -161.87381873818737, + 59.63280109452876 + ], + [ + -162.51822518225183, + 59.98993095983184 + ], + [ + -163.81783817838178, + 59.79867183765532 + ], + [ + -164.6638466384664, + 60.267510570778285 + ], + [ + -165.34785347853477, + 60.507853892451436 + ], + [ + -165.35145351453514, + 61.0731684659643 + ], + [ + -166.1218612186122, + 61.499693234003985 + ], + [ + -165.7330573305733, + 62.07516315913688 + ], + [ + -164.91944919449193, + 62.63370749823642 + ], + [ + -164.56304563045632, + 63.14655275504603 + ], + [ + -163.7530375303753, + 63.21933277498931 + ], + [ + -163.06543065430654, + 63.0602322662761 + ], + [ + -162.2590225902259, + 63.542611468225715 + ], + [ + -161.53541535415354, + 63.45629097945579 + ], + [ + -160.7722077220772, + 63.76602920386554 + ], + [ + -160.95940959409594, + 64.2230200267652 + ], + [ + -161.51741517415175, + 64.40243123871838 + ], + [ + -160.77940779407794, + 64.78833460027809 + ], + [ + -161.39141391413915, + 64.77648669005475 + ], + [ + -162.45342453424536, + 64.55983918882825 + ], + [ + -162.75942759427593, + 64.33811401179176 + ], + [ + -163.54783547835478, + 64.55983918882825 + ], + [ + -164.9590495904959, + 64.44643776240503 + ], + [ + -166.42426424264244, + 64.68678108407815 + ], + [ + -166.84546845468455, + 65.08961003167119 + ], + [ + -168.10908109081092, + 65.67015763261406 + ], + [ + -166.7050670506705, + 66.08821960763706 + ], + [ + -164.4730447304473, + 66.57736904400002 + ], + [ + -163.65223652236523, + 66.57736904400002 + ], + [ + -163.7890378903789, + 66.07637169741375 + ], + [ + -161.67941679416793, + 66.11530054529038 + ], + [ + -162.48942489424894, + 66.7347769941099 + ], + [ + -163.72063720637206, + 67.11560267985959 + ], + [ + -164.429844298443, + 67.61660002644587 + ], + [ + -165.3910539105391, + 68.04312479448555 + ], + [ + -166.76266762667626, + 68.35963325330863 + ], + [ + -166.20466204662046, + 68.88263386173821 + ], + [ + -164.429844298443, + 68.91479247520152 + ], + [ + -163.16983169831698, + 69.37178329810118 + ], + [ + -162.9322293222932, + 69.85754761725744 + ], + [ + -161.90981909819098, + 70.33315658479376 + ], + [ + -160.93420934209342, + 70.44825056982032 + ], + [ + -159.04059040590406, + 70.89170092389332 + ], + [ + -158.1189811898119, + 70.82399857976003 + ], + [ + -156.58176581765818, + 71.35715453980961 + ], + [ + -155.0661506615066, + 71.14727727299643 + ], + [ + -154.34254342543426, + 70.69705668451013 + ], + [ + -153.89973899739, + 70.89000836528999 + ], + [ + -152.21132211322114, + 70.83076881417335 + ], + [ + -152.26892268922688, + 70.6005808441202 + ], + [ + -150.7389073890739, + 70.42963242518368 + ], + [ + -149.72009720097202, + 70.52949338278026 + ], + [ + -147.6140761407614, + 70.21467748256052 + ], + [ + -145.69165691656917, + 70.11989420077393 + ], + [ + -144.9212492124921, + 69.98956718831735 + ], + [ + -143.58923589235891, + 70.15205281423721 + ], + [ + -142.07362073620737, + 69.85246994144745 + ], + [ + -140.98640986409865, + 69.7119875773709 + ] + ] + ] + ] + }, + "countryRef": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2003, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 47260, + "child_mortality": 32671, + "fertility": 2.05, + "life_expect": 77.3, + "population": 171720661 + }, + "x": 47260, + "y": 32671, + "size": 171720661, + "color": "America", + "map_id": 840 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2003, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 47260, + "child_mortality": 32671, + "fertility": 2.05, + "life_expect": 77.3, + "population": 171720661 + }, + "x": 47260, + "y": 32671, + "size": 171720661, + "color": "America", + "map_id": 840 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.10456974018443166, + "skewed": 0.9244260895440433, + "clumpy": 0.9521007378854416, + "sparse": 0.661183603211521, + "striated": 0.41882855835935984, + "convex": 0.5476636639396102, + "skinny": 0.26687979550874386, + "stringy": 0.27377964109217, + "monotonic": 0.6354534821031517, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Sweden", + "count": 216, + "this": { + "country": "Sweden", + "year": 2003, + "map_id": 752, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 38702, + "child_mortality": 373, + "fertility": 1.73, + "life_expect": 80.1, + "population": 7272218 + }, + "x": 38702, + "y": 373, + "size": 7272218, + "color": "Europe", + "map_id": 752 + }, + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 2003, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 47260, + "child_mortality": 32671, + "fertility": 2.05, + "life_expect": 77.3, + "population": 171720661 + }, + "x": 47260, + "y": 32671, + "size": 171720661, + "color": "America", + "map_id": 840 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -85.37071147449267, + -87.70383510329775 + ], + "drag": [ + -85.37071147449267, + -87.70383510329775 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 209 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1962", + "timestamp": 1522411794960, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1962, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 18966, + "child_mortality": 122198, + "fertility": 3.48, + "life_expect": 70.0252, + "population": 160360686 + }, + "x": 18966, + "y": 122198, + "size": 160360686, + "color": "America", + "map_id": 840 + }, + "currentYear": 1962, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7696692408931143, + "skewed": 0.25793326595426147, + "clumpy": 0.5003653854704639, + "sparse": 0.19388690119150986, + "striated": 0.45097089309659744, + "convex": 0.6855634566925948, + "skinny": 0.3246919388216434, + "stringy": 0.7321463219897819, + "monotonic": 0.7017211312595606, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 10.313240312354818, + -42.45957662159151 + ], + "drag": [ + 10.313240312354818, + -42.45957662159151 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 210 + }, + { + "attrs": { + "name": "Selected Year 1962", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1962\",\"payload\":{\"numVal\":1962},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.77\",\"payload\":{\"numVal\":0.7696692408931143},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.26\",\"payload\":{\"numVal\":0.25793326595426147},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.5\",\"payload\":{\"numVal\":0.5003653854704639},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.19\",\"payload\":{\"numVal\":0.19388690119150986},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.45\",\"payload\":{\"numVal\":0.45097089309659744},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.69\",\"payload\":{\"numVal\":0.6855634566925948},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.32\",\"payload\":{\"numVal\":0.3246919388216434},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.73\",\"payload\":{\"numVal\":0.7321463219897819},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.7\",\"payload\":{\"numVal\":0.7017211312595606},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 211 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1962", + "timestamp": 1522411794960, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1962, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 18966, + "child_mortality": 122198, + "fertility": 3.48, + "life_expect": 70.0252, + "population": 160360686 + }, + "x": 18966, + "y": 122198, + "size": 160360686, + "color": "America", + "map_id": 840 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.1417667936142073, + "skewed": 0.747531154898091, + "clumpy": 0.229178609486699, + "sparse": 0.013099699343096738, + "striated": 0.475563584113071, + "convex": 0.8206444123668488, + "skinny": 0.7477673329788554, + "stringy": 0.4046638437520145, + "monotonic": 0.746546111291116, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 10.313240312354818, + -42.45957662159151 + ], + "drag": [ + 10.313240312354818, + -42.45957662159151 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 212 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1960", + "timestamp": 1522411803453, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1960, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 18059, + "child_mortality": 131153, + "fertility": 3.67, + "life_expect": 69.734, + "population": 159880756 + }, + "x": 18059, + "y": 131153, + "size": 159880756, + "color": "America", + "map_id": 840 + }, + "currentYear": 1960, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.11927101147063635, + "skewed": 0.3323038904994735, + "clumpy": 0.993197463126871, + "sparse": 0.738040549137376, + "striated": 0.6929298565747493, + "convex": 0.28013634950903277, + "skinny": 0.7170871308595355, + "stringy": 0.2794689385515696, + "monotonic": 0.2827443216292984, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 10.313240312354818, + -42.45957662159151 + ], + "drag": [ + 10.313240312354818, + -42.45957662159151 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 213 + }, + { + "attrs": { + "name": "Selected Year 1960", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1960\",\"payload\":{\"numVal\":1960},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.12\",\"payload\":{\"numVal\":0.11927101147063635},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.33\",\"payload\":{\"numVal\":0.3323038904994735},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.99\",\"payload\":{\"numVal\":0.993197463126871},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.74\",\"payload\":{\"numVal\":0.738040549137376},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.69\",\"payload\":{\"numVal\":0.6929298565747493},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.28\",\"payload\":{\"numVal\":0.28013634950903277},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.72\",\"payload\":{\"numVal\":0.7170871308595355},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.28\",\"payload\":{\"numVal\":0.2794689385515696},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.28\",\"payload\":{\"numVal\":0.2827443216292984},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 214 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1960", + "timestamp": 1522411803453, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1960, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 18059, + "child_mortality": 131153, + "fertility": 3.67, + "life_expect": 69.734, + "population": 159880756 + }, + "x": 18059, + "y": 131153, + "size": 159880756, + "color": "America", + "map_id": 840 + }, + "currentYear": 1962, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.7696692408931143, + "skewed": 0.25793326595426147, + "clumpy": 0.5003653854704639, + "sparse": 0.19388690119150986, + "striated": 0.45097089309659744, + "convex": 0.6855634566925948, + "skinny": 0.3246919388216434, + "stringy": 0.7321463219897819, + "monotonic": 0.7017211312595606, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 10.313240312354818, + -42.45957662159151 + ], + "drag": [ + 10.313240312354818, + -42.45957662159151 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 215 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Brazil (1 Countries)", + "timestamp": 1522411811919, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 76, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -57.6239762397624, + -30.216672363351037 + ], + [ + -56.291962919629185, + -28.852470129065438 + ], + [ + -55.161551615516146, + -27.88263404935619 + ], + [ + -54.491944919449196, + -27.474727425953184 + ], + [ + -53.649536495364956, + -26.922953321266945 + ], + [ + -53.627936279362785, + -26.12406566049423 + ], + [ + -54.12834128341282, + -25.546903176758022 + ], + [ + -54.62514625146251, + -25.73985485753787 + ], + [ + -54.430744307443064, + -25.162692373801654 + ], + [ + -54.293942939429385, + -24.570296862635452 + ], + [ + -54.293942939429385, + -24.020215316552544 + ], + [ + -54.653946539465394, + -23.83911154599602 + ], + [ + -55.02835028350283, + -24.00159717191589 + ], + [ + -55.399153991539904, + -23.957590648229264 + ], + [ + -55.51795517955179, + -23.571687286669565 + ], + [ + -55.61155611556116, + -22.656013082266945 + ], + [ + -55.798757987579876, + -22.356430209477182 + ], + [ + -56.47196471964719, + -22.08562083294406 + ], + [ + -56.88236882368824, + -22.28195763093057 + ], + [ + -57.93717937179372, + -22.090698508754052 + ], + [ + -57.872378723787236, + -20.733266508881783 + ], + [ + -58.16758167581675, + -20.176414728385552 + ], + [ + -57.85437854378543, + -19.969922578779048 + ], + [ + -57.95157951579516, + -19.399530329456155 + ], + [ + -57.67437674376744, + -18.96115765119316 + ], + [ + -57.4979749797498, + -18.17411790064378 + ], + [ + -57.73557735577356, + -17.55294889322093 + ], + [ + -58.27918279182792, + -17.27198416506782 + ], + [ + -58.387183871838715, + -16.87761801049146 + ], + [ + -58.23958239582396, + -16.298762968151905 + ], + [ + -60.158401584015834, + -16.25814156167195 + ], + [ + -60.54360543605435, + -15.093661242579515 + ], + [ + -60.2520025200252, + -15.076735656546205 + ], + [ + -60.26280262802628, + -14.645133212696535 + ], + [ + -60.460804608046075, + -14.354013132923427 + ], + [ + -60.5040050400504, + -13.775158090583886 + ], + [ + -61.08361083610836, + -13.478960335000778 + ], + [ + -61.71361713617135, + -13.489115686620778 + ], + [ + -62.127621276212764, + -13.19799560684767 + ], + [ + -62.80442804428044, + -12.999966250257827 + ], + [ + -63.196831968319685, + -12.627603357524777 + ], + [ + -64.31644316443165, + -12.461732614398244 + ], + [ + -65.40365403654036, + -11.56636911323561 + ], + [ + -65.32085320853209, + -10.896115906316126 + ], + [ + -65.44325443254432, + -10.511905103359766 + ], + [ + -65.33885338853388, + -9.762101642083678 + ], + [ + -66.64566645666456, + -9.931357502416887 + ], + [ + -67.17487174871748, + -10.307105512356586 + ], + [ + -68.04968049680497, + -10.711627018552946 + ], + [ + -68.27288272882728, + -11.014595008549378 + ], + [ + -68.78768787687876, + -11.036598270392687 + ], + [ + -69.52929529295292, + -10.951970340226083 + ], + [ + -70.09450094500944, + -11.124611317765954 + ], + [ + -70.5481054810548, + -11.009517332739378 + ], + [ + -70.48330483304832, + -9.489599706947232 + ], + [ + -71.3041130411304, + -10.078610100906772 + ], + [ + -72.18612186121861, + -10.053221721856787 + ], + [ + -72.56412564125641, + -9.520065761807203 + ], + [ + -73.22653226532265, + -9.462518769293922 + ], + [ + -73.01413014130141, + -9.03260888404759 + ], + [ + -73.57213572135721, + -8.424980345451388 + ], + [ + -73.98613986139861, + -7.524539168478768 + ], + [ + -73.72333723337233, + -7.341742839318911 + ], + [ + -73.72333723337233, + -6.918603188485903 + ], + [ + -73.11853118531185, + -6.629175667316133 + ], + [ + -73.21933219332193, + -6.089249472853226 + ], + [ + -72.96372963729637, + -5.740582400566822 + ], + [ + -72.89172891728917, + -5.275128784650519 + ], + [ + -71.74691746917469, + -4.5947202261110505 + ], + [ + -70.92970929709297, + -4.401768545331208 + ], + [ + -70.79650796507964, + -4.251130829634661 + ], + [ + -69.89289892898928, + -4.298522470527956 + ], + [ + -69.44289442894429, + -1.5565775331300955 + ], + [ + -69.42129421294213, + -1.123282530677102 + ], + [ + -69.5760957609576, + -0.549505164147547 + ], + [ + -70.01890018900188, + -0.18560506443115798 + ], + [ + -70.01530015300153, + 0.5421951350016059 + ], + [ + -69.45369453694536, + 0.7063733195248005 + ], + [ + -69.2520925209252, + 0.6031272447215485 + ], + [ + -69.21969219692197, + 0.9856454890745852 + ], + [ + -69.80289802898028, + 1.0888915638778371 + ], + [ + -69.81729817298172, + 1.715138247110687 + ], + [ + -67.86967869678696, + 1.6931349852673634 + ], + [ + -67.53847538475384, + 2.036724381743767 + ], + [ + -67.26127261272612, + 1.7202159229206728 + ], + [ + -67.06327063270632, + 1.1295129703578084 + ], + [ + -66.8760687606876, + 1.253069748401046 + ], + [ + -66.32526325263252, + 0.7249914641614623 + ], + [ + -65.54765547655477, + 0.7893086910880669 + ], + [ + -65.35325353253532, + 1.095661798291161 + ], + [ + -64.61164611646116, + 1.3292348855509886 + ], + [ + -64.19764197641976, + 1.4934130700741974 + ], + [ + -64.08244082440824, + 1.916552720907191 + ], + [ + -63.36963369633696, + 2.2009025662669757 + ], + [ + -63.423634236342366, + 2.4107798330801415 + ], + [ + -64.26964269642696, + 2.49710032185007 + ], + [ + -64.410044100441, + 3.1267321222895816 + ], + [ + -64.36684366843669, + 3.7969853292090505 + ], + [ + -64.81684816848168, + 4.0559467955188495 + ], + [ + -64.62964629646297, + 4.149037518702116 + ], + [ + -63.888038880388805, + 4.020403064848878 + ], + [ + -63.09243092430924, + 3.769904391555741 + ], + [ + -62.80442804428044, + 4.006862596022231 + ], + [ + -62.08442084420844, + 4.162577987528778 + ], + [ + -60.96840968409684, + 4.536633438865152 + ], + [ + -60.60120601206012, + 4.917459124614851 + ], + [ + -60.73440734407343, + 5.200116411371297 + ], + [ + -60.21240212402124, + 5.244122935057931 + ], + [ + -59.981999819998194, + 5.013934965004779 + ], + [ + -60.11160111601116, + 4.575562286741786 + ], + [ + -59.76599765997659, + 4.4232320124419005 + ], + [ + -59.53919539195391, + 3.9594709551289355 + ], + [ + -59.81639816398163, + 3.6057262070325464 + ], + [ + -59.97479974799748, + 2.756061788159869 + ], + [ + -59.719197191971915, + 2.2499867657635946 + ], + [ + -59.64719647196472, + 1.7862257084506297 + ], + [ + -59.03159031590316, + 1.3173869753276648 + ], + [ + -58.538385383853836, + 1.2683027758310317 + ], + [ + -58.43038430384303, + 1.46463957381755 + ], + [ + -58.11358113581136, + 1.506953538900845 + ], + [ + -57.659976599766, + 1.6829796336473777 + ], + [ + -57.335973359733586, + 1.9487113343705005 + ], + [ + -56.78156781567816, + 1.864083404203896 + ], + [ + -56.540365403654036, + 1.8996271348738674 + ], + [ + -55.99675996759967, + 1.818384321913939 + ], + [ + -55.90675906759067, + 2.021491354313781 + ], + [ + -56.07236072360723, + 2.2212132695069613 + ], + [ + -55.97155971559715, + 2.5106407906767316 + ], + [ + -55.56835568355683, + 2.4209351847001273 + ], + [ + -55.096750967509664, + 2.5241812595033792 + ], + [ + -54.52434524345243, + 2.3126114340868895 + ], + [ + -54.088740887408875, + 2.1061192844803855 + ], + [ + -53.779137791377906, + 2.376928661013494 + ], + [ + -53.55593555935559, + 2.334614695930199 + ], + [ + -53.41913419134191, + 2.0536499677770905 + ], + [ + -52.94032940329403, + 2.124737429117033 + ], + [ + -52.555125551255514, + 2.503870556263408 + ], + [ + -52.24912249122491, + 3.2418261073161574 + ], + [ + -51.658716587165856, + 4.15580775311544 + ], + [ + -51.31671316713167, + 4.203199394008735 + ], + [ + -51.06831068310683, + 3.6497327307191796 + ], + [ + -50.510305103051024, + 1.9013196934772054 + ], + [ + -49.973899738997375, + 1.7371415089539965 + ], + [ + -49.948699486994855, + 1.046577598794542 + ], + [ + -50.69750697506976, + 0.22230155897185 + ], + [ + -50.38790387903879, + -0.0789738724212441 + ], + [ + -48.62028620286202, + -0.2346892639277911 + ], + [ + -48.584285842858435, + -1.2383765157036777 + ], + [ + -47.82467824678247, + -0.5816637776108564 + ], + [ + -46.56826568265683, + -0.9404862015172455 + ], + [ + -44.905049050490504, + -1.5514998573200955 + ], + [ + -44.419044190441895, + -2.137125134072974 + ], + [ + -44.58104581045811, + -2.6905917973625435 + ], + [ + -43.41823418234182, + -2.3825461315561114 + ], + [ + -41.47421474214741, + -2.912316974399033 + ], + [ + -39.980199801998026, + -2.8733881265224 + ], + [ + -38.50058500585004, + -3.701049283551754 + ], + [ + -37.222572225722246, + -4.82152307895754 + ], + [ + -36.452164521645216, + -5.1092580415239865 + ], + [ + -35.5989559895599, + -5.149879448003958 + ], + [ + -35.235352353523524, + -5.464695348223714 + ], + [ + -34.8969489694897, + -6.737499417929385 + ], + [ + -34.73134731347312, + -7.343435397922235 + ], + [ + -35.127351273512744, + -8.99706515337762 + ], + [ + -35.638556385563845, + -9.64870021566044 + ], + [ + -37.046170461704605, + -11.03998338759935 + ], + [ + -37.683376833768335, + -12.170612534625135 + ], + [ + -38.42498424984248, + -13.03889509813446 + ], + [ + -38.673386733867346, + -13.057513242771108 + ], + [ + -38.9541895418954, + -13.793776235220534 + ], + [ + -38.88218882188821, + -15.66743860910907 + ], + [ + -39.15939159391593, + -17.2076669381412 + ], + [ + -39.267392673926736, + -17.867764793440685 + ], + [ + -39.584195841958405, + -18.262130948017045 + ], + [ + -39.760597605976045, + -19.599252244649335 + ], + [ + -40.775807758077576, + -20.904214927818316 + ], + [ + -40.94500945009449, + -21.936675675850843 + ], + [ + -41.755017550175495, + -22.369970678303837 + ], + [ + -41.989019890198904, + -22.9708289824867 + ], + [ + -43.07623076230763, + -22.967443865280032 + ], + [ + -44.64944649446494, + -23.3516546682364 + ], + [ + -45.35145351453514, + -23.796797580912717 + ], + [ + -46.47106471064711, + -24.089610219289156 + ], + [ + -47.64827648276483, + -24.8851127628552 + ], + [ + -48.49428494284942, + -25.876952104407763 + ], + [ + -48.641886418864175, + -26.623370448477175 + ], + [ + -48.47628476284763, + -27.175144553163413 + ], + [ + -48.659886598865995, + -28.185602039352624 + ], + [ + -48.886688866888676, + -28.674751475715574 + ], + [ + -49.588695886958874, + -29.22483302179848 + ], + [ + -50.69750697506976, + -30.985093969263772 + ], + [ + -51.575915759157596, + -31.777211395623155 + ], + [ + -52.25632256322562, + -32.24605012874612 + ], + [ + -52.71352713527135, + -33.19726806381871 + ], + [ + -53.372333723337235, + -33.7676603131416 + ], + [ + -53.649536495364956, + -33.202345739628704 + ], + [ + -53.21033210332102, + -32.72842933069574 + ], + [ + -53.786337863378634, + -32.04802077215627 + ], + [ + -54.571145711457106, + -31.49455410886671 + ], + [ + -55.600756007560065, + -30.853074398203873 + ], + [ + -55.97155971559715, + -30.88354045306385 + ], + [ + -56.97596975969759, + -30.110041171341123 + ], + [ + -57.6239762397624, + -30.216672363351037 + ] + ] + ] + }, + "countryRef": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 1960, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 4433, + "child_mortality": 517418, + "fertility": 6.21, + "life_expect": 56.33, + "population": 55605541 + }, + "x": 4433, + "y": 517418, + "size": 55605541, + "color": "America", + "map_id": 76 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 1960, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 4433, + "child_mortality": 517418, + "fertility": 6.21, + "life_expect": 56.33, + "population": 55605541 + }, + "x": 4433, + "y": 517418, + "size": 55605541, + "color": "America", + "map_id": 76 + }, + "currentYear": 1960, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.5896777992408866, + "skewed": 0.06060361996700703, + "clumpy": 0.17295912762314813, + "sparse": 0.9132776332031982, + "striated": 0.633005200827164, + "convex": 0.9032379423986137, + "skinny": 0.842943460170678, + "stringy": 0.9541150822525102, + "monotonic": 0.9919763502945833, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 1960, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 4433, + "child_mortality": 517418, + "fertility": 6.21, + "life_expect": 56.33, + "population": 55605541 + }, + "x": 4433, + "y": 517418, + "size": 55605541, + "color": "America", + "map_id": 76 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -42.97183463481174, + -89.08483153446862 + ], + "drag": [ + -42.97183463481174, + -89.08483153446862 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 216 + }, + { + "attrs": { + "name": "Selected Brazil (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1960\",\"payload\":{\"numVal\":1960},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.59\",\"payload\":{\"numVal\":0.5896777992408866},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.06\",\"payload\":{\"numVal\":0.06060361996700703},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.17\",\"payload\":{\"numVal\":0.17295912762314813},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.91\",\"payload\":{\"numVal\":0.9132776332031982},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.63\",\"payload\":{\"numVal\":0.633005200827164},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.9\",\"payload\":{\"numVal\":0.9032379423986137},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.84\",\"payload\":{\"numVal\":0.842943460170678},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.95\",\"payload\":{\"numVal\":0.9541150822525102},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.99\",\"payload\":{\"numVal\":0.9919763502945833},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 217 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Brazil (1 Countries)", + "timestamp": 1522411811919, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1960, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 18059, + "child_mortality": 131153, + "fertility": 3.67, + "life_expect": 69.734, + "population": 159880756 + }, + "x": 18059, + "y": 131153, + "size": 159880756, + "color": "America", + "map_id": 840 + }, + "currentYear": 1960, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.11927101147063635, + "skewed": 0.3323038904994735, + "clumpy": 0.993197463126871, + "sparse": 0.738040549137376, + "striated": 0.6929298565747493, + "convex": 0.28013634950903277, + "skinny": 0.7170871308595355, + "stringy": 0.2794689385515696, + "monotonic": 0.2827443216292984, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 10.313240312354818, + -42.45957662159151 + ], + "drag": [ + 10.313240312354818, + -42.45957662159151 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 218 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Uganda (2 Countries)", + "timestamp": 1522411820155, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 800, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 30.418504185041854, + -1.1351304409004257 + ], + [ + 29.8208982089821, + -1.4431761067068436 + ], + [ + 29.579695796957964, + -1.3416225905069297 + ], + [ + 29.586895868958692, + -0.5867414534208564 + ], + [ + 29.8208982089821, + -0.2059157676711436 + ], + [ + 29.874898748987505, + 0.5980495689115628 + ], + [ + 30.08730087300873, + 1.0618106262245277 + ], + [ + 30.468904689046894, + 1.5831186760507876 + ], + [ + 30.854108541085424, + 1.8488503767739104 + ], + [ + 31.174511745117456, + 2.2042876834736376 + ], + [ + 30.7749077490775, + 2.339692371740199 + ], + [ + 30.832508325083268, + 3.5092503666426182 + ], + [ + 31.246512465124653, + 3.781752301779065 + ], + [ + 31.88011880118802, + 3.558334566139237 + ], + [ + 32.68652686526866, + 3.7919076533990648 + ], + [ + 33.38853388533886, + 3.7902150947957267 + ], + [ + 34.00414004140043, + 4.25059103490203 + ], + [ + 34.47934479344795, + 3.5549494489325753 + ], + [ + 34.59454594545946, + 3.053952102346301 + ], + [ + 35.037350373503756, + 1.9063973692872054 + ], + [ + 34.67374673746738, + 1.1769046112511035 + ], + [ + 34.18054180541807, + 0.5151141973482822 + ], + [ + 33.89253892538926, + 0.11059269115193615 + ], + [ + 33.90333903339035, + -0.9506415531372312 + ], + [ + 31.86571865718659, + -1.0268066902871738 + ], + [ + 30.771307713077135, + -1.01495878006385 + ], + [ + 30.418504185041854, + -1.1351304409004257 + ] + ] + ] + }, + "countryRef": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 1960, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 871, + "child_mortality": 69883, + "fertility": 7, + "life_expect": 47.091, + "population": 5308673 + }, + "x": 871, + "y": 69883, + "size": 5308673, + "color": "Africa", + "map_id": 800 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 1960, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 871, + "child_mortality": 69883, + "fertility": 7, + "life_expect": 47.091, + "population": 5308673 + }, + "x": 871, + "y": 69883, + "size": 5308673, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 1960, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.05974640155503885, + "skewed": 0.937178511037394, + "clumpy": 0.3257593926473976, + "sparse": 0.2419420681538671, + "striated": 0.6204515440241483, + "convex": 0.40926629695498007, + "skinny": 0.9137039581470257, + "stringy": 0.7287307087955757, + "monotonic": 0.4394275590728689, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 1960, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 4433, + "child_mortality": 517418, + "fertility": 6.21, + "life_expect": 56.33, + "population": 55605541 + }, + "x": 4433, + "y": 517418, + "size": 55605541, + "color": "America", + "map_id": 76 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 1960, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 871, + "child_mortality": 69883, + "fertility": 7, + "life_expect": 47.091, + "population": 5308673 + }, + "x": 871, + "y": 69883, + "size": 5308673, + "color": "Africa", + "map_id": 800 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 32.65859432245692, + -88.77696414490444 + ], + "drag": [ + 32.65859432245692, + -88.77696414490444 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 219 + }, + { + "attrs": { + "name": "Selected Uganda (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1960\",\"payload\":{\"numVal\":1960},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.06\",\"payload\":{\"numVal\":0.05974640155503885},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.94\",\"payload\":{\"numVal\":0.937178511037394},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.33\",\"payload\":{\"numVal\":0.3257593926473976},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.24\",\"payload\":{\"numVal\":0.2419420681538671},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.62\",\"payload\":{\"numVal\":0.6204515440241483},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.41\",\"payload\":{\"numVal\":0.40926629695498007},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.91\",\"payload\":{\"numVal\":0.9137039581470257},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.73\",\"payload\":{\"numVal\":0.7287307087955757},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.44\",\"payload\":{\"numVal\":0.4394275590728689},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Uganda\",\"text\":\"Uganda\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 220 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Uganda (2 Countries)", + "timestamp": 1522411820155, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 76, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -57.6239762397624, + -30.216672363351037 + ], + [ + -56.291962919629185, + -28.852470129065438 + ], + [ + -55.161551615516146, + -27.88263404935619 + ], + [ + -54.491944919449196, + -27.474727425953184 + ], + [ + -53.649536495364956, + -26.922953321266945 + ], + [ + -53.627936279362785, + -26.12406566049423 + ], + [ + -54.12834128341282, + -25.546903176758022 + ], + [ + -54.62514625146251, + -25.73985485753787 + ], + [ + -54.430744307443064, + -25.162692373801654 + ], + [ + -54.293942939429385, + -24.570296862635452 + ], + [ + -54.293942939429385, + -24.020215316552544 + ], + [ + -54.653946539465394, + -23.83911154599602 + ], + [ + -55.02835028350283, + -24.00159717191589 + ], + [ + -55.399153991539904, + -23.957590648229264 + ], + [ + -55.51795517955179, + -23.571687286669565 + ], + [ + -55.61155611556116, + -22.656013082266945 + ], + [ + -55.798757987579876, + -22.356430209477182 + ], + [ + -56.47196471964719, + -22.08562083294406 + ], + [ + -56.88236882368824, + -22.28195763093057 + ], + [ + -57.93717937179372, + -22.090698508754052 + ], + [ + -57.872378723787236, + -20.733266508881783 + ], + [ + -58.16758167581675, + -20.176414728385552 + ], + [ + -57.85437854378543, + -19.969922578779048 + ], + [ + -57.95157951579516, + -19.399530329456155 + ], + [ + -57.67437674376744, + -18.96115765119316 + ], + [ + -57.4979749797498, + -18.17411790064378 + ], + [ + -57.73557735577356, + -17.55294889322093 + ], + [ + -58.27918279182792, + -17.27198416506782 + ], + [ + -58.387183871838715, + -16.87761801049146 + ], + [ + -58.23958239582396, + -16.298762968151905 + ], + [ + -60.158401584015834, + -16.25814156167195 + ], + [ + -60.54360543605435, + -15.093661242579515 + ], + [ + -60.2520025200252, + -15.076735656546205 + ], + [ + -60.26280262802628, + -14.645133212696535 + ], + [ + -60.460804608046075, + -14.354013132923427 + ], + [ + -60.5040050400504, + -13.775158090583886 + ], + [ + -61.08361083610836, + -13.478960335000778 + ], + [ + -61.71361713617135, + -13.489115686620778 + ], + [ + -62.127621276212764, + -13.19799560684767 + ], + [ + -62.80442804428044, + -12.999966250257827 + ], + [ + -63.196831968319685, + -12.627603357524777 + ], + [ + -64.31644316443165, + -12.461732614398244 + ], + [ + -65.40365403654036, + -11.56636911323561 + ], + [ + -65.32085320853209, + -10.896115906316126 + ], + [ + -65.44325443254432, + -10.511905103359766 + ], + [ + -65.33885338853388, + -9.762101642083678 + ], + [ + -66.64566645666456, + -9.931357502416887 + ], + [ + -67.17487174871748, + -10.307105512356586 + ], + [ + -68.04968049680497, + -10.711627018552946 + ], + [ + -68.27288272882728, + -11.014595008549378 + ], + [ + -68.78768787687876, + -11.036598270392687 + ], + [ + -69.52929529295292, + -10.951970340226083 + ], + [ + -70.09450094500944, + -11.124611317765954 + ], + [ + -70.5481054810548, + -11.009517332739378 + ], + [ + -70.48330483304832, + -9.489599706947232 + ], + [ + -71.3041130411304, + -10.078610100906772 + ], + [ + -72.18612186121861, + -10.053221721856787 + ], + [ + -72.56412564125641, + -9.520065761807203 + ], + [ + -73.22653226532265, + -9.462518769293922 + ], + [ + -73.01413014130141, + -9.03260888404759 + ], + [ + -73.57213572135721, + -8.424980345451388 + ], + [ + -73.98613986139861, + -7.524539168478768 + ], + [ + -73.72333723337233, + -7.341742839318911 + ], + [ + -73.72333723337233, + -6.918603188485903 + ], + [ + -73.11853118531185, + -6.629175667316133 + ], + [ + -73.21933219332193, + -6.089249472853226 + ], + [ + -72.96372963729637, + -5.740582400566822 + ], + [ + -72.89172891728917, + -5.275128784650519 + ], + [ + -71.74691746917469, + -4.5947202261110505 + ], + [ + -70.92970929709297, + -4.401768545331208 + ], + [ + -70.79650796507964, + -4.251130829634661 + ], + [ + -69.89289892898928, + -4.298522470527956 + ], + [ + -69.44289442894429, + -1.5565775331300955 + ], + [ + -69.42129421294213, + -1.123282530677102 + ], + [ + -69.5760957609576, + -0.549505164147547 + ], + [ + -70.01890018900188, + -0.18560506443115798 + ], + [ + -70.01530015300153, + 0.5421951350016059 + ], + [ + -69.45369453694536, + 0.7063733195248005 + ], + [ + -69.2520925209252, + 0.6031272447215485 + ], + [ + -69.21969219692197, + 0.9856454890745852 + ], + [ + -69.80289802898028, + 1.0888915638778371 + ], + [ + -69.81729817298172, + 1.715138247110687 + ], + [ + -67.86967869678696, + 1.6931349852673634 + ], + [ + -67.53847538475384, + 2.036724381743767 + ], + [ + -67.26127261272612, + 1.7202159229206728 + ], + [ + -67.06327063270632, + 1.1295129703578084 + ], + [ + -66.8760687606876, + 1.253069748401046 + ], + [ + -66.32526325263252, + 0.7249914641614623 + ], + [ + -65.54765547655477, + 0.7893086910880669 + ], + [ + -65.35325353253532, + 1.095661798291161 + ], + [ + -64.61164611646116, + 1.3292348855509886 + ], + [ + -64.19764197641976, + 1.4934130700741974 + ], + [ + -64.08244082440824, + 1.916552720907191 + ], + [ + -63.36963369633696, + 2.2009025662669757 + ], + [ + -63.423634236342366, + 2.4107798330801415 + ], + [ + -64.26964269642696, + 2.49710032185007 + ], + [ + -64.410044100441, + 3.1267321222895816 + ], + [ + -64.36684366843669, + 3.7969853292090505 + ], + [ + -64.81684816848168, + 4.0559467955188495 + ], + [ + -64.62964629646297, + 4.149037518702116 + ], + [ + -63.888038880388805, + 4.020403064848878 + ], + [ + -63.09243092430924, + 3.769904391555741 + ], + [ + -62.80442804428044, + 4.006862596022231 + ], + [ + -62.08442084420844, + 4.162577987528778 + ], + [ + -60.96840968409684, + 4.536633438865152 + ], + [ + -60.60120601206012, + 4.917459124614851 + ], + [ + -60.73440734407343, + 5.200116411371297 + ], + [ + -60.21240212402124, + 5.244122935057931 + ], + [ + -59.981999819998194, + 5.013934965004779 + ], + [ + -60.11160111601116, + 4.575562286741786 + ], + [ + -59.76599765997659, + 4.4232320124419005 + ], + [ + -59.53919539195391, + 3.9594709551289355 + ], + [ + -59.81639816398163, + 3.6057262070325464 + ], + [ + -59.97479974799748, + 2.756061788159869 + ], + [ + -59.719197191971915, + 2.2499867657635946 + ], + [ + -59.64719647196472, + 1.7862257084506297 + ], + [ + -59.03159031590316, + 1.3173869753276648 + ], + [ + -58.538385383853836, + 1.2683027758310317 + ], + [ + -58.43038430384303, + 1.46463957381755 + ], + [ + -58.11358113581136, + 1.506953538900845 + ], + [ + -57.659976599766, + 1.6829796336473777 + ], + [ + -57.335973359733586, + 1.9487113343705005 + ], + [ + -56.78156781567816, + 1.864083404203896 + ], + [ + -56.540365403654036, + 1.8996271348738674 + ], + [ + -55.99675996759967, + 1.818384321913939 + ], + [ + -55.90675906759067, + 2.021491354313781 + ], + [ + -56.07236072360723, + 2.2212132695069613 + ], + [ + -55.97155971559715, + 2.5106407906767316 + ], + [ + -55.56835568355683, + 2.4209351847001273 + ], + [ + -55.096750967509664, + 2.5241812595033792 + ], + [ + -54.52434524345243, + 2.3126114340868895 + ], + [ + -54.088740887408875, + 2.1061192844803855 + ], + [ + -53.779137791377906, + 2.376928661013494 + ], + [ + -53.55593555935559, + 2.334614695930199 + ], + [ + -53.41913419134191, + 2.0536499677770905 + ], + [ + -52.94032940329403, + 2.124737429117033 + ], + [ + -52.555125551255514, + 2.503870556263408 + ], + [ + -52.24912249122491, + 3.2418261073161574 + ], + [ + -51.658716587165856, + 4.15580775311544 + ], + [ + -51.31671316713167, + 4.203199394008735 + ], + [ + -51.06831068310683, + 3.6497327307191796 + ], + [ + -50.510305103051024, + 1.9013196934772054 + ], + [ + -49.973899738997375, + 1.7371415089539965 + ], + [ + -49.948699486994855, + 1.046577598794542 + ], + [ + -50.69750697506976, + 0.22230155897185 + ], + [ + -50.38790387903879, + -0.0789738724212441 + ], + [ + -48.62028620286202, + -0.2346892639277911 + ], + [ + -48.584285842858435, + -1.2383765157036777 + ], + [ + -47.82467824678247, + -0.5816637776108564 + ], + [ + -46.56826568265683, + -0.9404862015172455 + ], + [ + -44.905049050490504, + -1.5514998573200955 + ], + [ + -44.419044190441895, + -2.137125134072974 + ], + [ + -44.58104581045811, + -2.6905917973625435 + ], + [ + -43.41823418234182, + -2.3825461315561114 + ], + [ + -41.47421474214741, + -2.912316974399033 + ], + [ + -39.980199801998026, + -2.8733881265224 + ], + [ + -38.50058500585004, + -3.701049283551754 + ], + [ + -37.222572225722246, + -4.82152307895754 + ], + [ + -36.452164521645216, + -5.1092580415239865 + ], + [ + -35.5989559895599, + -5.149879448003958 + ], + [ + -35.235352353523524, + -5.464695348223714 + ], + [ + -34.8969489694897, + -6.737499417929385 + ], + [ + -34.73134731347312, + -7.343435397922235 + ], + [ + -35.127351273512744, + -8.99706515337762 + ], + [ + -35.638556385563845, + -9.64870021566044 + ], + [ + -37.046170461704605, + -11.03998338759935 + ], + [ + -37.683376833768335, + -12.170612534625135 + ], + [ + -38.42498424984248, + -13.03889509813446 + ], + [ + -38.673386733867346, + -13.057513242771108 + ], + [ + -38.9541895418954, + -13.793776235220534 + ], + [ + -38.88218882188821, + -15.66743860910907 + ], + [ + -39.15939159391593, + -17.2076669381412 + ], + [ + -39.267392673926736, + -17.867764793440685 + ], + [ + -39.584195841958405, + -18.262130948017045 + ], + [ + -39.760597605976045, + -19.599252244649335 + ], + [ + -40.775807758077576, + -20.904214927818316 + ], + [ + -40.94500945009449, + -21.936675675850843 + ], + [ + -41.755017550175495, + -22.369970678303837 + ], + [ + -41.989019890198904, + -22.9708289824867 + ], + [ + -43.07623076230763, + -22.967443865280032 + ], + [ + -44.64944649446494, + -23.3516546682364 + ], + [ + -45.35145351453514, + -23.796797580912717 + ], + [ + -46.47106471064711, + -24.089610219289156 + ], + [ + -47.64827648276483, + -24.8851127628552 + ], + [ + -48.49428494284942, + -25.876952104407763 + ], + [ + -48.641886418864175, + -26.623370448477175 + ], + [ + -48.47628476284763, + -27.175144553163413 + ], + [ + -48.659886598865995, + -28.185602039352624 + ], + [ + -48.886688866888676, + -28.674751475715574 + ], + [ + -49.588695886958874, + -29.22483302179848 + ], + [ + -50.69750697506976, + -30.985093969263772 + ], + [ + -51.575915759157596, + -31.777211395623155 + ], + [ + -52.25632256322562, + -32.24605012874612 + ], + [ + -52.71352713527135, + -33.19726806381871 + ], + [ + -53.372333723337235, + -33.7676603131416 + ], + [ + -53.649536495364956, + -33.202345739628704 + ], + [ + -53.21033210332102, + -32.72842933069574 + ], + [ + -53.786337863378634, + -32.04802077215627 + ], + [ + -54.571145711457106, + -31.49455410886671 + ], + [ + -55.600756007560065, + -30.853074398203873 + ], + [ + -55.97155971559715, + -30.88354045306385 + ], + [ + -56.97596975969759, + -30.110041171341123 + ], + [ + -57.6239762397624, + -30.216672363351037 + ] + ] + ] + }, + "countryRef": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 1960, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 4433, + "child_mortality": 517418, + "fertility": 6.21, + "life_expect": 56.33, + "population": 55605541 + }, + "x": 4433, + "y": 517418, + "size": 55605541, + "color": "America", + "map_id": 76 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 1960, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 4433, + "child_mortality": 517418, + "fertility": 6.21, + "life_expect": 56.33, + "population": 55605541 + }, + "x": 4433, + "y": 517418, + "size": 55605541, + "color": "America", + "map_id": 76 + }, + "currentYear": 1960, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.5896777992408866, + "skewed": 0.06060361996700703, + "clumpy": 0.17295912762314813, + "sparse": 0.9132776332031982, + "striated": 0.633005200827164, + "convex": 0.9032379423986137, + "skinny": 0.842943460170678, + "stringy": 0.9541150822525102, + "monotonic": 0.9919763502945833, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 1960, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 4433, + "child_mortality": 517418, + "fertility": 6.21, + "life_expect": 56.33, + "population": 55605541 + }, + "x": 4433, + "y": 517418, + "size": 55605541, + "color": "America", + "map_id": 76 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -42.97183463481174, + -89.08483153446862 + ], + "drag": [ + -42.97183463481174, + -89.08483153446862 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 221 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2003", + "timestamp": 1522411829089, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.06651744977734508, + "skewed": 0.22751110743083114, + "clumpy": 0.22404856325056954, + "sparse": 0.11962855783749293, + "striated": 0.6415692161278932, + "convex": 0.5899075825883926, + "skinny": 0.8026513616542961, + "stringy": 0.3880191561076589, + "monotonic": 0.3876321162865721, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2003, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 11627, + "child_mortality": 93417, + "fertility": 2.2, + "life_expect": 72.7, + "population": 63211251 + }, + "x": 11627, + "y": 93417, + "size": 63211251, + "color": "America", + "map_id": 76 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 32.65859432245692, + -88.77696414490444 + ], + "drag": [ + 32.65859432245692, + -88.77696414490444 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 222 + }, + { + "attrs": { + "name": "Selected Year 2003", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.07\",\"payload\":{\"numVal\":0.06651744977734508},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.23\",\"payload\":{\"numVal\":0.22751110743083114},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.22\",\"payload\":{\"numVal\":0.22404856325056954},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.12\",\"payload\":{\"numVal\":0.11962855783749293},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.64\",\"payload\":{\"numVal\":0.6415692161278932},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.59\",\"payload\":{\"numVal\":0.5899075825883926},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.8\",\"payload\":{\"numVal\":0.8026513616542961},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.39\",\"payload\":{\"numVal\":0.3880191561076589},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.39\",\"payload\":{\"numVal\":0.3876321162865721},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Uganda\",\"text\":\"Uganda\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 223 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2003", + "timestamp": 1522411829089, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 800, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 30.418504185041854, + -1.1351304409004257 + ], + [ + 29.8208982089821, + -1.4431761067068436 + ], + [ + 29.579695796957964, + -1.3416225905069297 + ], + [ + 29.586895868958692, + -0.5867414534208564 + ], + [ + 29.8208982089821, + -0.2059157676711436 + ], + [ + 29.874898748987505, + 0.5980495689115628 + ], + [ + 30.08730087300873, + 1.0618106262245277 + ], + [ + 30.468904689046894, + 1.5831186760507876 + ], + [ + 30.854108541085424, + 1.8488503767739104 + ], + [ + 31.174511745117456, + 2.2042876834736376 + ], + [ + 30.7749077490775, + 2.339692371740199 + ], + [ + 30.832508325083268, + 3.5092503666426182 + ], + [ + 31.246512465124653, + 3.781752301779065 + ], + [ + 31.88011880118802, + 3.558334566139237 + ], + [ + 32.68652686526866, + 3.7919076533990648 + ], + [ + 33.38853388533886, + 3.7902150947957267 + ], + [ + 34.00414004140043, + 4.25059103490203 + ], + [ + 34.47934479344795, + 3.5549494489325753 + ], + [ + 34.59454594545946, + 3.053952102346301 + ], + [ + 35.037350373503756, + 1.9063973692872054 + ], + [ + 34.67374673746738, + 1.1769046112511035 + ], + [ + 34.18054180541807, + 0.5151141973482822 + ], + [ + 33.89253892538926, + 0.11059269115193615 + ], + [ + 33.90333903339035, + -0.9506415531372312 + ], + [ + 31.86571865718659, + -1.0268066902871738 + ], + [ + 30.771307713077135, + -1.01495878006385 + ], + [ + 30.418504185041854, + -1.1351304409004257 + ] + ] + ] + }, + "countryRef": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 1960, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.05974640155503885, + "skewed": 0.937178511037394, + "clumpy": 0.3257593926473976, + "sparse": 0.2419420681538671, + "striated": 0.6204515440241483, + "convex": 0.40926629695498007, + "skinny": 0.9137039581470257, + "stringy": 0.7287307087955757, + "monotonic": 0.4394275590728689, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2003, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 11627, + "child_mortality": 93417, + "fertility": 2.2, + "life_expect": 72.7, + "population": 63211251 + }, + "x": 11627, + "y": 93417, + "size": 63211251, + "color": "America", + "map_id": 76 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 32.65859432245692, + -88.77696414490444 + ], + "drag": [ + 32.65859432245692, + -88.77696414490444 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 224 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1960", + "timestamp": 1522411839498, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 1960, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 871, + "child_mortality": 69883, + "fertility": 7, + "life_expect": 47.091, + "population": 5308673 + }, + "x": 871, + "y": 69883, + "size": 5308673, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 1960, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.38153681930118033, + "skewed": 0.43931966596801364, + "clumpy": 0.7138156750495352, + "sparse": 0.25442251959508755, + "striated": 0.06555061670161244, + "convex": 0.6808235075344842, + "skinny": 0.08464224145757959, + "stringy": 0.8944257665988762, + "monotonic": 0.820521486231657, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 1960, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 4433, + "child_mortality": 517418, + "fertility": 6.21, + "life_expect": 56.33, + "population": 55605541 + }, + "x": 4433, + "y": 517418, + "size": 55605541, + "color": "America", + "map_id": 76 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 1960, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 871, + "child_mortality": 69883, + "fertility": 7, + "life_expect": 47.091, + "population": 5308673 + }, + "x": 871, + "y": 69883, + "size": 5308673, + "color": "Africa", + "map_id": 800 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 32.65859432245692, + -88.77696414490444 + ], + "drag": [ + 32.65859432245692, + -88.77696414490444 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 225 + }, + { + "attrs": { + "name": "Selected Year 1960", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1960\",\"payload\":{\"numVal\":1960},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.38\",\"payload\":{\"numVal\":0.38153681930118033},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.44\",\"payload\":{\"numVal\":0.43931966596801364},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.71\",\"payload\":{\"numVal\":0.7138156750495352},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.25\",\"payload\":{\"numVal\":0.25442251959508755},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.07\",\"payload\":{\"numVal\":0.06555061670161244},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.68\",\"payload\":{\"numVal\":0.6808235075344842},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.08\",\"payload\":{\"numVal\":0.08464224145757959},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.89\",\"payload\":{\"numVal\":0.8944257665988762},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.82\",\"payload\":{\"numVal\":0.820521486231657},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Uganda\",\"text\":\"Uganda\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 226 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1960", + "timestamp": 1522411839498, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 1960, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 871, + "child_mortality": 69883, + "fertility": 7, + "life_expect": 47.091, + "population": 5308673 + }, + "x": 871, + "y": 69883, + "size": 5308673, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.06651744977734508, + "skewed": 0.22751110743083114, + "clumpy": 0.22404856325056954, + "sparse": 0.11962855783749293, + "striated": 0.6415692161278932, + "convex": 0.5899075825883926, + "skinny": 0.8026513616542961, + "stringy": 0.3880191561076589, + "monotonic": 0.3876321162865721, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 1960, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 4433, + "child_mortality": 517418, + "fertility": 6.21, + "life_expect": 56.33, + "population": 55605541 + }, + "x": 4433, + "y": 517418, + "size": 55605541, + "color": "America", + "map_id": 76 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 1960, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 871, + "child_mortality": 69883, + "fertility": 7, + "life_expect": 47.091, + "population": 5308673 + }, + "x": 871, + "y": 69883, + "size": 5308673, + "color": "Africa", + "map_id": 800 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 32.65859432245692, + -88.77696414490444 + ], + "drag": [ + 32.65859432245692, + -88.77696414490444 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 227 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2003", + "timestamp": 1522411847994, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8942995370803246, + "skewed": 0.1339627470171636, + "clumpy": 0.32663750766254274, + "sparse": 0.8720189793279267, + "striated": 0.6467431375127586, + "convex": 0.17954390522661612, + "skinny": 0.23982908144564008, + "stringy": 0.9585216331292576, + "monotonic": 0.8027893288742298, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2003, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 11627, + "child_mortality": 93417, + "fertility": 2.2, + "life_expect": 72.7, + "population": 63211251 + }, + "x": 11627, + "y": 93417, + "size": 63211251, + "color": "America", + "map_id": 76 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 32.65859432245692, + -88.77696414490444 + ], + "drag": [ + 32.65859432245692, + -88.77696414490444 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 228 + }, + { + "attrs": { + "name": "Selected Year 2003", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.89\",\"payload\":{\"numVal\":0.8942995370803246},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.13\",\"payload\":{\"numVal\":0.1339627470171636},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.33\",\"payload\":{\"numVal\":0.32663750766254274},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.87\",\"payload\":{\"numVal\":0.8720189793279267},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.65\",\"payload\":{\"numVal\":0.6467431375127586},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.18\",\"payload\":{\"numVal\":0.17954390522661612},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.24\",\"payload\":{\"numVal\":0.23982908144564008},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.96\",\"payload\":{\"numVal\":0.9585216331292576},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.8\",\"payload\":{\"numVal\":0.8027893288742298},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Uganda\",\"text\":\"Uganda\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 229 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2003", + "timestamp": 1522411847994, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 1960, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.38153681930118033, + "skewed": 0.43931966596801364, + "clumpy": 0.7138156750495352, + "sparse": 0.25442251959508755, + "striated": 0.06555061670161244, + "convex": 0.6808235075344842, + "skinny": 0.08464224145757959, + "stringy": 0.8944257665988762, + "monotonic": 0.820521486231657, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2003, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 11627, + "child_mortality": 93417, + "fertility": 2.2, + "life_expect": 72.7, + "population": 63211251 + }, + "x": 11627, + "y": 93417, + "size": 63211251, + "color": "America", + "map_id": 76 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 32.65859432245692, + -88.77696414490444 + ], + "drag": [ + 32.65859432245692, + -88.77696414490444 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 230 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United Arab Emirates (3 Countries)", + "timestamp": 1522411860203, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 784, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 51.57951579515796, + 24.244785816063086 + ], + [ + 51.7559175591756, + 24.29387001555972 + ], + [ + 51.79551795517955, + 24.01967552181992 + ], + [ + 52.57672576725767, + 24.177083471929805 + ], + [ + 53.40473404734047, + 24.15169509287982 + ], + [ + 54.00954009540095, + 24.121229038019848 + ], + [ + 54.69354693546936, + 24.798252479352655 + ], + [ + 55.438754387543895, + 25.43973219001549 + ], + [ + 56.07236072360723, + 26.05582352162834 + ], + [ + 56.259562595625965, + 25.713926683755275 + ], + [ + 56.39636396363966, + 24.925194374602555 + ], + [ + 55.88515885158853, + 24.920116698792555 + ], + [ + 55.80235802358024, + 24.270174195113057 + ], + [ + 55.982359823598244, + 24.131384389639834 + ], + [ + 55.52875528755288, + 23.933355033049992 + ], + [ + 55.52515525155252, + 23.525448409646984 + ], + [ + 55.23355233552337, + 23.110771551830638 + ], + [ + 55.20835208352085, + 22.707942604237616 + ], + [ + 55.00675006750069, + 22.49637277882111 + ], + [ + 52.00072000720007, + 23.000755242614062 + ], + [ + 51.61911619116191, + 24.014597846009934 + ], + [ + 51.57951579515796, + 24.244785816063086 + ] + ] + ] + }, + "countryRef": { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.052024155114015036, + "skewed": 0.2602673242650264, + "clumpy": 0.5794197618349504, + "sparse": 0.9552664422290262, + "striated": 0.663567016377504, + "convex": 0.8592143419324052, + "skinny": 0.11409467408015916, + "stringy": 0.1165013581432055, + "monotonic": 0.6590439501907217, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2003, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 11627, + "child_mortality": 93417, + "fertility": 2.2, + "life_expect": 72.7, + "population": 63211251 + }, + "x": 11627, + "y": 93417, + "size": 63211251, + "color": "America", + "map_id": 76 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + }, + { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 54.4309905374282, + -88.13867947734407 + ], + "drag": [ + 54.4309905374282, + -88.13867947734407 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 231 + }, + { + "attrs": { + "name": "Selected United Arab Emirates (3 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.05\",\"payload\":{\"numVal\":0.052024155114015036},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.26\",\"payload\":{\"numVal\":0.2602673242650264},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.58\",\"payload\":{\"numVal\":0.5794197618349504},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.96\",\"payload\":{\"numVal\":0.9552664422290262},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.66\",\"payload\":{\"numVal\":0.663567016377504},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.86\",\"payload\":{\"numVal\":0.8592143419324052},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.11\",\"payload\":{\"numVal\":0.11409467408015916},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.12\",\"payload\":{\"numVal\":0.1165013581432055},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.66\",\"payload\":{\"numVal\":0.6590439501907217},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Brazil\",\"text\":\"Brazil\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Uganda\",\"text\":\"Uganda\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = United Arab Emirates\",\"text\":\"United Arab Emirates\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 232 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United Arab Emirates (3 Countries)", + "timestamp": 1522411860203, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.8942995370803246, + "skewed": 0.1339627470171636, + "clumpy": 0.32663750766254274, + "sparse": 0.8720189793279267, + "striated": 0.6467431375127586, + "convex": 0.17954390522661612, + "skinny": 0.23982908144564008, + "stringy": 0.9585216331292576, + "monotonic": 0.8027893288742298, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2003, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 11627, + "child_mortality": 93417, + "fertility": 2.2, + "life_expect": 72.7, + "population": 63211251 + }, + "x": 11627, + "y": 93417, + "size": 63211251, + "color": "America", + "map_id": 76 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 32.65859432245692, + -88.77696414490444 + ], + "drag": [ + 32.65859432245692, + -88.77696414490444 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 233 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411863228, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.09612235935599989, + "skewed": 0.9025433701978014, + "clumpy": 0.30885790701718907, + "sparse": 0.10683430045086628, + "striated": 0.285155680483856, + "convex": 0.6124381797437686, + "skinny": 0.42407552897235434, + "stringy": 0.1254846678914514, + "monotonic": 0.6244284937346509, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 63.598315259521385, + -88.9986503983089 + ], + "drag": [ + 63.598315259521385, + -88.9986503983089 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 234 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2003\",\"payload\":{\"numVal\":2003},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"child_mortality\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"continent\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.1\",\"payload\":{\"numVal\":0.09612235935599989},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.9\",\"payload\":{\"numVal\":0.9025433701978014},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.31\",\"payload\":{\"numVal\":0.30885790701718907},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.11\",\"payload\":{\"numVal\":0.10683430045086628},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.29\",\"payload\":{\"numVal\":0.285155680483856},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.61\",\"payload\":{\"numVal\":0.6124381797437686},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.42\",\"payload\":{\"numVal\":0.42407552897235434},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.13\",\"payload\":{\"numVal\":0.1254846678914514},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.62\",\"payload\":{\"numVal\":0.6244284937346509},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 235 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522411863228, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 784, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 51.57951579515796, + 24.244785816063086 + ], + [ + 51.7559175591756, + 24.29387001555972 + ], + [ + 51.79551795517955, + 24.01967552181992 + ], + [ + 52.57672576725767, + 24.177083471929805 + ], + [ + 53.40473404734047, + 24.15169509287982 + ], + [ + 54.00954009540095, + 24.121229038019848 + ], + [ + 54.69354693546936, + 24.798252479352655 + ], + [ + 55.438754387543895, + 25.43973219001549 + ], + [ + 56.07236072360723, + 26.05582352162834 + ], + [ + 56.259562595625965, + 25.713926683755275 + ], + [ + 56.39636396363966, + 24.925194374602555 + ], + [ + 55.88515885158853, + 24.920116698792555 + ], + [ + 55.80235802358024, + 24.270174195113057 + ], + [ + 55.982359823598244, + 24.131384389639834 + ], + [ + 55.52875528755288, + 23.933355033049992 + ], + [ + 55.52515525155252, + 23.525448409646984 + ], + [ + 55.23355233552337, + 23.110771551830638 + ], + [ + 55.20835208352085, + 22.707942604237616 + ], + [ + 55.00675006750069, + 22.49637277882111 + ], + [ + 52.00072000720007, + 23.000755242614062 + ], + [ + 51.61911619116191, + 24.014597846009934 + ], + [ + 51.57951579515796, + 24.244785816063086 + ] + ] + ] + }, + "countryRef": { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + }, + "currentYear": 2003, + "xField": "gdp", + "yField": "child_mortality", + "sizeField": "population", + "colorField": "continent", + "updateStatistics": null, + "outlying": 0.052024155114015036, + "skewed": 0.2602673242650264, + "clumpy": 0.5794197618349504, + "sparse": 0.9552664422290262, + "striated": 0.663567016377504, + "convex": 0.8592143419324052, + "skinny": 0.11409467408015916, + "stringy": 0.1165013581432055, + "monotonic": 0.6590439501907217, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Brazil", + "count": 216, + "this": { + "country": "Brazil", + "year": 2003, + "map_id": 76, + "continent": "America", + "main_religion": "Christian", + "gdp": 11627, + "child_mortality": 93417, + "fertility": 2.2, + "life_expect": 72.7, + "population": 63211251 + }, + "x": 11627, + "y": 93417, + "size": 63211251, + "color": "America", + "map_id": 76 + }, + { + "country": "Uganda", + "count": 216, + "this": { + "country": "Uganda", + "year": 2003, + "map_id": 800, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 1147, + "child_mortality": 146541, + "fertility": 6.72, + "life_expect": 52.4, + "population": 5945839 + }, + "x": 1147, + "y": 146541, + "size": 5945839, + "color": "Africa", + "map_id": 800 + }, + { + "country": "United Arab Emirates", + "count": 216, + "this": { + "country": "United Arab Emirates", + "year": 2003, + "map_id": 784, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 109675, + "child_mortality": 514, + "fertility": 2.33, + "life_expect": 74.6, + "population": 80151 + }, + "x": 109675, + "y": 514, + "size": 80151, + "color": "Asia", + "map_id": 784 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 54.4309905374282, + -88.13867947734407 + ], + "drag": [ + 54.4309905374282, + -88.13867947734407 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 236 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Color = main_religion", + "timestamp": 1522412363942, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1800, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.25480278946522983, + "skewed": 0.615116306645259, + "clumpy": 0.0899033368297042, + "sparse": 0.5677664570417065, + "striated": 0.7839124676878133, + "convex": 0.9559352696181425, + "skinny": 0.1140989236883665, + "stringy": 0.06095059968308991, + "monotonic": 0.5723750606589049, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 237 + }, + { + "attrs": { + "name": "Color = main_religion", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1800\",\"payload\":{\"numVal\":1800},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.25\",\"payload\":{\"numVal\":0.25480278946522983},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.62\",\"payload\":{\"numVal\":0.615116306645259},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.09\",\"payload\":{\"numVal\":0.0899033368297042},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.57\",\"payload\":{\"numVal\":0.5677664570417065},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.78\",\"payload\":{\"numVal\":0.7839124676878133},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.96\",\"payload\":{\"numVal\":0.9559352696181425},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.11\",\"payload\":{\"numVal\":0.1140989236883665},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.06\",\"payload\":{\"numVal\":0.06095059968308991},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.57\",\"payload\":{\"numVal\":0.5723750606589049},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]", + "tags": [], + "note": "Religions and babies | Hans Rosling\nhttps://www.youtube.com/watch?v=ezVk1ahRF78", + "starred": true + }, + "type": "state", + "id": 238 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Color = main_religion", + "timestamp": 1522412363943, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1800, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "continent", + "outlying": 0, + "skewed": 0, + "clumpy": 0, + "sparse": 0, + "striated": 0, + "convex": 0, + "skinny": 0, + "monotonic": 0, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 239 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1960", + "timestamp": 1522412378351, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1960, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.6940671398231415, + "skewed": 0.20960483048481438, + "clumpy": 0.7186160574703175, + "sparse": 0.5960332433098003, + "striated": 0.9963865423050908, + "convex": 0.17370176123345793, + "skinny": 0.08740820710417418, + "stringy": 0.45544552225321344, + "monotonic": 0.9335941655388822, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 240 + }, + { + "attrs": { + "name": "Selected Year 1960", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1960\",\"payload\":{\"numVal\":1960},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.69\",\"payload\":{\"numVal\":0.6940671398231415},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.21\",\"payload\":{\"numVal\":0.20960483048481438},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.72\",\"payload\":{\"numVal\":0.7186160574703175},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.6\",\"payload\":{\"numVal\":0.5960332433098003},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 1\",\"payload\":{\"numVal\":0.9963865423050908},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.17\",\"payload\":{\"numVal\":0.17370176123345793},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.09\",\"payload\":{\"numVal\":0.08740820710417418},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.46\",\"payload\":{\"numVal\":0.45544552225321344},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.93\",\"payload\":{\"numVal\":0.9335941655388822},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 241 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1960", + "timestamp": 1522412378351, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1800, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.25480278946522983, + "skewed": 0.615116306645259, + "clumpy": 0.0899033368297042, + "sparse": 0.5677664570417065, + "striated": 0.7839124676878133, + "convex": 0.9559352696181425, + "skinny": 0.1140989236883665, + "stringy": 0.06095059968308991, + "monotonic": 0.5723750606589049, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 242 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2010", + "timestamp": 1522412386014, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.4176998299473438, + "skewed": 0.9644196118438968, + "clumpy": 0.7280256910382745, + "sparse": 0.5043440004801549, + "striated": 0.6456681980105696, + "convex": 0.256897290966249, + "skinny": 0.324947391761488, + "stringy": 0.6491789079382926, + "monotonic": 0.40526017641227496, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 243 + }, + { + "attrs": { + "name": "Selected Year 2010", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.42\",\"payload\":{\"numVal\":0.4176998299473438},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.96\",\"payload\":{\"numVal\":0.9644196118438968},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.73\",\"payload\":{\"numVal\":0.7280256910382745},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.5\",\"payload\":{\"numVal\":0.5043440004801549},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.65\",\"payload\":{\"numVal\":0.6456681980105696},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.26\",\"payload\":{\"numVal\":0.256897290966249},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.32\",\"payload\":{\"numVal\":0.324947391761488},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.65\",\"payload\":{\"numVal\":0.6491789079382926},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.41\",\"payload\":{\"numVal\":0.40526017641227496},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 244 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2010", + "timestamp": 1522412386014, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 1960, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.6940671398231415, + "skewed": 0.20960483048481438, + "clumpy": 0.7186160574703175, + "sparse": 0.5960332433098003, + "striated": 0.9963865423050908, + "convex": 0.17370176123345793, + "skinny": 0.08740820710417418, + "stringy": 0.45544552225321344, + "monotonic": 0.9335941655388822, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 245 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United States (1 Countries)", + "timestamp": 1522412410434, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 840, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -155.68895688956889, + 18.91661133277391 + ], + [ + -155.93735937359372, + 19.058786255453796 + ], + [ + -155.90855908559087, + 19.33805842500358 + ], + [ + -156.07416074160741, + 19.703651083323294 + ], + [ + -156.02376023760237, + 19.813667392539884 + ], + [ + -155.8509585095851, + 19.97784557706308 + ], + [ + -155.91935919359193, + 20.174182375049597 + ], + [ + -155.8617586175862, + 20.267273098232863 + ], + [ + -155.7861578615786, + 20.2486549535962 + ], + [ + -155.4009540095401, + 20.079399093263007 + ], + [ + -155.22455224552246, + 19.99307860449308 + ], + [ + -155.06255062550625, + 19.85936647482984 + ], + [ + -154.80694806948068, + 19.509006843940114 + ], + [ + -154.8321483214832, + 19.453152410030157 + ], + [ + -155.2209522095221, + 19.23989002601033 + ], + [ + -155.54135541355413, + 19.084174634503782 + ], + [ + -155.68895688956889, + 18.91661133277391 + ] + ] + ], + [ + [ + [ + -156.4161641616416, + 20.57193364683262 + ], + [ + -156.58536585365854, + 20.783503472249123 + ], + [ + -156.70056700567005, + 20.86474628520905 + ], + [ + -156.71136711367114, + 20.927370953532346 + ], + [ + -156.61416614166143, + 21.011998883698936 + ], + [ + -156.25776257762578, + 20.917215601912346 + ], + [ + -155.9949599495995, + 20.764885327612475 + ], + [ + -156.07776077760778, + 20.6447136667759 + ], + [ + -156.4161641616416, + 20.57193364683262 + ] + ] + ], + [ + [ + [ + -156.79056790567904, + 21.06954587621223 + ], + [ + -157.3269732697327, + 21.09831937246888 + ], + [ + -157.25137251372513, + 21.22018359190878 + ], + [ + -156.75816758167582, + 21.176177068222145 + ], + [ + -156.79056790567904, + 21.06954587621223 + ] + ] + ], + [ + [ + [ + -157.70857708577086, + 21.26419011559541 + ], + [ + -157.7769777697777, + 21.277730584422073 + ], + [ + -158.12618126181263, + 21.313274315092045 + ], + [ + -158.2521825218252, + 21.538384609335196 + ], + [ + -158.29178291782918, + 21.579006015815168 + ], + [ + -158.02538025380255, + 21.71779582128839 + ], + [ + -157.94257942579426, + 21.653478594361772 + ], + [ + -157.65457654576545, + 21.321737108108707 + ], + [ + -157.70857708577086, + 21.26419011559541 + ] + ] + ], + [ + [ + [ + -159.46539465394653, + 21.883666564414924 + ], + [ + -159.80019800198002, + 22.064770334971456 + ], + [ + -159.74979749797498, + 22.137550354914737 + ], + [ + -159.5949959499595, + 22.23571875390799 + ], + [ + -159.36459364593645, + 22.215408050668003 + ], + [ + -159.34659346593466, + 21.98183496340819 + ], + [ + -159.46539465394653, + 21.883666564414924 + ] + ] + ], + [ + [ + [ + -67.13887138871388, + 45.137729215593424 + ], + [ + -66.9660696606966, + 44.80937284654701 + ], + [ + -68.03168031680316, + 44.325301085994056 + ], + [ + -69.06129061290612, + 43.98001913091434 + ], + [ + -70.1161011610116, + 43.683821375331235 + ], + [ + -70.64530645306452, + 43.08973330556171 + ], + [ + -70.81450814508145, + 42.86462301131854 + ], + [ + -70.82530825308253, + 42.33485216847562 + ], + [ + -70.4941049410494, + 41.8050813256327 + ], + [ + -70.080100801008, + 41.77969294658271 + ], + [ + -70.18450184501845, + 42.14528560490244 + ], + [ + -69.88569885698857, + 41.92356042786594 + ], + [ + -69.9648996489965, + 41.63751802390283 + ], + [ + -70.64170641706417, + 41.47503239798296 + ], + [ + -71.12051120511205, + 41.493650542619605 + ], + [ + -71.85851858518585, + 41.31931700647641 + ], + [ + -72.2941229412294, + 41.27023280697978 + ], + [ + -72.87732877328773, + 41.22114860748316 + ], + [ + -73.70893708937089, + 40.93172108631339 + ], + [ + -72.24012240122401, + 41.11959509128323 + ], + [ + -71.94491944919449, + 40.93002852771005 + ], + [ + -73.34533345333453, + 40.63044565492028 + ], + [ + -73.98253982539825, + 40.628753096316956 + ], + [ + -73.95373953739536, + 40.750617315756855 + ], + [ + -74.2561425614256, + 40.47303770481041 + ], + [ + -73.96093960939609, + 40.42733862252044 + ], + [ + -74.1769417694177, + 39.709693774707674 + ], + [ + -74.90774907749078, + 38.9395796101916 + ], + [ + -74.97974979749797, + 39.196848517898076 + ], + [ + -75.19935199351993, + 39.24762527599803 + ], + [ + -75.52695526955269, + 39.49812394929117 + ], + [ + -75.32175321753218, + 38.959890313431586 + ], + [ + -75.07335073350733, + 38.78217166008173 + ], + [ + -75.05535055350553, + 38.40473109153869 + ], + [ + -75.37575375753757, + 38.01544261277233 + ], + [ + -75.94095940959409, + 37.21655495199961 + ], + [ + -76.03096030960309, + 37.25717635847958 + ], + [ + -75.72135721357213, + 37.93758491701905 + ], + [ + -76.23256232562325, + 38.31841060276875 + ], + [ + -76.35136351363514, + 39.14945687700478 + ], + [ + -76.54216542165422, + 38.71785443315511 + ], + [ + -76.32976329763298, + 38.08314495690561 + ], + [ + -76.98856988569885, + 38.240552907015484 + ], + [ + -76.3009630096301, + 37.917274213779066 + ], + [ + -76.25776257762577, + 36.966056278706475 + ], + [ + -75.97335973359733, + 36.89666137596987 + ], + [ + -75.86895868958689, + 36.55137942089014 + ], + [ + -75.72855728557285, + 35.55107728632092 + ], + [ + -76.36216362163621, + 34.80804405945817 + ], + [ + -77.3989739897399, + 34.51184630387506 + ], + [ + -78.05418054180541, + 33.92622102712218 + ], + [ + -78.55458554585546, + 33.86190380019558 + ], + [ + -79.06219062190621, + 33.494618583272526 + ], + [ + -79.20259202592025, + 33.15779942120946 + ], + [ + -80.30060300603006, + 32.50954947613329 + ], + [ + -80.86580865808658, + 32.033940508597 + ], + [ + -81.33741337413373, + 31.439852438827458 + ], + [ + -81.49221492214922, + 30.730670384031356 + ], + [ + -81.31221312213121, + 30.035028798061887 + ], + [ + -80.9810098100981, + 29.180286703379224 + ], + [ + -80.53460534605345, + 28.472797207186446 + ], + [ + -80.5310053100531, + 28.039502204733452 + ], + [ + -80.05580055800557, + 26.88009956145102 + ], + [ + -80.08820088200882, + 26.206461237324888 + ], + [ + -80.13140131401313, + 25.817172758558527 + ], + [ + -80.37980379803798, + 25.206159102755663 + ], + [ + -80.67860678606786, + 25.079217207505764 + ], + [ + -81.17181171811718, + 25.201081426945677 + ], + [ + -81.33021330213302, + 25.639454105208657 + ], + [ + -81.70821708217082, + 25.869642075261808 + ], + [ + -82.2410224102241, + 26.72946184575447 + ], + [ + -82.70542705427054, + 27.494498334460545 + ], + [ + -82.85662856628566, + 27.885479371830243 + ], + [ + -82.65142651426514, + 28.550654902939726 + ], + [ + -82.92862928629286, + 29.10073644902262 + ], + [ + -83.70983709837098, + 29.936860399068635 + ], + [ + -84.09864098640986, + 30.08919067336852 + ], + [ + -85.11025110251101, + 29.63558496767554 + ], + [ + -85.28665286652866, + 29.686361725775498 + ], + [ + -85.77265772657726, + 30.1518153416918 + ], + [ + -86.3990639906399, + 30.400621456381614 + ], + [ + -87.52947529475294, + 30.2736795611317 + ], + [ + -88.41868418684186, + 30.385388428951615 + ], + [ + -89.18189181891819, + 30.31599352621501 + ], + [ + -89.59229592295922, + 30.160278134708463 + ], + [ + -89.41229412294122, + 29.89454643398534 + ], + [ + -89.43029430294303, + 29.488332369185656 + ], + [ + -89.21789217892179, + 29.290303012595814 + ], + [ + -89.40869408694087, + 29.15997600013924 + ], + [ + -89.77949779497794, + 29.307228598629123 + ], + [ + -90.1539015390154, + 29.117662035055943 + ], + [ + -90.88110881108811, + 29.148128089915915 + ], + [ + -91.62631626316262, + 29.676206374155512 + ], + [ + -92.49752497524975, + 29.552649596112275 + ], + [ + -93.22473224732246, + 29.78453012476875 + ], + [ + -93.84753847538475, + 29.713442663428808 + ], + [ + -94.68994689946899, + 29.479869576168994 + ], + [ + -95.60075600756008, + 28.73852890790957 + ], + [ + -96.59436594365944, + 28.306926464059913 + ], + [ + -97.14157141571415, + 27.829624937920286 + ], + [ + -97.36837368373683, + 27.37940434943397 + ], + [ + -97.37917379173791, + 26.69053299787784 + ], + [ + -97.32877328773287, + 26.20984635453155 + ], + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -117.29457294572946, + 33.04609055338955 + ], + [ + -117.94257942579426, + 33.621560478522426 + ], + [ + -118.41058410584105, + 33.741732139359 + ], + [ + -118.51858518585186, + 34.02777454332211 + ], + [ + -119.08019080190802, + 34.07855130142207 + ], + [ + -119.44019440194401, + 34.34766811935185 + ], + [ + -120.36900369003689, + 34.44752907694844 + ], + [ + -120.62460624606246, + 34.60832214426499 + ], + [ + -120.74340743407434, + 35.15671113174456 + ], + [ + -121.71541715417155, + 36.16209094212377 + ], + [ + -122.54702547025471, + 37.55168155545935 + ], + [ + -122.5110251102511, + 37.78356208411584 + ], + [ + -122.95382953829538, + 38.113611011765585 + ], + [ + -123.72783727837279, + 38.951427520414924 + ], + [ + -123.86463864638645, + 39.767240767220954 + ], + [ + -124.39744397443974, + 40.3139371960972 + ], + [ + -124.17784177841779, + 41.141598353126554 + ], + [ + -124.21384213842138, + 41.99972556501588 + ], + [ + -124.53424534245343, + 42.766454612325276 + ], + [ + -124.14184141841417, + 43.70920975438122 + ], + [ + -124.01944019440194, + 44.61642116576718 + ], + [ + -123.90063900639007, + 45.52363257715314 + ], + [ + -124.08064080640807, + 46.864138990992075 + ], + [ + -124.39744397443974, + 47.72057364427809 + ], + [ + -124.68544685446855, + 48.18433470159104 + ], + [ + -124.56664566645667, + 48.378978940974235 + ], + [ + -123.11943119431194, + 48.04046722030782 + ], + [ + -122.58662586625866, + 47.096019519648564 + ], + [ + -122.33822338223382, + 47.36005866176836 + ], + [ + -122.50022500225002, + 48.179257025781055 + ], + [ + -122.83862838628386, + 49.000147948397085 + ], + [ + -120.00180001800018, + 49.000147948397085 + ], + [ + -117.03177031770318, + 49.000147948397085 + ], + [ + -116.0489604896049, + 49.000147948397085 + ], + [ + -112.99972999729997, + 49.000147948397085 + ], + [ + -110.05130051300513, + 49.000147948397085 + ], + [ + -107.04887048870488, + 49.000147948397085 + ], + [ + -104.050040500405, + 49.000147948397085 + ], + [ + -100.65160651606516, + 49.000147948397085 + ], + [ + -97.22797227972279, + 49.000147948397085 + ], + [ + -95.1579515795158, + 49.000147948397085 + ], + [ + -95.15435154351543, + 49.38435875135343 + ], + [ + -94.8159481594816, + 49.389436427163446 + ], + [ + -94.63954639546395, + 48.83935488108054 + ], + [ + -94.329943299433, + 48.67009902074733 + ], + [ + -93.63153631536315, + 48.60916691102739 + ], + [ + -92.6091260912609, + 48.45006640231418 + ], + [ + -91.64071640716406, + 48.14032817790442 + ], + [ + -90.83070830708307, + 48.27065519036097 + ], + [ + -89.59949599495995, + 48.01000116544785 + ], + [ + -89.27189271892719, + 48.020156517067846 + ], + [ + -88.37908379083791, + 48.30281380382428 + ], + [ + -87.43947439474394, + 47.94060626271124 + ], + [ + -86.46026460264602, + 47.55301034254822 + ], + [ + -85.65385653856538, + 47.219576297691816 + ], + [ + -84.87624876248762, + 46.89968272166206 + ], + [ + -84.7790477904779, + 46.6373361381456 + ], + [ + -84.5450454504545, + 46.53916773915233 + ], + [ + -84.60624606246063, + 46.43930678155576 + ], + [ + -84.33624336243362, + 46.40884072669576 + ], + [ + -84.14184141841417, + 46.51208680149901 + ], + [ + -84.09144091440913, + 46.275128597032534 + ], + [ + -83.88983889838899, + 46.11772064692266 + ], + [ + -83.61623616236162, + 46.11772064692266 + ], + [ + -83.46863468634686, + 45.99416386887944 + ], + [ + -83.59463594635946, + 45.81644521552957 + ], + [ + -82.55062550625506, + 45.347606482406604 + ], + [ + -82.33822338223382, + 44.440395071020646 + ], + [ + -82.13662136621366, + 43.57041994890798 + ], + [ + -82.42822428224282, + 42.979716996345104 + ], + [ + -82.89982899828998, + 42.429635450262225 + ], + [ + -83.11943119431194, + 42.079275819372484 + ], + [ + -83.1410314103141, + 41.97602974456923 + ], + [ + -83.02943029430294, + 41.83216226328601 + ], + [ + -82.6910269102691, + 41.67475431317614 + ], + [ + -82.4390243902439, + 41.67475431317614 + ], + [ + -81.27621276212761, + 42.209602831829045 + ], + [ + -80.24660246602465, + 42.36701078193893 + ], + [ + -78.93978939789397, + 42.862930452715204 + ], + [ + -78.92178921789217, + 42.96448396891512 + ], + [ + -79.01179011790117, + 43.27083707611823 + ], + [ + -79.17019170191702, + 43.46717387410473 + ], + [ + -78.72018720187201, + 43.6245818242146 + ], + [ + -77.73737737377374, + 43.629659500024616 + ], + [ + -76.81936819368194, + 43.62796694142128 + ], + [ + -76.49896498964989, + 44.018947978790976 + ], + [ + -76.37656376563766, + 44.09680567454424 + ], + [ + -75.31815318153181, + 44.81614308096036 + ], + [ + -74.86814868148682, + 45.000631968723525 + ], + [ + -73.34893348933488, + 45.00740220313688 + ], + [ + -71.50571505715057, + 45.00740220313688 + ], + [ + -71.40491404914049, + 45.25451575922335 + ], + [ + -71.08451084510845, + 45.305292517323295 + ], + [ + -70.65970659706596, + 45.45931535022652 + ], + [ + -70.30330303303033, + 45.914613614522835 + ], + [ + -70.00090000900009, + 46.693190572055556 + ], + [ + -69.23769237692376, + 47.44807170914163 + ], + [ + -68.90648906489065, + 47.18572512562517 + ], + [ + -68.23328233282332, + 47.35498098595838 + ], + [ + -67.79047790477904, + 47.06555346478859 + ], + [ + -67.79047790477904, + 45.70304378910632 + ], + [ + -67.13887138871388, + 45.137729215593424 + ] + ] + ], + [ + [ + [ + -154.0041400414004, + 56.73514076562438 + ], + [ + -154.51534515345153, + 56.992409673330826 + ], + [ + -154.67014670146702, + 57.46124840645379 + ], + [ + -153.7629376293763, + 57.81668571315353 + ], + [ + -153.230132301323, + 57.96901598745342 + ], + [ + -152.5641256412564, + 57.90131364332012 + ], + [ + -152.14292142921428, + 57.59157541891037 + ], + [ + -153.0069300693007, + 57.11596645137408 + ], + [ + -154.0041400414004, + 56.73514076562438 + ] + ] + ], + [ + [ + [ + -166.1938619386194, + 59.75466531396867 + ], + [ + -166.8490684906849, + 59.940846760335205 + ], + [ + -167.4538745387454, + 60.213348695471666 + ], + [ + -166.46746467464675, + 60.384297114408184 + ], + [ + -165.67545675456753, + 60.29289894982827 + ], + [ + -165.57825578255782, + 59.910380705475234 + ], + [ + -166.1938619386194, + 59.75466531396867 + ] + ] + ], + [ + [ + [ + -169.5310953109531, + 62.97729689471282 + ], + [ + -170.29070290702907, + 63.193944395939326 + ], + [ + -170.67230672306724, + 63.375048166495844 + ], + [ + -171.55431554315544, + 63.31750117398255 + ], + [ + -171.79191791917918, + 63.405514221355816 + ], + [ + -171.73071730717308, + 63.78295478989887 + ], + [ + -171.1151111511115, + 63.59169566772235 + ], + [ + -170.49230492304923, + 63.6949417425256 + ], + [ + -169.68229682296823, + 63.4309026004058 + ], + [ + -168.68868688686888, + 63.29719047074258 + ], + [ + -168.77148771487714, + 63.18886672012934 + ], + [ + -169.5310953109531, + 62.97729689471282 + ] + ] + ], + [ + [ + [ + -140.98640986409865, + 69.7119875773709 + ], + [ + -140.99360993609935, + 66.00020656026379 + ], + [ + -140.9972099720997, + 60.30643941865492 + ], + [ + -140.01440014400146, + 60.277665922398256 + ], + [ + -139.03879038790387, + 60.00008631145181 + ], + [ + -138.34038340383404, + 59.561713633188816 + ], + [ + -137.4511745117451, + 58.90500089509601 + ], + [ + -136.47916479164792, + 59.46354523419558 + ], + [ + -135.47475474754748, + 59.78851648603532 + ], + [ + -134.94554945549456, + 59.27059355341572 + ], + [ + -134.27234272342724, + 58.86099437140936 + ], + [ + -133.35433354333543, + 58.41077378292306 + ], + [ + -132.73152731527315, + 57.69312893511028 + ], + [ + -131.70911709117092, + 56.55234443646452 + ], + [ + -130.00630006300062, + 55.91594240161169 + ], + [ + -129.9810998109981, + 55.28461804256884 + ], + [ + -130.53550535505354, + 54.802238840619225 + ], + [ + -131.08631086310862, + 55.17967940916225 + ], + [ + -131.96831968319682, + 55.497880426588665 + ], + [ + -132.2491224912249, + 56.36954810730467 + ], + [ + -133.5379353793538, + 57.17859111969736 + ], + [ + -134.07794077940778, + 58.12303882035661 + ], + [ + -135.0391503915039, + 58.18735604728323 + ], + [ + -136.62676626766267, + 58.21274442633322 + ], + [ + -137.80037800378005, + 58.50047938889966 + ], + [ + -139.86679866798667, + 59.53801781274217 + ], + [ + -140.82440824408243, + 59.72758437631538 + ], + [ + -142.5740257402574, + 60.08471424161843 + ], + [ + -143.960039600396, + 59.9983937528485 + ], + [ + -145.92565925659255, + 60.4587696929548 + ], + [ + -147.11367113671136, + 60.88529446099446 + ], + [ + -148.2260822608226, + 60.67372463557797 + ], + [ + -148.01728017280172, + 59.9780830496085 + ], + [ + -148.57168571685716, + 59.91376582268188 + ], + [ + -149.72729727297272, + 59.70558111447204 + ], + [ + -150.60930609306092, + 59.36876195240899 + ], + [ + -151.7181171811718, + 59.15549956838913 + ], + [ + -151.85851858518586, + 59.74450996234867 + ], + [ + -151.40851408514084, + 60.72619395228125 + ], + [ + -150.34650346503466, + 61.03423961808767 + ], + [ + -150.62010620106201, + 61.28473829138082 + ], + [ + -151.89451894518945, + 60.72788651088459 + ], + [ + -152.57852578525785, + 60.06101842117178 + ], + [ + -154.01854018540186, + 59.35014380777233 + ], + [ + -153.28773287732878, + 58.86437948861604 + ], + [ + -154.23094230942309, + 58.14673464080326 + ], + [ + -155.30735307353075, + 57.72698010717693 + ], + [ + -156.30816308163082, + 57.42231955857716 + ], + [ + -156.55656556565566, + 56.98056176310752 + ], + [ + -158.1189811898119, + 56.46433138909126 + ], + [ + -158.4321843218432, + 55.993800097364954 + ], + [ + -159.60219602196022, + 55.56727532932527 + ], + [ + -160.289802898029, + 55.64344046647523 + ], + [ + -161.2222122221222, + 55.36416829692544 + ], + [ + -162.23742237422374, + 55.023964017655715 + ], + [ + -163.0690306903069, + 54.69052997279931 + ], + [ + -164.78624786247863, + 54.4044875688362 + ], + [ + -164.94104941049412, + 54.57205087056607 + ], + [ + -163.84663846638466, + 55.0391970450857 + ], + [ + -162.8710287102871, + 55.34724271089212 + ], + [ + -161.80541805418054, + 55.89563169837169 + ], + [ + -160.56340563405635, + 56.0073405661916 + ], + [ + -160.070200702007, + 56.41863230680127 + ], + [ + -158.6841868418684, + 57.016105493777474 + ], + [ + -158.4609846098461, + 57.21751996757399 + ], + [ + -157.7229772297723, + 57.56957215706706 + ], + [ + -157.550175501755, + 58.32783841135978 + ], + [ + -157.04257042570424, + 58.91854136392266 + ], + [ + -158.19458194581946, + 58.615573373926225 + ], + [ + -158.51858518585186, + 58.78821435146611 + ], + [ + -159.05859058590585, + 58.424314251749706 + ], + [ + -159.710197101971, + 58.93208183274933 + ], + [ + -159.98019980199803, + 58.573259408842944 + ], + [ + -160.35460354603546, + 59.07087163822254 + ], + [ + -161.35541355413554, + 58.67142780783618 + ], + [ + -161.96741967419675, + 58.67142780783618 + ], + [ + -162.05382053820537, + 59.267208436209046 + ], + [ + -161.87381873818737, + 59.63280109452876 + ], + [ + -162.51822518225183, + 59.98993095983184 + ], + [ + -163.81783817838178, + 59.79867183765532 + ], + [ + -164.6638466384664, + 60.267510570778285 + ], + [ + -165.34785347853477, + 60.507853892451436 + ], + [ + -165.35145351453514, + 61.0731684659643 + ], + [ + -166.1218612186122, + 61.499693234003985 + ], + [ + -165.7330573305733, + 62.07516315913688 + ], + [ + -164.91944919449193, + 62.63370749823642 + ], + [ + -164.56304563045632, + 63.14655275504603 + ], + [ + -163.7530375303753, + 63.21933277498931 + ], + [ + -163.06543065430654, + 63.0602322662761 + ], + [ + -162.2590225902259, + 63.542611468225715 + ], + [ + -161.53541535415354, + 63.45629097945579 + ], + [ + -160.7722077220772, + 63.76602920386554 + ], + [ + -160.95940959409594, + 64.2230200267652 + ], + [ + -161.51741517415175, + 64.40243123871838 + ], + [ + -160.77940779407794, + 64.78833460027809 + ], + [ + -161.39141391413915, + 64.77648669005475 + ], + [ + -162.45342453424536, + 64.55983918882825 + ], + [ + -162.75942759427593, + 64.33811401179176 + ], + [ + -163.54783547835478, + 64.55983918882825 + ], + [ + -164.9590495904959, + 64.44643776240503 + ], + [ + -166.42426424264244, + 64.68678108407815 + ], + [ + -166.84546845468455, + 65.08961003167119 + ], + [ + -168.10908109081092, + 65.67015763261406 + ], + [ + -166.7050670506705, + 66.08821960763706 + ], + [ + -164.4730447304473, + 66.57736904400002 + ], + [ + -163.65223652236523, + 66.57736904400002 + ], + [ + -163.7890378903789, + 66.07637169741375 + ], + [ + -161.67941679416793, + 66.11530054529038 + ], + [ + -162.48942489424894, + 66.7347769941099 + ], + [ + -163.72063720637206, + 67.11560267985959 + ], + [ + -164.429844298443, + 67.61660002644587 + ], + [ + -165.3910539105391, + 68.04312479448555 + ], + [ + -166.76266762667626, + 68.35963325330863 + ], + [ + -166.20466204662046, + 68.88263386173821 + ], + [ + -164.429844298443, + 68.91479247520152 + ], + [ + -163.16983169831698, + 69.37178329810118 + ], + [ + -162.9322293222932, + 69.85754761725744 + ], + [ + -161.90981909819098, + 70.33315658479376 + ], + [ + -160.93420934209342, + 70.44825056982032 + ], + [ + -159.04059040590406, + 70.89170092389332 + ], + [ + -158.1189811898119, + 70.82399857976003 + ], + [ + -156.58176581765818, + 71.35715453980961 + ], + [ + -155.0661506615066, + 71.14727727299643 + ], + [ + -154.34254342543426, + 70.69705668451013 + ], + [ + -153.89973899739, + 70.89000836528999 + ], + [ + -152.21132211322114, + 70.83076881417335 + ], + [ + -152.26892268922688, + 70.6005808441202 + ], + [ + -150.7389073890739, + 70.42963242518368 + ], + [ + -149.72009720097202, + 70.52949338278026 + ], + [ + -147.6140761407614, + 70.21467748256052 + ], + [ + -145.69165691656917, + 70.11989420077393 + ], + [ + -144.9212492124921, + 69.98956718831735 + ], + [ + -143.58923589235891, + 70.15205281423721 + ], + [ + -142.07362073620737, + 69.85246994144745 + ], + [ + -140.98640986409865, + 69.7119875773709 + ] + ] + ] + ] + }, + "countryRef": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.5202566922441716, + "skewed": 0.004642301563564599, + "clumpy": 0.18960499644495576, + "sparse": 0.06254876500047502, + "striated": 0.6595221258863804, + "convex": 0.5034862473571342, + "skinny": 0.3145895212397476, + "stringy": 0.31204664629392, + "monotonic": 0.4909843362103439, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -100.84057194302488, + -87.4369258840433 + ], + "drag": [ + -100.84057194302488, + -87.4369258840433 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 246 + }, + { + "attrs": { + "name": "Selected United States (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.52\",\"payload\":{\"numVal\":0.5202566922441716},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0\",\"payload\":{\"numVal\":0.004642301563564599},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.19\",\"payload\":{\"numVal\":0.18960499644495576},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.06\",\"payload\":{\"numVal\":0.06254876500047502},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.66\",\"payload\":{\"numVal\":0.6595221258863804},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.5\",\"payload\":{\"numVal\":0.5034862473571342},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.31\",\"payload\":{\"numVal\":0.3145895212397476},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.31\",\"payload\":{\"numVal\":0.31204664629392},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.49\",\"payload\":{\"numVal\":0.4909843362103439},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 247 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected United States (1 Countries)", + "timestamp": 1522412410434, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "clear": true, + "shift": false, + "clicked": null, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.4176998299473438, + "skewed": 0.9644196118438968, + "clumpy": 0.7280256910382745, + "sparse": 0.5043440004801549, + "striated": 0.6456681980105696, + "convex": 0.256897290966249, + "skinny": 0.324947391761488, + "stringy": 0.6491789079382926, + "monotonic": 0.40526017641227496, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": {}, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "cloned": null, + "start": null, + "drag": null, + "delta": null, + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 248 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected France (2 Countries)", + "timestamp": 1522412414293, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 250, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -54.52434524345243, + 2.3126114340868895 + ], + [ + -54.27234272342723, + 2.739136202126545 + ], + [ + -54.18594185941859, + 3.1944344664228623 + ], + [ + -54.013140131401315, + 3.622651793065856 + ], + [ + -54.39834398343983, + 4.213354745628735 + ], + [ + -54.477544775447754, + 4.897148421374865 + ], + [ + -53.95913959139591, + 5.756968191867529 + ], + [ + -53.61713617136171, + 5.646951882650953 + ], + [ + -52.882728827288275, + 5.409993678184463 + ], + [ + -51.82431824318243, + 4.565406935121786 + ], + [ + -51.658716587165856, + 4.15580775311544 + ], + [ + -52.24912249122491, + 3.2418261073161574 + ], + [ + -52.555125551255514, + 2.503870556263408 + ], + [ + -52.94032940329403, + 2.124737429117033 + ], + [ + -53.41913419134191, + 2.0536499677770905 + ], + [ + -53.55593555935559, + 2.334614695930199 + ], + [ + -53.779137791377906, + 2.376928661013494 + ], + [ + -54.088740887408875, + 2.1061192844803855 + ], + [ + -54.52434524345243, + 2.3126114340868895 + ] + ] + ], + [ + [ + [ + 9.228692286922865, + 41.38024911619637 + ], + [ + 8.775087750877503, + 41.58335614859621 + ], + [ + 8.544685446854487, + 42.25699447272234 + ], + [ + 8.746287462874648, + 42.62766480685207 + ], + [ + 9.390693906939077, + 43.010183051205104 + ], + [ + 9.55989559895599, + 42.152055839315764 + ], + [ + 9.228692286922865, + 41.38024911619637 + ] + ] + ], + [ + [ + [ + 5.675456754567563, + 49.52991879123999 + ], + [ + 5.898658986589879, + 49.44190574386673 + ], + [ + 6.186661866618664, + 49.463909005710036 + ], + [ + 6.658266582665846, + 49.201562422193575 + ], + [ + 8.098280982809825, + 49.01707353443041 + ], + [ + 7.594275942759424, + 48.33327985868428 + ], + [ + 7.468274682746824, + 47.620712686681486 + ], + [ + 7.191071910719103, + 47.44976426774497 + ], + [ + 6.7374673746737415, + 47.54116243232488 + ], + [ + 6.76986769867699, + 47.28727864182508 + ], + [ + 6.0390603906039075, + 46.725349185518866 + ], + [ + 6.021060210602116, + 46.273436038429196 + ], + [ + 6.499864998649997, + 46.42915142993576 + ], + [ + 6.841868418684186, + 45.990778751672764 + ], + [ + 6.802268022680238, + 45.7081214649163 + ], + [ + 7.097470974709751, + 45.33237345497662 + ], + [ + 6.748267482674834, + 45.02771290637685 + ], + [ + 7.0074700747007626, + 44.25421362465411 + ], + [ + 7.551075510755112, + 44.127271729404214 + ], + [ + 7.435874358743604, + 43.693976726951234 + ], + [ + 6.528665286652881, + 43.12866215343834 + ], + [ + 4.555845558455587, + 43.399471529971464 + ], + [ + 3.101431014310151, + 43.074500278131694 + ], + [ + 2.986229862298643, + 42.473641973948844 + ], + [ + 1.8270182701827196, + 42.34331496149228 + ], + [ + 0.700207002070016, + 42.79522810858194 + ], + [ + 0.33660336603367114, + 42.58027316595877 + ], + [ + -1.5030150301502943, + 43.03387887165175 + ], + [ + -1.9026190261902514, + 43.42316735041811 + ], + [ + -1.384213842138422, + 44.022333095997624 + ], + [ + -1.1934119341193252, + 46.01447457211941 + ], + [ + -2.2266222662226482, + 47.063860906185255 + ], + [ + -2.9646296462964585, + 47.56993592858154 + ], + [ + -4.491044910449091, + 47.95414673153789 + ], + [ + -4.591845918459171, + 48.683639489574006 + ], + [ + -3.2958329583295836, + 48.90197954940382 + ], + [ + -1.6182161821618024, + 48.644710641697344 + ], + [ + -1.9350193501934996, + 49.77703234732647 + ], + [ + -0.9882098820988006, + 49.34712246208014 + ], + [ + 1.337413374133746, + 50.127391978216195 + ], + [ + 1.6398163981639868, + 50.94659034222889 + ], + [ + 2.5146251462514613, + 51.148004816025406 + ], + [ + 2.658626586265882, + 50.79764518513568 + ], + [ + 3.123031230312307, + 50.780719599102355 + ], + [ + 3.5874358743587607, + 50.379583210112656 + ], + [ + 4.285842858428595, + 49.907359359783044 + ], + [ + 4.80064800648006, + 49.98521705553631 + ], + [ + 5.675456754567563, + 49.52991879123999 + ] + ] + ] + ] + }, + "countryRef": { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.6572123995992016, + "skewed": 0.43129407546666365, + "clumpy": 0.8458114215322439, + "sparse": 0.589705174962802, + "striated": 0.52151567630445, + "convex": 0.2510206314610066, + "skinny": 0.35672557088338563, + "stringy": 0.45861977257141806, + "monotonic": 0.9516597653478509, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 0.5729577951308232, + -86.90084253588446 + ], + "drag": [ + 0.5729577951308232, + -86.90084253588446 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 249 + }, + { + "attrs": { + "name": "Selected France (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.66\",\"payload\":{\"numVal\":0.6572123995992016},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.43\",\"payload\":{\"numVal\":0.43129407546666365},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.85\",\"payload\":{\"numVal\":0.8458114215322439},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.59\",\"payload\":{\"numVal\":0.589705174962802},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.52\",\"payload\":{\"numVal\":0.52151567630445},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.25\",\"payload\":{\"numVal\":0.2510206314610066},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.36\",\"payload\":{\"numVal\":0.35672557088338563},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.46\",\"payload\":{\"numVal\":0.45861977257141806},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.95\",\"payload\":{\"numVal\":0.9516597653478509},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = France\",\"text\":\"France\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 250 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected France (2 Countries)", + "timestamp": 1522412414294, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 840, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -155.68895688956889, + 18.91661133277391 + ], + [ + -155.93735937359372, + 19.058786255453796 + ], + [ + -155.90855908559087, + 19.33805842500358 + ], + [ + -156.07416074160741, + 19.703651083323294 + ], + [ + -156.02376023760237, + 19.813667392539884 + ], + [ + -155.8509585095851, + 19.97784557706308 + ], + [ + -155.91935919359193, + 20.174182375049597 + ], + [ + -155.8617586175862, + 20.267273098232863 + ], + [ + -155.7861578615786, + 20.2486549535962 + ], + [ + -155.4009540095401, + 20.079399093263007 + ], + [ + -155.22455224552246, + 19.99307860449308 + ], + [ + -155.06255062550625, + 19.85936647482984 + ], + [ + -154.80694806948068, + 19.509006843940114 + ], + [ + -154.8321483214832, + 19.453152410030157 + ], + [ + -155.2209522095221, + 19.23989002601033 + ], + [ + -155.54135541355413, + 19.084174634503782 + ], + [ + -155.68895688956889, + 18.91661133277391 + ] + ] + ], + [ + [ + [ + -156.4161641616416, + 20.57193364683262 + ], + [ + -156.58536585365854, + 20.783503472249123 + ], + [ + -156.70056700567005, + 20.86474628520905 + ], + [ + -156.71136711367114, + 20.927370953532346 + ], + [ + -156.61416614166143, + 21.011998883698936 + ], + [ + -156.25776257762578, + 20.917215601912346 + ], + [ + -155.9949599495995, + 20.764885327612475 + ], + [ + -156.07776077760778, + 20.6447136667759 + ], + [ + -156.4161641616416, + 20.57193364683262 + ] + ] + ], + [ + [ + [ + -156.79056790567904, + 21.06954587621223 + ], + [ + -157.3269732697327, + 21.09831937246888 + ], + [ + -157.25137251372513, + 21.22018359190878 + ], + [ + -156.75816758167582, + 21.176177068222145 + ], + [ + -156.79056790567904, + 21.06954587621223 + ] + ] + ], + [ + [ + [ + -157.70857708577086, + 21.26419011559541 + ], + [ + -157.7769777697777, + 21.277730584422073 + ], + [ + -158.12618126181263, + 21.313274315092045 + ], + [ + -158.2521825218252, + 21.538384609335196 + ], + [ + -158.29178291782918, + 21.579006015815168 + ], + [ + -158.02538025380255, + 21.71779582128839 + ], + [ + -157.94257942579426, + 21.653478594361772 + ], + [ + -157.65457654576545, + 21.321737108108707 + ], + [ + -157.70857708577086, + 21.26419011559541 + ] + ] + ], + [ + [ + [ + -159.46539465394653, + 21.883666564414924 + ], + [ + -159.80019800198002, + 22.064770334971456 + ], + [ + -159.74979749797498, + 22.137550354914737 + ], + [ + -159.5949959499595, + 22.23571875390799 + ], + [ + -159.36459364593645, + 22.215408050668003 + ], + [ + -159.34659346593466, + 21.98183496340819 + ], + [ + -159.46539465394653, + 21.883666564414924 + ] + ] + ], + [ + [ + [ + -67.13887138871388, + 45.137729215593424 + ], + [ + -66.9660696606966, + 44.80937284654701 + ], + [ + -68.03168031680316, + 44.325301085994056 + ], + [ + -69.06129061290612, + 43.98001913091434 + ], + [ + -70.1161011610116, + 43.683821375331235 + ], + [ + -70.64530645306452, + 43.08973330556171 + ], + [ + -70.81450814508145, + 42.86462301131854 + ], + [ + -70.82530825308253, + 42.33485216847562 + ], + [ + -70.4941049410494, + 41.8050813256327 + ], + [ + -70.080100801008, + 41.77969294658271 + ], + [ + -70.18450184501845, + 42.14528560490244 + ], + [ + -69.88569885698857, + 41.92356042786594 + ], + [ + -69.9648996489965, + 41.63751802390283 + ], + [ + -70.64170641706417, + 41.47503239798296 + ], + [ + -71.12051120511205, + 41.493650542619605 + ], + [ + -71.85851858518585, + 41.31931700647641 + ], + [ + -72.2941229412294, + 41.27023280697978 + ], + [ + -72.87732877328773, + 41.22114860748316 + ], + [ + -73.70893708937089, + 40.93172108631339 + ], + [ + -72.24012240122401, + 41.11959509128323 + ], + [ + -71.94491944919449, + 40.93002852771005 + ], + [ + -73.34533345333453, + 40.63044565492028 + ], + [ + -73.98253982539825, + 40.628753096316956 + ], + [ + -73.95373953739536, + 40.750617315756855 + ], + [ + -74.2561425614256, + 40.47303770481041 + ], + [ + -73.96093960939609, + 40.42733862252044 + ], + [ + -74.1769417694177, + 39.709693774707674 + ], + [ + -74.90774907749078, + 38.9395796101916 + ], + [ + -74.97974979749797, + 39.196848517898076 + ], + [ + -75.19935199351993, + 39.24762527599803 + ], + [ + -75.52695526955269, + 39.49812394929117 + ], + [ + -75.32175321753218, + 38.959890313431586 + ], + [ + -75.07335073350733, + 38.78217166008173 + ], + [ + -75.05535055350553, + 38.40473109153869 + ], + [ + -75.37575375753757, + 38.01544261277233 + ], + [ + -75.94095940959409, + 37.21655495199961 + ], + [ + -76.03096030960309, + 37.25717635847958 + ], + [ + -75.72135721357213, + 37.93758491701905 + ], + [ + -76.23256232562325, + 38.31841060276875 + ], + [ + -76.35136351363514, + 39.14945687700478 + ], + [ + -76.54216542165422, + 38.71785443315511 + ], + [ + -76.32976329763298, + 38.08314495690561 + ], + [ + -76.98856988569885, + 38.240552907015484 + ], + [ + -76.3009630096301, + 37.917274213779066 + ], + [ + -76.25776257762577, + 36.966056278706475 + ], + [ + -75.97335973359733, + 36.89666137596987 + ], + [ + -75.86895868958689, + 36.55137942089014 + ], + [ + -75.72855728557285, + 35.55107728632092 + ], + [ + -76.36216362163621, + 34.80804405945817 + ], + [ + -77.3989739897399, + 34.51184630387506 + ], + [ + -78.05418054180541, + 33.92622102712218 + ], + [ + -78.55458554585546, + 33.86190380019558 + ], + [ + -79.06219062190621, + 33.494618583272526 + ], + [ + -79.20259202592025, + 33.15779942120946 + ], + [ + -80.30060300603006, + 32.50954947613329 + ], + [ + -80.86580865808658, + 32.033940508597 + ], + [ + -81.33741337413373, + 31.439852438827458 + ], + [ + -81.49221492214922, + 30.730670384031356 + ], + [ + -81.31221312213121, + 30.035028798061887 + ], + [ + -80.9810098100981, + 29.180286703379224 + ], + [ + -80.53460534605345, + 28.472797207186446 + ], + [ + -80.5310053100531, + 28.039502204733452 + ], + [ + -80.05580055800557, + 26.88009956145102 + ], + [ + -80.08820088200882, + 26.206461237324888 + ], + [ + -80.13140131401313, + 25.817172758558527 + ], + [ + -80.37980379803798, + 25.206159102755663 + ], + [ + -80.67860678606786, + 25.079217207505764 + ], + [ + -81.17181171811718, + 25.201081426945677 + ], + [ + -81.33021330213302, + 25.639454105208657 + ], + [ + -81.70821708217082, + 25.869642075261808 + ], + [ + -82.2410224102241, + 26.72946184575447 + ], + [ + -82.70542705427054, + 27.494498334460545 + ], + [ + -82.85662856628566, + 27.885479371830243 + ], + [ + -82.65142651426514, + 28.550654902939726 + ], + [ + -82.92862928629286, + 29.10073644902262 + ], + [ + -83.70983709837098, + 29.936860399068635 + ], + [ + -84.09864098640986, + 30.08919067336852 + ], + [ + -85.11025110251101, + 29.63558496767554 + ], + [ + -85.28665286652866, + 29.686361725775498 + ], + [ + -85.77265772657726, + 30.1518153416918 + ], + [ + -86.3990639906399, + 30.400621456381614 + ], + [ + -87.52947529475294, + 30.2736795611317 + ], + [ + -88.41868418684186, + 30.385388428951615 + ], + [ + -89.18189181891819, + 30.31599352621501 + ], + [ + -89.59229592295922, + 30.160278134708463 + ], + [ + -89.41229412294122, + 29.89454643398534 + ], + [ + -89.43029430294303, + 29.488332369185656 + ], + [ + -89.21789217892179, + 29.290303012595814 + ], + [ + -89.40869408694087, + 29.15997600013924 + ], + [ + -89.77949779497794, + 29.307228598629123 + ], + [ + -90.1539015390154, + 29.117662035055943 + ], + [ + -90.88110881108811, + 29.148128089915915 + ], + [ + -91.62631626316262, + 29.676206374155512 + ], + [ + -92.49752497524975, + 29.552649596112275 + ], + [ + -93.22473224732246, + 29.78453012476875 + ], + [ + -93.84753847538475, + 29.713442663428808 + ], + [ + -94.68994689946899, + 29.479869576168994 + ], + [ + -95.60075600756008, + 28.73852890790957 + ], + [ + -96.59436594365944, + 28.306926464059913 + ], + [ + -97.14157141571415, + 27.829624937920286 + ], + [ + -97.36837368373683, + 27.37940434943397 + ], + [ + -97.37917379173791, + 26.69053299787784 + ], + [ + -97.32877328773287, + 26.20984635453155 + ], + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -117.29457294572946, + 33.04609055338955 + ], + [ + -117.94257942579426, + 33.621560478522426 + ], + [ + -118.41058410584105, + 33.741732139359 + ], + [ + -118.51858518585186, + 34.02777454332211 + ], + [ + -119.08019080190802, + 34.07855130142207 + ], + [ + -119.44019440194401, + 34.34766811935185 + ], + [ + -120.36900369003689, + 34.44752907694844 + ], + [ + -120.62460624606246, + 34.60832214426499 + ], + [ + -120.74340743407434, + 35.15671113174456 + ], + [ + -121.71541715417155, + 36.16209094212377 + ], + [ + -122.54702547025471, + 37.55168155545935 + ], + [ + -122.5110251102511, + 37.78356208411584 + ], + [ + -122.95382953829538, + 38.113611011765585 + ], + [ + -123.72783727837279, + 38.951427520414924 + ], + [ + -123.86463864638645, + 39.767240767220954 + ], + [ + -124.39744397443974, + 40.3139371960972 + ], + [ + -124.17784177841779, + 41.141598353126554 + ], + [ + -124.21384213842138, + 41.99972556501588 + ], + [ + -124.53424534245343, + 42.766454612325276 + ], + [ + -124.14184141841417, + 43.70920975438122 + ], + [ + -124.01944019440194, + 44.61642116576718 + ], + [ + -123.90063900639007, + 45.52363257715314 + ], + [ + -124.08064080640807, + 46.864138990992075 + ], + [ + -124.39744397443974, + 47.72057364427809 + ], + [ + -124.68544685446855, + 48.18433470159104 + ], + [ + -124.56664566645667, + 48.378978940974235 + ], + [ + -123.11943119431194, + 48.04046722030782 + ], + [ + -122.58662586625866, + 47.096019519648564 + ], + [ + -122.33822338223382, + 47.36005866176836 + ], + [ + -122.50022500225002, + 48.179257025781055 + ], + [ + -122.83862838628386, + 49.000147948397085 + ], + [ + -120.00180001800018, + 49.000147948397085 + ], + [ + -117.03177031770318, + 49.000147948397085 + ], + [ + -116.0489604896049, + 49.000147948397085 + ], + [ + -112.99972999729997, + 49.000147948397085 + ], + [ + -110.05130051300513, + 49.000147948397085 + ], + [ + -107.04887048870488, + 49.000147948397085 + ], + [ + -104.050040500405, + 49.000147948397085 + ], + [ + -100.65160651606516, + 49.000147948397085 + ], + [ + -97.22797227972279, + 49.000147948397085 + ], + [ + -95.1579515795158, + 49.000147948397085 + ], + [ + -95.15435154351543, + 49.38435875135343 + ], + [ + -94.8159481594816, + 49.389436427163446 + ], + [ + -94.63954639546395, + 48.83935488108054 + ], + [ + -94.329943299433, + 48.67009902074733 + ], + [ + -93.63153631536315, + 48.60916691102739 + ], + [ + -92.6091260912609, + 48.45006640231418 + ], + [ + -91.64071640716406, + 48.14032817790442 + ], + [ + -90.83070830708307, + 48.27065519036097 + ], + [ + -89.59949599495995, + 48.01000116544785 + ], + [ + -89.27189271892719, + 48.020156517067846 + ], + [ + -88.37908379083791, + 48.30281380382428 + ], + [ + -87.43947439474394, + 47.94060626271124 + ], + [ + -86.46026460264602, + 47.55301034254822 + ], + [ + -85.65385653856538, + 47.219576297691816 + ], + [ + -84.87624876248762, + 46.89968272166206 + ], + [ + -84.7790477904779, + 46.6373361381456 + ], + [ + -84.5450454504545, + 46.53916773915233 + ], + [ + -84.60624606246063, + 46.43930678155576 + ], + [ + -84.33624336243362, + 46.40884072669576 + ], + [ + -84.14184141841417, + 46.51208680149901 + ], + [ + -84.09144091440913, + 46.275128597032534 + ], + [ + -83.88983889838899, + 46.11772064692266 + ], + [ + -83.61623616236162, + 46.11772064692266 + ], + [ + -83.46863468634686, + 45.99416386887944 + ], + [ + -83.59463594635946, + 45.81644521552957 + ], + [ + -82.55062550625506, + 45.347606482406604 + ], + [ + -82.33822338223382, + 44.440395071020646 + ], + [ + -82.13662136621366, + 43.57041994890798 + ], + [ + -82.42822428224282, + 42.979716996345104 + ], + [ + -82.89982899828998, + 42.429635450262225 + ], + [ + -83.11943119431194, + 42.079275819372484 + ], + [ + -83.1410314103141, + 41.97602974456923 + ], + [ + -83.02943029430294, + 41.83216226328601 + ], + [ + -82.6910269102691, + 41.67475431317614 + ], + [ + -82.4390243902439, + 41.67475431317614 + ], + [ + -81.27621276212761, + 42.209602831829045 + ], + [ + -80.24660246602465, + 42.36701078193893 + ], + [ + -78.93978939789397, + 42.862930452715204 + ], + [ + -78.92178921789217, + 42.96448396891512 + ], + [ + -79.01179011790117, + 43.27083707611823 + ], + [ + -79.17019170191702, + 43.46717387410473 + ], + [ + -78.72018720187201, + 43.6245818242146 + ], + [ + -77.73737737377374, + 43.629659500024616 + ], + [ + -76.81936819368194, + 43.62796694142128 + ], + [ + -76.49896498964989, + 44.018947978790976 + ], + [ + -76.37656376563766, + 44.09680567454424 + ], + [ + -75.31815318153181, + 44.81614308096036 + ], + [ + -74.86814868148682, + 45.000631968723525 + ], + [ + -73.34893348933488, + 45.00740220313688 + ], + [ + -71.50571505715057, + 45.00740220313688 + ], + [ + -71.40491404914049, + 45.25451575922335 + ], + [ + -71.08451084510845, + 45.305292517323295 + ], + [ + -70.65970659706596, + 45.45931535022652 + ], + [ + -70.30330303303033, + 45.914613614522835 + ], + [ + -70.00090000900009, + 46.693190572055556 + ], + [ + -69.23769237692376, + 47.44807170914163 + ], + [ + -68.90648906489065, + 47.18572512562517 + ], + [ + -68.23328233282332, + 47.35498098595838 + ], + [ + -67.79047790477904, + 47.06555346478859 + ], + [ + -67.79047790477904, + 45.70304378910632 + ], + [ + -67.13887138871388, + 45.137729215593424 + ] + ] + ], + [ + [ + [ + -154.0041400414004, + 56.73514076562438 + ], + [ + -154.51534515345153, + 56.992409673330826 + ], + [ + -154.67014670146702, + 57.46124840645379 + ], + [ + -153.7629376293763, + 57.81668571315353 + ], + [ + -153.230132301323, + 57.96901598745342 + ], + [ + -152.5641256412564, + 57.90131364332012 + ], + [ + -152.14292142921428, + 57.59157541891037 + ], + [ + -153.0069300693007, + 57.11596645137408 + ], + [ + -154.0041400414004, + 56.73514076562438 + ] + ] + ], + [ + [ + [ + -166.1938619386194, + 59.75466531396867 + ], + [ + -166.8490684906849, + 59.940846760335205 + ], + [ + -167.4538745387454, + 60.213348695471666 + ], + [ + -166.46746467464675, + 60.384297114408184 + ], + [ + -165.67545675456753, + 60.29289894982827 + ], + [ + -165.57825578255782, + 59.910380705475234 + ], + [ + -166.1938619386194, + 59.75466531396867 + ] + ] + ], + [ + [ + [ + -169.5310953109531, + 62.97729689471282 + ], + [ + -170.29070290702907, + 63.193944395939326 + ], + [ + -170.67230672306724, + 63.375048166495844 + ], + [ + -171.55431554315544, + 63.31750117398255 + ], + [ + -171.79191791917918, + 63.405514221355816 + ], + [ + -171.73071730717308, + 63.78295478989887 + ], + [ + -171.1151111511115, + 63.59169566772235 + ], + [ + -170.49230492304923, + 63.6949417425256 + ], + [ + -169.68229682296823, + 63.4309026004058 + ], + [ + -168.68868688686888, + 63.29719047074258 + ], + [ + -168.77148771487714, + 63.18886672012934 + ], + [ + -169.5310953109531, + 62.97729689471282 + ] + ] + ], + [ + [ + [ + -140.98640986409865, + 69.7119875773709 + ], + [ + -140.99360993609935, + 66.00020656026379 + ], + [ + -140.9972099720997, + 60.30643941865492 + ], + [ + -140.01440014400146, + 60.277665922398256 + ], + [ + -139.03879038790387, + 60.00008631145181 + ], + [ + -138.34038340383404, + 59.561713633188816 + ], + [ + -137.4511745117451, + 58.90500089509601 + ], + [ + -136.47916479164792, + 59.46354523419558 + ], + [ + -135.47475474754748, + 59.78851648603532 + ], + [ + -134.94554945549456, + 59.27059355341572 + ], + [ + -134.27234272342724, + 58.86099437140936 + ], + [ + -133.35433354333543, + 58.41077378292306 + ], + [ + -132.73152731527315, + 57.69312893511028 + ], + [ + -131.70911709117092, + 56.55234443646452 + ], + [ + -130.00630006300062, + 55.91594240161169 + ], + [ + -129.9810998109981, + 55.28461804256884 + ], + [ + -130.53550535505354, + 54.802238840619225 + ], + [ + -131.08631086310862, + 55.17967940916225 + ], + [ + -131.96831968319682, + 55.497880426588665 + ], + [ + -132.2491224912249, + 56.36954810730467 + ], + [ + -133.5379353793538, + 57.17859111969736 + ], + [ + -134.07794077940778, + 58.12303882035661 + ], + [ + -135.0391503915039, + 58.18735604728323 + ], + [ + -136.62676626766267, + 58.21274442633322 + ], + [ + -137.80037800378005, + 58.50047938889966 + ], + [ + -139.86679866798667, + 59.53801781274217 + ], + [ + -140.82440824408243, + 59.72758437631538 + ], + [ + -142.5740257402574, + 60.08471424161843 + ], + [ + -143.960039600396, + 59.9983937528485 + ], + [ + -145.92565925659255, + 60.4587696929548 + ], + [ + -147.11367113671136, + 60.88529446099446 + ], + [ + -148.2260822608226, + 60.67372463557797 + ], + [ + -148.01728017280172, + 59.9780830496085 + ], + [ + -148.57168571685716, + 59.91376582268188 + ], + [ + -149.72729727297272, + 59.70558111447204 + ], + [ + -150.60930609306092, + 59.36876195240899 + ], + [ + -151.7181171811718, + 59.15549956838913 + ], + [ + -151.85851858518586, + 59.74450996234867 + ], + [ + -151.40851408514084, + 60.72619395228125 + ], + [ + -150.34650346503466, + 61.03423961808767 + ], + [ + -150.62010620106201, + 61.28473829138082 + ], + [ + -151.89451894518945, + 60.72788651088459 + ], + [ + -152.57852578525785, + 60.06101842117178 + ], + [ + -154.01854018540186, + 59.35014380777233 + ], + [ + -153.28773287732878, + 58.86437948861604 + ], + [ + -154.23094230942309, + 58.14673464080326 + ], + [ + -155.30735307353075, + 57.72698010717693 + ], + [ + -156.30816308163082, + 57.42231955857716 + ], + [ + -156.55656556565566, + 56.98056176310752 + ], + [ + -158.1189811898119, + 56.46433138909126 + ], + [ + -158.4321843218432, + 55.993800097364954 + ], + [ + -159.60219602196022, + 55.56727532932527 + ], + [ + -160.289802898029, + 55.64344046647523 + ], + [ + -161.2222122221222, + 55.36416829692544 + ], + [ + -162.23742237422374, + 55.023964017655715 + ], + [ + -163.0690306903069, + 54.69052997279931 + ], + [ + -164.78624786247863, + 54.4044875688362 + ], + [ + -164.94104941049412, + 54.57205087056607 + ], + [ + -163.84663846638466, + 55.0391970450857 + ], + [ + -162.8710287102871, + 55.34724271089212 + ], + [ + -161.80541805418054, + 55.89563169837169 + ], + [ + -160.56340563405635, + 56.0073405661916 + ], + [ + -160.070200702007, + 56.41863230680127 + ], + [ + -158.6841868418684, + 57.016105493777474 + ], + [ + -158.4609846098461, + 57.21751996757399 + ], + [ + -157.7229772297723, + 57.56957215706706 + ], + [ + -157.550175501755, + 58.32783841135978 + ], + [ + -157.04257042570424, + 58.91854136392266 + ], + [ + -158.19458194581946, + 58.615573373926225 + ], + [ + -158.51858518585186, + 58.78821435146611 + ], + [ + -159.05859058590585, + 58.424314251749706 + ], + [ + -159.710197101971, + 58.93208183274933 + ], + [ + -159.98019980199803, + 58.573259408842944 + ], + [ + -160.35460354603546, + 59.07087163822254 + ], + [ + -161.35541355413554, + 58.67142780783618 + ], + [ + -161.96741967419675, + 58.67142780783618 + ], + [ + -162.05382053820537, + 59.267208436209046 + ], + [ + -161.87381873818737, + 59.63280109452876 + ], + [ + -162.51822518225183, + 59.98993095983184 + ], + [ + -163.81783817838178, + 59.79867183765532 + ], + [ + -164.6638466384664, + 60.267510570778285 + ], + [ + -165.34785347853477, + 60.507853892451436 + ], + [ + -165.35145351453514, + 61.0731684659643 + ], + [ + -166.1218612186122, + 61.499693234003985 + ], + [ + -165.7330573305733, + 62.07516315913688 + ], + [ + -164.91944919449193, + 62.63370749823642 + ], + [ + -164.56304563045632, + 63.14655275504603 + ], + [ + -163.7530375303753, + 63.21933277498931 + ], + [ + -163.06543065430654, + 63.0602322662761 + ], + [ + -162.2590225902259, + 63.542611468225715 + ], + [ + -161.53541535415354, + 63.45629097945579 + ], + [ + -160.7722077220772, + 63.76602920386554 + ], + [ + -160.95940959409594, + 64.2230200267652 + ], + [ + -161.51741517415175, + 64.40243123871838 + ], + [ + -160.77940779407794, + 64.78833460027809 + ], + [ + -161.39141391413915, + 64.77648669005475 + ], + [ + -162.45342453424536, + 64.55983918882825 + ], + [ + -162.75942759427593, + 64.33811401179176 + ], + [ + -163.54783547835478, + 64.55983918882825 + ], + [ + -164.9590495904959, + 64.44643776240503 + ], + [ + -166.42426424264244, + 64.68678108407815 + ], + [ + -166.84546845468455, + 65.08961003167119 + ], + [ + -168.10908109081092, + 65.67015763261406 + ], + [ + -166.7050670506705, + 66.08821960763706 + ], + [ + -164.4730447304473, + 66.57736904400002 + ], + [ + -163.65223652236523, + 66.57736904400002 + ], + [ + -163.7890378903789, + 66.07637169741375 + ], + [ + -161.67941679416793, + 66.11530054529038 + ], + [ + -162.48942489424894, + 66.7347769941099 + ], + [ + -163.72063720637206, + 67.11560267985959 + ], + [ + -164.429844298443, + 67.61660002644587 + ], + [ + -165.3910539105391, + 68.04312479448555 + ], + [ + -166.76266762667626, + 68.35963325330863 + ], + [ + -166.20466204662046, + 68.88263386173821 + ], + [ + -164.429844298443, + 68.91479247520152 + ], + [ + -163.16983169831698, + 69.37178329810118 + ], + [ + -162.9322293222932, + 69.85754761725744 + ], + [ + -161.90981909819098, + 70.33315658479376 + ], + [ + -160.93420934209342, + 70.44825056982032 + ], + [ + -159.04059040590406, + 70.89170092389332 + ], + [ + -158.1189811898119, + 70.82399857976003 + ], + [ + -156.58176581765818, + 71.35715453980961 + ], + [ + -155.0661506615066, + 71.14727727299643 + ], + [ + -154.34254342543426, + 70.69705668451013 + ], + [ + -153.89973899739, + 70.89000836528999 + ], + [ + -152.21132211322114, + 70.83076881417335 + ], + [ + -152.26892268922688, + 70.6005808441202 + ], + [ + -150.7389073890739, + 70.42963242518368 + ], + [ + -149.72009720097202, + 70.52949338278026 + ], + [ + -147.6140761407614, + 70.21467748256052 + ], + [ + -145.69165691656917, + 70.11989420077393 + ], + [ + -144.9212492124921, + 69.98956718831735 + ], + [ + -143.58923589235891, + 70.15205281423721 + ], + [ + -142.07362073620737, + 69.85246994144745 + ], + [ + -140.98640986409865, + 69.7119875773709 + ] + ] + ] + ] + }, + "countryRef": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.5202566922441716, + "skewed": 0.004642301563564599, + "clumpy": 0.18960499644495576, + "sparse": 0.06254876500047502, + "striated": 0.6595221258863804, + "convex": 0.5034862473571342, + "skinny": 0.3145895212397476, + "stringy": 0.31204664629392, + "monotonic": 0.4909843362103439, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -100.84057194302488, + -87.4369258840433 + ], + "drag": [ + -100.84057194302488, + -87.4369258840433 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 251 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Russia (3 Countries)", + "timestamp": 1522412415481, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 643, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 142.0916209162092, + 45.967082931226116 + ], + [ + 141.9080190801908, + 46.80659199847878 + ], + [ + 142.01962019620197, + 47.779813195394695 + ], + [ + 141.90441904419043, + 48.85966558432051 + ], + [ + 142.1348213482135, + 49.61454672140661 + ], + [ + 142.18162181621818, + 50.9516680180389 + ], + [ + 141.59481594815952, + 51.93504456657479 + ], + [ + 141.68121681216815, + 53.30263191806705 + ], + [ + 142.60642606426063, + 53.761315299570015 + ], + [ + 142.21042210422104, + 54.225076356882994 + ], + [ + 142.6532265322653, + 54.36555872095954 + ], + [ + 142.9160291602916, + 53.70376830705675 + ], + [ + 143.26163261632615, + 52.74070246176083 + ], + [ + 143.23643236432366, + 51.75732591322492 + ], + [ + 143.6468364683647, + 50.74686842703571 + ], + [ + 144.6548465484655, + 48.97645212795044 + ], + [ + 143.17523175231753, + 49.306501055600165 + ], + [ + 142.55962559625596, + 47.86105600835464 + ], + [ + 143.53523535235354, + 46.83705805333878 + ], + [ + 143.50643506435068, + 46.138031350162635 + ], + [ + 142.74682746827472, + 46.74058221294885 + ], + [ + 142.0916209162092, + 45.967082931226116 + ] + ] + ], + [ + [ + [ + 22.73242732427326, + 54.328322431686246 + ], + [ + 20.892808928089295, + 54.31308940425626 + ], + [ + 19.661596615966175, + 54.42649083067951 + ], + [ + 19.888398883988856, + 54.866556067545815 + ], + [ + 21.267212672126732, + 55.18983476078225 + ], + [ + 22.314823148231483, + 55.01550122463905 + ], + [ + 22.75762757627578, + 54.856400715925844 + ], + [ + 22.649626496264972, + 54.582206222186045 + ], + [ + 22.73242732427326, + 54.328322431686246 + ] + ] + ], + [ + [ + [ + -172.95472954729547, + 64.25348608162517 + ], + [ + -173.89073890738908, + 64.2822595778818 + ], + [ + -174.65394653946538, + 64.63092665016819 + ], + [ + -175.98235982359824, + 64.92204672994131 + ], + [ + -176.20556205562056, + 65.35703429099763 + ], + [ + -177.22437224372243, + 65.51951991691752 + ], + [ + -178.35838358383583, + 65.39088546306428 + ], + [ + -178.9019890198902, + 65.741245093954 + ], + [ + -178.6859868598686, + 66.1119154280837 + ], + [ + -179.8847988479885, + 65.87495722361723 + ], + [ + -179.43119431194313, + 65.40442593189093 + ], + [ + -180, + 64.97959372245461 + ], + [ + -180, + 68.96387667469816 + ], + [ + -177.54837548375482, + 68.20053274459542 + ], + [ + -174.92754927549277, + 67.2053082858362 + ], + [ + -175.0139501395014, + 66.58413927841335 + ], + [ + -174.34074340743408, + 66.33533316372353 + ], + [ + -174.57114571145712, + 67.06144080455297 + ], + [ + -171.85671856718568, + 66.91249564745976 + ], + [ + -169.89829898298984, + 65.97651073981714 + ], + [ + -170.8919089190892, + 65.54152317876083 + ], + [ + -172.529925299253, + 65.43827710395757 + ], + [ + -172.55512555125551, + 64.45997823123167 + ], + [ + -172.95472954729547, + 64.25348608162517 + ] + ] + ], + [ + [ + [ + 178.9019890198902, + 70.78168461467672 + ], + [ + 178.7255872558726, + 71.09819307349983 + ], + [ + 180, + 71.51625504852282 + ], + [ + 180, + 70.83246137277669 + ], + [ + 178.9019890198902, + 70.78168461467672 + ] + ] + ], + [ + [ + [ + -180, + 70.83246137277669 + ], + [ + -180, + 71.51625504852282 + ], + [ + -179.87039870398704, + 71.5568764550028 + ], + [ + -179.02439024390245, + 71.55518389639946 + ], + [ + -177.5771757717577, + 71.26914149243635 + ], + [ + -177.66357663576636, + 71.13204424556645 + ], + [ + -178.69318693186932, + 70.89339348249663 + ], + [ + -180, + 70.83246137277669 + ] + ] + ], + [ + [ + [ + 142.08802088020883, + 73.20542853464818 + ], + [ + 140.03960039600395, + 73.31713740246809 + ], + [ + 139.86319863198634, + 73.36960671917137 + ], + [ + 140.810008100081, + 73.76566543235106 + ], + [ + 142.06282062820628, + 73.857063596931 + ], + [ + 143.48123481234813, + 73.47454535257796 + ], + [ + 143.6036360363604, + 73.2121987690615 + ], + [ + 142.08802088020883, + 73.20542853464818 + ] + ] + ], + [ + [ + [ + 149.57609576095763, + 74.688109871167 + ], + [ + 147.9776797767978, + 74.7778154771436 + ], + [ + 146.12006120061204, + 75.17218163171998 + ], + [ + 146.3576635766358, + 75.49715288355972 + ], + [ + 148.22248222482227, + 75.34651516786317 + ], + [ + 150.7317073170732, + 75.08416858434671 + ], + [ + 149.57609576095763, + 74.688109871167 + ] + ] + ], + [ + [ + [ + 138.9559895598956, + 74.61194473401707 + ], + [ + 136.9759697596976, + 75.26188723769656 + ], + [ + 137.51237512375127, + 75.94906603064936 + ], + [ + 138.82998829988298, + 76.1369400356192 + ], + [ + 141.47241472414726, + 76.09293351193259 + ], + [ + 145.0868508685087, + 75.56316266908965 + ], + [ + 144.29844298442987, + 74.82012944222691 + ], + [ + 140.61560615606157, + 74.84721037988021 + ], + [ + 138.9559895598956, + 74.61194473401707 + ] + ] + ], + [ + [ + [ + 56.94356943569437, + 70.63273945758351 + ], + [ + 53.678336783367854, + 70.76306647004009 + ], + [ + 53.4119341193412, + 71.20651682411307 + ], + [ + 51.601116011160116, + 71.47394108343951 + ], + [ + 51.45711457114572, + 72.01555983650576 + ], + [ + 52.479524795247954, + 72.22882222052559 + ], + [ + 52.44352443524437, + 72.77551864940185 + ], + [ + 54.42714427144273, + 73.62687562687785 + ], + [ + 53.50913509135091, + 73.75043240492107 + ], + [ + 55.90315903159032, + 74.62717776144706 + ], + [ + 55.63315633156333, + 75.08078346714004 + ], + [ + 57.868778687786886, + 75.60886175137964 + ], + [ + 61.170011700117016, + 76.2520340206458 + ], + [ + 64.50004500045, + 76.4382154670123 + ], + [ + 66.210062100621, + 76.81057835974536 + ], + [ + 68.15768157681578, + 76.93921281359857 + ], + [ + 68.85248852488525, + 76.54484665902223 + ], + [ + 68.17928179281793, + 76.23341587600913 + ], + [ + 64.6368463684637, + 75.73749620523287 + ], + [ + 61.5840158401584, + 75.26019467909322 + ], + [ + 58.47718477184773, + 74.30897674402064 + ], + [ + 56.98676986769868, + 73.33237042989808 + ], + [ + 55.420754207542075, + 72.3709971432055 + ], + [ + 55.622356223562235, + 71.53995086896947 + ], + [ + 57.5339753397534, + 70.72075250495678 + ], + [ + 56.94356943569437, + 70.63273945758351 + ] + ] + ], + [ + [ + [ + 112.11772117721176, + 73.7876686941944 + ], + [ + 113.02133021330212, + 73.97723525776757 + ], + [ + 113.52893528935289, + 73.33575554710472 + ], + [ + 113.96813968139685, + 73.59471701341454 + ], + [ + 115.56655566555668, + 73.75212496352441 + ], + [ + 118.77778777787779, + 73.58794677900121 + ], + [ + 119.0189901899019, + 73.12080060448156 + ], + [ + 123.20223202232023, + 72.97185544738835 + ], + [ + 123.25623256232564, + 73.73519937749109 + ], + [ + 125.38025380253805, + 73.55917328274455 + ], + [ + 126.97506975069751, + 73.56594351715788 + ], + [ + 128.59148591485916, + 73.0378652329183 + ], + [ + 129.05229052290525, + 72.3980780808588 + ], + [ + 128.45828458284586, + 71.9800161058358 + ], + [ + 129.7146971469715, + 71.19297635528642 + ], + [ + 131.28791287912878, + 70.78676229048673 + ], + [ + 132.25272252722527, + 71.83614862455258 + ], + [ + 133.85833858338583, + 71.38592803606625 + ], + [ + 135.5611556115561, + 71.65504485399606 + ], + [ + 137.4979749797498, + 71.34699918818961 + ], + [ + 138.23238232382323, + 71.62796391634274 + ], + [ + 139.87039870398706, + 71.48748155226619 + ], + [ + 139.14679146791468, + 72.41669622549546 + ], + [ + 140.46800468004682, + 72.84999122794844 + ], + [ + 149.50049500495004, + 72.20004872426895 + ], + [ + 150.350103501035, + 71.60596065449943 + ], + [ + 152.96732967329672, + 70.84261672439669 + ], + [ + 157.00657006570066, + 71.03218328796987 + ], + [ + 158.99738997389977, + 70.86631254484334 + ], + [ + 159.8289982899829, + 70.45332824563033 + ], + [ + 159.710197101971, + 69.72214292899088 + ], + [ + 160.94140941409415, + 69.4377930836311 + ], + [ + 162.28062280622805, + 69.64259267463427 + ], + [ + 164.05184051840519, + 69.66798105368426 + ], + [ + 165.94185941859422, + 69.47164425569775 + ], + [ + 167.83547835478356, + 69.58335312351767 + ], + [ + 169.57789577895778, + 68.69306729816503 + ], + [ + 170.81630816308166, + 69.01296087419479 + ], + [ + 170.00990009900102, + 69.65274802625427 + ], + [ + 170.45270452704528, + 70.09619838032725 + ], + [ + 173.64233642336427, + 69.8169262107775 + ], + [ + 175.72315723157232, + 69.87785832049744 + ], + [ + 178.59958599585997, + 69.40055679435781 + ], + [ + 180, + 68.96387667469816 + ], + [ + 180, + 64.97959372245461 + ], + [ + 179.99279992799927, + 64.9745160466446 + ], + [ + 178.70758707587078, + 64.53445080977826 + ], + [ + 177.4115741157412, + 64.60892338832488 + ], + [ + 178.31158311583118, + 64.0757674282753 + ], + [ + 178.90918909189094, + 63.25149138845262 + ], + [ + 179.36999369993703, + 62.982374570522836 + ], + [ + 179.4851948519485, + 62.5693902713098 + ], + [ + 179.229592295923, + 62.30365857058669 + ], + [ + 177.3647736477365, + 62.521998630416505 + ], + [ + 174.56754567545676, + 61.76881005193377 + ], + [ + 173.67833678336785, + 61.65202350830387 + ], + [ + 172.14832148321483, + 60.94961168792108 + ], + [ + 170.69750697506976, + 60.33690547351489 + ], + [ + 170.33030330303302, + 59.88160720921857 + ], + [ + 168.90108901089013, + 60.573863677981365 + ], + [ + 166.2946629466295, + 59.78851648603532 + ], + [ + 165.84105841058414, + 60.15918682016502 + ], + [ + 164.87624876248765, + 59.730969493522025 + ], + [ + 163.54063540635406, + 59.868066740391924 + ], + [ + 163.2166321663217, + 59.21135400229909 + ], + [ + 162.01782017820182, + 58.24321048119319 + ], + [ + 162.0538205382054, + 57.83868897499684 + ], + [ + 163.19143191431914, + 57.615271239357014 + ], + [ + 163.05823058230584, + 56.159670840491486 + ], + [ + 162.12942129421293, + 56.12243455121819 + ], + [ + 161.70101701017012, + 55.286310601172175 + ], + [ + 162.1186211862119, + 54.854708157322506 + ], + [ + 160.3690036900369, + 54.34355545911623 + ], + [ + 160.02340023400234, + 53.202770960470474 + ], + [ + 158.52938529385295, + 52.959042521590646 + ], + [ + 158.23058230582308, + 51.94350735959145 + ], + [ + 156.79056790567904, + 51.010907569155506 + ], + [ + 156.419764197642, + 51.69977892071162 + ], + [ + 155.99135991359913, + 53.15876443678383 + ], + [ + 155.43335433354332, + 55.381093882958766 + ], + [ + 155.9157591575916, + 56.76729937908769 + ], + [ + 156.75816758167582, + 57.36477256606389 + ], + [ + 156.80856808568086, + 57.83191874058352 + ], + [ + 158.36378363783638, + 58.055336476223346 + ], + [ + 160.14940149401497, + 59.31460007710234 + ], + [ + 161.87381873818737, + 60.34367570792821 + ], + [ + 163.67023670236705, + 61.140870810097596 + ], + [ + 164.47304473044733, + 62.550772126673166 + ], + [ + 163.259832598326, + 62.46614419650655 + ], + [ + 162.65862658626588, + 61.64186815668387 + ], + [ + 160.12060120601205, + 60.54339762312139 + ], + [ + 159.30339303393038, + 61.773887727743755 + ], + [ + 156.72216722167224, + 61.43368344847403 + ], + [ + 154.21654216542169, + 59.75805043117535 + ], + [ + 155.04455044550446, + 59.14534421676916 + ], + [ + 152.8125281252813, + 58.88469019185604 + ], + [ + 151.26451264512644, + 58.78144411705276 + ], + [ + 151.33651336513367, + 59.50416664067555 + ], + [ + 149.78489784897852, + 59.656496914975435 + ], + [ + 148.54648546485464, + 59.163962361405794 + ], + [ + 145.48645486454865, + 59.33660333894568 + ], + [ + 142.19602196021964, + 59.04040558336257 + ], + [ + 138.95958959589598, + 57.088885513720754 + ], + [ + 135.12555125551256, + 54.729458820675944 + ], + [ + 136.70236702367026, + 54.604209484029354 + ], + [ + 137.1919719197192, + 53.97796280079652 + ], + [ + 138.16398163981643, + 53.75454506515669 + ], + [ + 138.8047880478805, + 54.25384985313963 + ], + [ + 139.90279902799028, + 54.18953262621304 + ], + [ + 141.34641346413463, + 53.08936953404722 + ], + [ + 141.3788137881379, + 52.23801255657122 + ], + [ + 140.59760597605975, + 51.23940298060532 + ], + [ + 140.5148051480515, + 50.04614916525625 + ], + [ + 140.06120061200613, + 48.4466812851075 + ], + [ + 138.55638556385566, + 46.999543679258636 + ], + [ + 138.21798217982183, + 46.30728721049584 + ], + [ + 136.8607686076861, + 45.14280689140344 + ], + [ + 135.51435514355143, + 43.988481923931005 + ], + [ + 134.869948699487, + 43.397778971368126 + ], + [ + 133.53793537935383, + 42.81215369461523 + ], + [ + 132.9079290792908, + 42.798613225788586 + ], + [ + 132.27792277922782, + 43.284377544944874 + ], + [ + 130.9351093510935, + 42.55319222830545 + ], + [ + 130.78030780307802, + 42.219758183449045 + ], + [ + 130.639906399064, + 42.39578427819558 + ], + [ + 130.63270632706326, + 42.903551859195176 + ], + [ + 131.1439114391144, + 42.9306327968485 + ], + [ + 131.28791287912878, + 44.11203870197423 + ], + [ + 131.02511025110255, + 44.968473355260215 + ], + [ + 131.88191881918823, + 45.32052554475328 + ], + [ + 133.09873098730986, + 45.14449945000675 + ], + [ + 133.76833768337684, + 46.11772064692266 + ], + [ + 134.1139411394114, + 47.212806063278464 + ], + [ + 134.49914499144995, + 47.57839872159818 + ], + [ + 135.02475024750248, + 48.47883989857081 + ], + [ + 133.37233372333725, + 48.18264214298773 + ], + [ + 132.50832508325084, + 47.78827598841136 + ], + [ + 130.98550985509854, + 47.789968547014695 + ], + [ + 130.58230582305822, + 48.72933857186396 + ], + [ + 129.3978939789398, + 49.44021318526339 + ], + [ + 127.65907659076589, + 49.760106761293144 + ], + [ + 127.28827288272885, + 50.74009819262238 + ], + [ + 126.93906939069393, + 51.35449696563191 + ], + [ + 126.56466564665647, + 51.78440685087824 + ], + [ + 125.94545945459458, + 52.793171778464114 + ], + [ + 125.06705067050672, + 53.160456995387165 + ], + [ + 123.57303573035733, + 53.45834730957358 + ], + [ + 122.24462244622447, + 53.43126637192029 + ], + [ + 121.00261002610029, + 53.25185515996708 + ], + [ + 120.17820178201782, + 52.75424293058748 + ], + [ + 120.72540725407254, + 52.51559216751767 + ], + [ + 120.73980739807399, + 51.96381806283142 + ], + [ + 120.18180181801819, + 51.643924486801694 + ], + [ + 119.27819278192783, + 50.58269024251251 + ], + [ + 119.28899288992892, + 50.14262500564618 + ], + [ + 117.8777787777878, + 49.51130064660336 + ], + [ + 116.67896678966792, + 49.88874121514638 + ], + [ + 115.48735487354872, + 49.80580584358313 + ], + [ + 114.9617496174962, + 50.14093244704284 + ], + [ + 114.36414364143644, + 50.24756363905277 + ], + [ + 112.89892898928991, + 49.54345926006664 + ], + [ + 111.58131581315814, + 49.37758851694011 + ], + [ + 110.66330663306633, + 49.13047496085363 + ], + [ + 109.40329403294032, + 49.29296058677352 + ], + [ + 108.47448474484747, + 49.28280523515352 + ], + [ + 107.86967869678699, + 49.79395793335979 + ], + [ + 106.89046890468904, + 50.274644576706095 + ], + [ + 105.8860588605886, + 50.40666414776598 + ], + [ + 104.62244622446224, + 50.274644576706095 + ], + [ + 103.67563675636757, + 50.0901556889429 + ], + [ + 102.25722257222571, + 50.50991022256923 + ], + [ + 102.06642066420665, + 51.25971368384532 + ], + [ + 100.88920889208896, + 51.516982591551766 + ], + [ + 99.98199981999824, + 51.633769135181694 + ], + [ + 98.86238862388626, + 52.0467534343947 + ], + [ + 97.82557825578255, + 51.010907569155506 + ], + [ + 98.23238232382323, + 50.421897175195966 + ], + [ + 97.26037260372607, + 49.726255589226525 + ], + [ + 95.8131581315813, + 49.97675426251965 + ], + [ + 94.8159481594816, + 50.01399055179294 + ], + [ + 94.14634146341467, + 50.4811367263126 + ], + [ + 93.10593105931059, + 50.494677195139246 + ], + [ + 92.23472234722351, + 50.802722860945664 + ], + [ + 90.71190711907121, + 50.33219156921936 + ], + [ + 88.80388803888042, + 49.47067924012339 + ], + [ + 87.7526775267753, + 49.2980382625835 + ], + [ + 87.36027360273602, + 49.21510289102025 + ], + [ + 86.83106831068312, + 49.8261165468231 + ], + [ + 85.54225542255426, + 49.69240441715988 + ], + [ + 85.1138511385114, + 50.117236626596195 + ], + [ + 84.41544415444156, + 50.31188086597939 + ], + [ + 83.93663936639365, + 50.88904334971559 + ], + [ + 83.38223382233821, + 51.0684545616688 + ], + [ + 81.94581945819459, + 50.812878212565664 + ], + [ + 80.56700567005669, + 51.38834813769856 + ], + [ + 80.03420034200343, + 50.865347529268945 + ], + [ + 77.80217802178021, + 53.404185434266964 + ], + [ + 76.52416524165244, + 54.1776847159897 + ], + [ + 76.89136891368912, + 54.49080805760613 + ], + [ + 74.38574385743857, + 53.54636035694685 + ], + [ + 73.42453424534247, + 53.49050592303689 + ], + [ + 73.50733507335073, + 54.035509793309814 + ], + [ + 72.22572225722257, + 54.37740663118288 + ], + [ + 71.18171181711818, + 54.13367819230308 + ], + [ + 70.86490864908649, + 55.16952405754225 + ], + [ + 69.06849068490686, + 55.38447900016541 + ], + [ + 68.16848168481687, + 54.969802142349096 + ], + [ + 65.66645666456665, + 54.60082436682271 + ], + [ + 65.17685176851771, + 54.35371081073623 + ], + [ + 61.436414364143644, + 54.00673629705318 + ], + [ + 60.97920979209792, + 53.664839459180115 + ], + [ + 61.69921699216994, + 52.979353224830646 + ], + [ + 60.741607416074174, + 52.72039175852083 + ], + [ + 60.92880928809288, + 52.44788982338437 + ], + [ + 59.96759967599678, + 51.960432945624774 + ], + [ + 61.587615876158765, + 51.27325415267197 + ], + [ + 61.33921339213393, + 50.79933774373902 + ], + [ + 59.93159931599317, + 50.8416517088223 + ], + [ + 59.643596435964355, + 50.54545395323922 + ], + [ + 58.361983619836195, + 51.06337688585879 + ], + [ + 56.777967779677795, + 51.043066182618816 + ], + [ + 55.715957159571616, + 50.621619090389146 + ], + [ + 54.53154531545317, + 51.02614059658549 + ], + [ + 52.328323283232834, + 51.718397065348285 + ], + [ + 50.76590765907659, + 51.6930086862983 + ], + [ + 48.70308703087031, + 50.60469350435582 + ], + [ + 48.57708577085771, + 49.875200746319734 + ], + [ + 47.55107551075511, + 50.454055788659275 + ], + [ + 46.7518675186752, + 49.3555852550968 + ], + [ + 47.043470434704346, + 49.15247822269697 + ], + [ + 46.46746467464675, + 48.39421196840422 + ], + [ + 47.31347313473137, + 47.715495968468076 + ], + [ + 48.05868058680588, + 47.74426946472474 + ], + [ + 48.69588695886961, + 47.07570881640859 + ], + [ + 48.59148591485916, + 46.56117100099564 + ], + [ + 49.102691026910264, + 46.398685375075786 + ], + [ + 48.64548645486457, + 45.80628986390957 + ], + [ + 47.67707677076771, + 45.642111679386375 + ], + [ + 46.683466834668366, + 44.609650931353855 + ], + [ + 47.59067590675909, + 43.66012555488459 + ], + [ + 47.493474934749344, + 42.986487230758456 + ], + [ + 48.584285842858435, + 41.80846644283936 + ], + [ + 47.98667986679868, + 41.40563749524634 + ], + [ + 47.813878138781405, + 41.15175370474654 + ], + [ + 47.37467374673747, + 41.21945604887982 + ], + [ + 46.6870668706687, + 41.82708458747602 + ], + [ + 46.406264062640645, + 41.860935759542656 + ], + [ + 45.77625776257764, + 42.092816288199145 + ], + [ + 45.47025470254704, + 42.50241547020548 + ], + [ + 44.537845378453795, + 42.71229273701866 + ], + [ + 43.92943929439295, + 42.55488478690879 + ], + [ + 43.75663756637567, + 42.74106623327529 + ], + [ + 42.39582395823959, + 43.220060318018255 + ], + [ + 40.92340923409236, + 43.38254594393814 + ], + [ + 40.07740077400774, + 43.55349436287466 + ], + [ + 39.954999549995506, + 43.43501526064142 + ], + [ + 38.680586805868074, + 44.2796020037041 + ], + [ + 37.53937539375394, + 44.65704257224715 + ], + [ + 36.67536675366753, + 45.24436040760335 + ], + [ + 37.40257402574028, + 45.4051534749199 + ], + [ + 38.23418234182341, + 46.24127742496589 + ], + [ + 37.67257672576727, + 46.6373361381456 + ], + [ + 39.148591485914864, + 47.04524276154859 + ], + [ + 39.11979119791198, + 47.263582821378435 + ], + [ + 38.22338223382235, + 47.10278975406189 + ], + [ + 38.2557825578256, + 47.54624010813487 + ], + [ + 38.77058770587706, + 47.82551227768465 + ], + [ + 39.73899738997392, + 47.89829229762793 + ], + [ + 39.89739897398974, + 48.231726342484336 + ], + [ + 39.67419674196742, + 48.78350044717058 + ], + [ + 40.081000810008106, + 49.3081936142035 + ], + [ + 40.070200702007014, + 49.601006252579936 + ], + [ + 38.59418594185942, + 49.92597750441968 + ], + [ + 38.010980109801096, + 49.915822152799706 + ], + [ + 37.39177391773919, + 50.38466088592267 + ], + [ + 36.62496624966249, + 50.22556037720946 + ], + [ + 35.35775357753579, + 50.57761256670253 + ], + [ + 35.379353793537945, + 50.77394936468903 + ], + [ + 35.0229502295023, + 51.20724436714201 + ], + [ + 34.223742237422385, + 51.25632856663864 + ], + [ + 34.1409414094141, + 51.5660667910484 + ], + [ + 34.3929439294393, + 51.769173823448256 + ], + [ + 33.75213752137523, + 52.33448839696115 + ], + [ + 32.715327153271545, + 52.23801255657122 + ], + [ + 32.412924129241304, + 52.28878931467116 + ], + [ + 32.1609216092161, + 52.06198646182469 + ], + [ + 31.786517865178666, + 52.10091530970132 + ], + [ + 31.541715417154165, + 52.74239502036414 + ], + [ + 31.30411304113042, + 53.074136506617236 + ], + [ + 31.498514985149853, + 53.16722722980049 + ], + [ + 32.304923049230496, + 53.13337605773384 + ], + [ + 32.69372693726939, + 53.35171611756368 + ], + [ + 32.405724057240576, + 53.61744781828679 + ], + [ + 31.732517325173262, + 53.793473913033324 + ], + [ + 31.79011790117903, + 53.97457768358987 + ], + [ + 31.383313833138345, + 54.15737401274973 + ], + [ + 30.756907569075707, + 54.812394192239196 + ], + [ + 30.972909729097296, + 55.08151101016898 + ], + [ + 30.87570875708758, + 55.550349743291974 + ], + [ + 29.89649896498966, + 55.78900050636179 + ], + [ + 29.370893708937103, + 55.67052140412852 + ], + [ + 29.230492304923047, + 55.917634960215 + ], + [ + 28.175681756817568, + 56.169826192111486 + ], + [ + 27.855278552785535, + 56.75883658607103 + ], + [ + 27.768877688776882, + 57.244600905227315 + ], + [ + 27.286472864728665, + 57.47478887528047 + ], + [ + 27.718477184771842, + 57.79129733410355 + ], + [ + 27.419674196741965, + 58.72389712453949 + ], + [ + 28.132481324813256, + 59.30105960827569 + ], + [ + 27.981279812798135, + 59.47539314441889 + ], + [ + 29.118891188911903, + 60.02885980770847 + ], + [ + 28.071280712807123, + 60.50277621664142 + ], + [ + 30.209702097020966, + 61.78065796215711 + ], + [ + 31.138511385113873, + 62.35782044589331 + ], + [ + 31.516515165151645, + 62.867280585496246 + ], + [ + 30.03690036900369, + 63.552766819845715 + ], + [ + 30.443704437044374, + 64.20440188212854 + ], + [ + 29.54369543695438, + 64.94912766759461 + ], + [ + 30.216902169021694, + 65.80556232088063 + ], + [ + 29.054090540905406, + 66.94465426092307 + ], + [ + 29.975699756997585, + 67.69784283940581 + ], + [ + 28.44568445684459, + 68.36471092911862 + ], + [ + 28.593285932859345, + 69.06543019089807 + ], + [ + 29.399693996939988, + 69.15682835547801 + ], + [ + 31.10251102511026, + 69.55796474446768 + ], + [ + 32.13212132121322, + 69.90663181675407 + ], + [ + 33.77373773737739, + 69.30069583676121 + ], + [ + 36.51336513365135, + 69.06373763229473 + ], + [ + 40.29340293402936, + 67.93310848526895 + ], + [ + 41.060210602106025, + 67.45749951773266 + ], + [ + 41.12501125011252, + 66.79232398662319 + ], + [ + 40.01620016200164, + 66.26593826098693 + ], + [ + 38.3817838178382, + 66.00020656026379 + ], + [ + 33.91773917739178, + 66.76016537315988 + ], + [ + 33.183331833318334, + 66.63322347790998 + ], + [ + 34.81414814148141, + 65.90034560266722 + ], + [ + 34.87894878948791, + 65.43658454535424 + ], + [ + 34.943749437494375, + 64.41427914894172 + ], + [ + 36.23256232562326, + 64.10961860034195 + ], + [ + 37.013770137701385, + 63.85065713403213 + ], + [ + 37.14337143371435, + 64.33472889458511 + ], + [ + 36.53856538565387, + 64.76463877983144 + ], + [ + 37.1757717577176, + 65.1437719069778 + ], + [ + 39.5949959499595, + 64.52091034095162 + ], + [ + 40.43380433804339, + 64.76463877983144 + ], + [ + 39.76419764197644, + 65.49751665507418 + ], + [ + 42.09342093420935, + 66.47581552780008 + ], + [ + 43.0150301503015, + 66.41826853528681 + ], + [ + 43.951039510395105, + 66.06960146300042 + ], + [ + 44.53064530645307, + 66.7567802559532 + ], + [ + 43.699036990369905, + 67.35256088432607 + ], + [ + 44.18864188641888, + 67.95003407130227 + ], + [ + 43.45423454234543, + 68.57120307872512 + ], + [ + 46.25146251462516, + 68.24961694409205 + ], + [ + 46.82026820268203, + 67.68938004638915 + ], + [ + 45.55665556655566, + 67.5658232683459 + ], + [ + 45.560255602556026, + 67.010664046453 + ], + [ + 46.34866348663488, + 66.6670746499766 + ], + [ + 47.89307893078933, + 66.8837221512031 + ], + [ + 48.1378813788138, + 67.52181674465928 + ], + [ + 50.225902259022604, + 67.9991182707989 + ], + [ + 53.7179371793718, + 68.85724548268823 + ], + [ + 54.47034470344704, + 68.8081612831916 + ], + [ + 53.48753487534876, + 68.20053274459542 + ], + [ + 54.725947259472605, + 68.09728666979217 + ], + [ + 55.44235442354423, + 68.43918350766523 + ], + [ + 57.31797317973181, + 68.46626444531853 + ], + [ + 58.80118801188013, + 68.88094130313488 + ], + [ + 59.94239942399426, + 68.27839044034869 + ], + [ + 61.07641076410766, + 68.94018085425151 + ], + [ + 60.028800288002884, + 69.52072845519439 + ], + [ + 60.55080550805508, + 69.85077738284411 + ], + [ + 63.50283502835029, + 69.54780939284768 + ], + [ + 64.8888488884889, + 69.23468605123128 + ], + [ + 68.51048510485106, + 68.09220899398215 + ], + [ + 69.180091800918, + 68.61520960241177 + ], + [ + 68.1648816488165, + 69.14498044525467 + ], + [ + 68.13608136081362, + 69.35655027067116 + ], + [ + 66.93006930069302, + 69.45471866966443 + ], + [ + 67.26127261272615, + 69.92863507859741 + ], + [ + 66.7248672486725, + 70.70890459473344 + ], + [ + 66.69606696066961, + 71.0287981707632 + ], + [ + 68.53928539285394, + 71.93431702354582 + ], + [ + 69.19809198091983, + 72.84322099353511 + ], + [ + 69.93969939699397, + 73.03955779152164 + ], + [ + 72.58932589325894, + 72.77551864940185 + ], + [ + 72.79452794527947, + 72.22035942750895 + ], + [ + 71.84771847718477, + 71.4096238565129 + ], + [ + 72.47052470524707, + 71.08973028048317 + ], + [ + 72.7909279092791, + 70.39070357730702 + ], + [ + 72.56412564125642, + 69.02142366721145 + ], + [ + 73.66933669336694, + 68.40871745280526 + ], + [ + 73.23733237332374, + 67.74015680448912 + ], + [ + 71.2789127891279, + 66.32010013629355 + ], + [ + 72.42372423724237, + 66.17284753780368 + ], + [ + 72.81972819728199, + 66.53336252031337 + ], + [ + 73.92133921339214, + 66.78893886941651 + ], + [ + 74.18774187741877, + 67.2848585401928 + ], + [ + 75.05175051750518, + 67.76046750772909 + ], + [ + 74.46854468544686, + 68.32916719844866 + ], + [ + 74.93654936549368, + 68.98926505374814 + ], + [ + 73.84213842138422, + 69.0722004253114 + ], + [ + 73.60093600936011, + 69.62735964720429 + ], + [ + 74.40014400144003, + 70.63104689898017 + ], + [ + 73.10053100531007, + 71.44686014578622 + ], + [ + 74.88974889748897, + 72.12049846991235 + ], + [ + 74.65934659346595, + 72.83306564191514 + ], + [ + 75.15975159751599, + 72.85506890375845 + ], + [ + 75.68175681756819, + 72.29990968186556 + ], + [ + 75.28935289352896, + 71.3351512779663 + ], + [ + 76.35856358563586, + 71.15235494880645 + ], + [ + 75.90135901359014, + 71.87338491382587 + ], + [ + 77.57537575375756, + 72.26775106840225 + ], + [ + 79.6525965259653, + 72.32022038510553 + ], + [ + 81.49941499414996, + 71.74982813578265 + ], + [ + 80.61020610206106, + 72.58256696862199 + ], + [ + 80.50940509405098, + 73.64887888872116 + ], + [ + 82.24822248222483, + 73.85029336251768 + ], + [ + 84.65664656646567, + 73.80628683883103 + ], + [ + 86.8238682386824, + 73.9366138512876 + ], + [ + 86.01026010260102, + 74.45961445971719 + ], + [ + 87.16587165871658, + 75.11632719781002 + ], + [ + 88.31428314283141, + 75.14340813546332 + ], + [ + 90.25830258302585, + 75.6393278062396 + ], + [ + 92.90072900729007, + 75.77303993590283 + ], + [ + 93.23553235532358, + 76.04723442964263 + ], + [ + 95.85995859958598, + 76.14032515282588 + ], + [ + 96.67716677166771, + 75.91521485858271 + ], + [ + 98.9235892358924, + 76.44667826002896 + ], + [ + 100.75960759607597, + 76.42975267399567 + ], + [ + 101.03681036810372, + 76.8613551178453 + ], + [ + 101.99081990819911, + 77.28787988588499 + ], + [ + 104.35244352443527, + 77.69747906789132 + ], + [ + 106.06606066060664, + 77.37420037465492 + ], + [ + 104.70524705247055, + 77.12708681856844 + ], + [ + 106.969669696697, + 76.97475654426856 + ], + [ + 107.23967239672396, + 76.48052943209561 + ], + [ + 108.15408154081541, + 76.7225653123721 + ], + [ + 111.07731077310774, + 76.71071740214876 + ], + [ + 113.33093330933309, + 76.22156796578582 + ], + [ + 114.13374133741337, + 75.84751251444945 + ], + [ + 113.88533885338853, + 75.32789702322651 + ], + [ + 112.78012780127801, + 75.0316992676434 + ], + [ + 110.1521015210152, + 74.47654004575051 + ], + [ + 109.39969399693996, + 74.1803422901674 + ], + [ + 110.6417064170642, + 74.03985992609086 + ], + [ + 112.11772117721176, + 73.7876686941944 + ] + ] + ], + [ + [ + [ + 99.43839438394383, + 77.92089680353115 + ], + [ + 101.26361263612637, + 79.23432227971679 + ], + [ + 102.08802088020883, + 79.3460311475367 + ], + [ + 102.8368283682837, + 79.28171392061009 + ], + [ + 105.37125371253711, + 78.71301422989055 + ], + [ + 105.0760507605076, + 78.30680016509086 + ], + [ + 99.43839438394383, + 77.92089680353115 + ] + ] + ], + [ + [ + [ + 47.587075870758724, + 80.00951412004287 + ], + [ + 46.50346503465036, + 80.24647232450934 + ], + [ + 47.07227072270723, + 80.55959566612574 + ], + [ + 44.847448474484764, + 80.59006172098574 + ], + [ + 46.798667986679874, + 80.77116549154226 + ], + [ + 48.317883178831806, + 80.78470596036891 + ], + [ + 48.5230852308523, + 80.51389658383579 + ], + [ + 49.095490954909565, + 80.75423990550894 + ], + [ + 50.03870038700387, + 80.91841809003213 + ], + [ + 51.52191521915219, + 80.70007803020232 + ], + [ + 51.13671136711369, + 80.54774775590244 + ], + [ + 49.7938979389794, + 80.41572818484255 + ], + [ + 48.893888938889404, + 80.3395630476926 + ], + [ + 48.75348753487535, + 80.1753848631694 + ], + [ + 47.587075870758724, + 80.00951412004287 + ] + ] + ], + [ + [ + [ + 97.75717757177574, + 78.75702075357717 + ], + [ + 94.97434974349744, + 79.04475571614361 + ], + [ + 93.31113311133112, + 79.42727396049665 + ], + [ + 92.54432544325442, + 80.14322624970609 + ], + [ + 91.17991179911797, + 80.34125560629593 + ], + [ + 93.77913779137793, + 81.02504928204206 + ], + [ + 95.93915939159393, + 81.25015957628523 + ], + [ + 97.88317883178831, + 80.74746967109562 + ], + [ + 100.1872018720187, + 79.77932614998971 + ], + [ + 99.93879938799387, + 78.88057753162039 + ], + [ + 97.75717757177574, + 78.75702075357717 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.22667175476665236, + "skewed": 0.8079450343151731, + "clumpy": 0.5228702487159924, + "sparse": 0.011949573275484626, + "striated": 0.2227478520991626, + "convex": 0.002024881670328993, + "skinny": 0.4879390794168317, + "stringy": 0.13611120078860628, + "monotonic": 0.008164698757193722, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 90.52733163067008, + -85.28471424748072 + ], + "drag": [ + 90.52733163067008, + -85.28471424748072 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 252 + }, + { + "attrs": { + "name": "Selected Russia (3 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.23\",\"payload\":{\"numVal\":0.22667175476665236},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.81\",\"payload\":{\"numVal\":0.8079450343151731},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.52\",\"payload\":{\"numVal\":0.5228702487159924},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.01\",\"payload\":{\"numVal\":0.011949573275484626},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.22\",\"payload\":{\"numVal\":0.2227478520991626},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0\",\"payload\":{\"numVal\":0.002024881670328993},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.49\",\"payload\":{\"numVal\":0.4879390794168317},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.14\",\"payload\":{\"numVal\":0.13611120078860628},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.01\",\"payload\":{\"numVal\":0.008164698757193722},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = France\",\"text\":\"France\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Russia\",\"text\":\"Russia\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 253 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Russia (3 Countries)", + "timestamp": 1522412415481, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 250, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + -54.52434524345243, + 2.3126114340868895 + ], + [ + -54.27234272342723, + 2.739136202126545 + ], + [ + -54.18594185941859, + 3.1944344664228623 + ], + [ + -54.013140131401315, + 3.622651793065856 + ], + [ + -54.39834398343983, + 4.213354745628735 + ], + [ + -54.477544775447754, + 4.897148421374865 + ], + [ + -53.95913959139591, + 5.756968191867529 + ], + [ + -53.61713617136171, + 5.646951882650953 + ], + [ + -52.882728827288275, + 5.409993678184463 + ], + [ + -51.82431824318243, + 4.565406935121786 + ], + [ + -51.658716587165856, + 4.15580775311544 + ], + [ + -52.24912249122491, + 3.2418261073161574 + ], + [ + -52.555125551255514, + 2.503870556263408 + ], + [ + -52.94032940329403, + 2.124737429117033 + ], + [ + -53.41913419134191, + 2.0536499677770905 + ], + [ + -53.55593555935559, + 2.334614695930199 + ], + [ + -53.779137791377906, + 2.376928661013494 + ], + [ + -54.088740887408875, + 2.1061192844803855 + ], + [ + -54.52434524345243, + 2.3126114340868895 + ] + ] + ], + [ + [ + [ + 9.228692286922865, + 41.38024911619637 + ], + [ + 8.775087750877503, + 41.58335614859621 + ], + [ + 8.544685446854487, + 42.25699447272234 + ], + [ + 8.746287462874648, + 42.62766480685207 + ], + [ + 9.390693906939077, + 43.010183051205104 + ], + [ + 9.55989559895599, + 42.152055839315764 + ], + [ + 9.228692286922865, + 41.38024911619637 + ] + ] + ], + [ + [ + [ + 5.675456754567563, + 49.52991879123999 + ], + [ + 5.898658986589879, + 49.44190574386673 + ], + [ + 6.186661866618664, + 49.463909005710036 + ], + [ + 6.658266582665846, + 49.201562422193575 + ], + [ + 8.098280982809825, + 49.01707353443041 + ], + [ + 7.594275942759424, + 48.33327985868428 + ], + [ + 7.468274682746824, + 47.620712686681486 + ], + [ + 7.191071910719103, + 47.44976426774497 + ], + [ + 6.7374673746737415, + 47.54116243232488 + ], + [ + 6.76986769867699, + 47.28727864182508 + ], + [ + 6.0390603906039075, + 46.725349185518866 + ], + [ + 6.021060210602116, + 46.273436038429196 + ], + [ + 6.499864998649997, + 46.42915142993576 + ], + [ + 6.841868418684186, + 45.990778751672764 + ], + [ + 6.802268022680238, + 45.7081214649163 + ], + [ + 7.097470974709751, + 45.33237345497662 + ], + [ + 6.748267482674834, + 45.02771290637685 + ], + [ + 7.0074700747007626, + 44.25421362465411 + ], + [ + 7.551075510755112, + 44.127271729404214 + ], + [ + 7.435874358743604, + 43.693976726951234 + ], + [ + 6.528665286652881, + 43.12866215343834 + ], + [ + 4.555845558455587, + 43.399471529971464 + ], + [ + 3.101431014310151, + 43.074500278131694 + ], + [ + 2.986229862298643, + 42.473641973948844 + ], + [ + 1.8270182701827196, + 42.34331496149228 + ], + [ + 0.700207002070016, + 42.79522810858194 + ], + [ + 0.33660336603367114, + 42.58027316595877 + ], + [ + -1.5030150301502943, + 43.03387887165175 + ], + [ + -1.9026190261902514, + 43.42316735041811 + ], + [ + -1.384213842138422, + 44.022333095997624 + ], + [ + -1.1934119341193252, + 46.01447457211941 + ], + [ + -2.2266222662226482, + 47.063860906185255 + ], + [ + -2.9646296462964585, + 47.56993592858154 + ], + [ + -4.491044910449091, + 47.95414673153789 + ], + [ + -4.591845918459171, + 48.683639489574006 + ], + [ + -3.2958329583295836, + 48.90197954940382 + ], + [ + -1.6182161821618024, + 48.644710641697344 + ], + [ + -1.9350193501934996, + 49.77703234732647 + ], + [ + -0.9882098820988006, + 49.34712246208014 + ], + [ + 1.337413374133746, + 50.127391978216195 + ], + [ + 1.6398163981639868, + 50.94659034222889 + ], + [ + 2.5146251462514613, + 51.148004816025406 + ], + [ + 2.658626586265882, + 50.79764518513568 + ], + [ + 3.123031230312307, + 50.780719599102355 + ], + [ + 3.5874358743587607, + 50.379583210112656 + ], + [ + 4.285842858428595, + 49.907359359783044 + ], + [ + 4.80064800648006, + 49.98521705553631 + ], + [ + 5.675456754567563, + 49.52991879123999 + ] + ] + ] + ] + }, + "countryRef": { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.6572123995992016, + "skewed": 0.43129407546666365, + "clumpy": 0.8458114215322439, + "sparse": 0.589705174962802, + "striated": 0.52151567630445, + "convex": 0.2510206314610066, + "skinny": 0.35672557088338563, + "stringy": 0.45861977257141806, + "monotonic": 0.9516597653478509, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 0.5729577951308232, + -86.90084253588446 + ], + "drag": [ + 0.5729577951308232, + -86.90084253588446 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 254 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Iran (4 Countries)", + "timestamp": 1522412423963, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 364, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 53.92313923139233, + 37.1996293659663 + ], + [ + 54.801548015480165, + 37.392581046746145 + ], + [ + 55.51075510755109, + 37.96466585467236 + ], + [ + 56.18036180361804, + 37.93589235841573 + ], + [ + 56.619566195661974, + 38.12207380478225 + ], + [ + 57.32877328773287, + 38.02898308159898 + ], + [ + 58.437584375843755, + 37.522908059202706 + ], + [ + 59.233192331923334, + 37.41289174998613 + ], + [ + 60.3780037800378, + 36.527683600443495 + ], + [ + 61.12321123211234, + 36.49213986977351 + ], + [ + 61.20961209612096, + 35.64924568531417 + ], + [ + 60.80280802808028, + 34.40352255326181 + ], + [ + 60.52920529205292, + 33.675722353829045 + ], + [ + 60.96480964809649, + 33.52846975533916 + ], + [ + 60.53640536405365, + 32.98177332646293 + ], + [ + 60.86400864008641, + 32.18288566569022 + ], + [ + 60.943209432094335, + 31.54817618944071 + ], + [ + 61.69921699216994, + 31.378920329107515 + ], + [ + 61.7820178201782, + 30.73574805984134 + ], + [ + 60.8748087480875, + 29.828536648455383 + ], + [ + 61.36801368013681, + 29.30384348142246 + ], + [ + 61.77121771217713, + 28.699600060032935 + ], + [ + 62.728827288272896, + 28.259534823166618 + ], + [ + 62.754027540275416, + 27.37940434943397 + ], + [ + 63.2328323283233, + 27.216918723514098 + ], + [ + 63.315633156331586, + 26.756542783407795 + ], + [ + 61.87561875618758, + 26.24031240939152 + ], + [ + 61.49761497614978, + 25.07752464890244 + ], + [ + 59.6147961479615, + 25.380492638898858 + ], + [ + 58.52398523985241, + 25.610680608952023 + ], + [ + 57.39717397173973, + 25.739315062805247 + ], + [ + 56.972369723697255, + 26.96642005022096 + ], + [ + 56.493564935649374, + 27.144138703570817 + ], + [ + 55.723157231572316, + 26.964727491617623 + ], + [ + 54.71514715147151, + 26.480655731064672 + ], + [ + 53.494734947349485, + 26.812397217317738 + ], + [ + 52.48312483124832, + 27.580818823230473 + ], + [ + 51.52191521915219, + 27.865168668590258 + ], + [ + 50.85230852308524, + 28.81469404505951 + ], + [ + 50.11430114301143, + 30.14843022448514 + ], + [ + 49.57789577895781, + 29.98594459856527 + ], + [ + 48.94068940689408, + 30.317686084818334 + ], + [ + 48.56628566285664, + 29.92670504744865 + ], + [ + 48.015480154801566, + 30.453090773084895 + ], + [ + 48.00468004680047, + 30.984554174531155 + ], + [ + 47.68427684276844, + 30.984554174531155 + ], + [ + 47.84987849878499, + 31.708969256757257 + ], + [ + 47.33507335073352, + 32.46892806965333 + ], + [ + 46.111061110611104, + 33.0173170571329 + ], + [ + 45.416254162541634, + 33.96853499220549 + ], + [ + 45.65025650256504, + 34.74880450834155 + ], + [ + 46.15066150661508, + 35.09408646342128 + ], + [ + 46.07506075060752, + 35.67801918157082 + ], + [ + 45.419854198542, + 35.97760205436059 + ], + [ + 44.771847718477204, + 37.170855869709655 + ], + [ + 44.22464224642246, + 37.9714360890857 + ], + [ + 44.42264422644226, + 38.281174313495455 + ], + [ + 44.109441094410954, + 39.42872904655455 + ], + [ + 44.79344793447936, + 39.713078891914336 + ], + [ + 44.95184951849518, + 39.3356383233713 + ], + [ + 45.459454594545946, + 38.87356982466166 + ], + [ + 46.14346143461435, + 38.74155025360176 + ], + [ + 46.507065070650725, + 38.770323749858406 + ], + [ + 47.68427684276844, + 39.508279300911155 + ], + [ + 48.05868058680588, + 39.582751879457774 + ], + [ + 48.35388353883539, + 39.288246682478004 + ], + [ + 48.0118801188012, + 38.79401957030505 + ], + [ + 48.634686346863475, + 38.271018961875455 + ], + [ + 48.88308883088831, + 38.32010316137209 + ], + [ + 49.19989199892001, + 37.582147610319325 + ], + [ + 50.14670146701468, + 37.3739629021095 + ], + [ + 50.84150841508415, + 36.87296555552322 + ], + [ + 52.263522635226366, + 36.70032457798335 + ], + [ + 53.82593825938261, + 36.96436372010315 + ], + [ + 53.92313923139233, + 37.1996293659663 + ] + ] + ] + }, + "countryRef": { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.3138113586061122, + "skewed": 0.6831823359921632, + "clumpy": 0.3446204628340932, + "sparse": 0.3583130640179337, + "striated": 0.27864774845238505, + "convex": 0.7121681702552329, + "skinny": 0.5890337186562513, + "stringy": 0.5065076800458095, + "monotonic": 0.0965456686570012, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 53.285074947166564, + -87.81579256981577 + ], + "drag": [ + 53.285074947166564, + -87.81579256981577 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 255 + }, + { + "attrs": { + "name": "Selected Iran (4 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.31\",\"payload\":{\"numVal\":0.3138113586061122},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.68\",\"payload\":{\"numVal\":0.6831823359921632},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.34\",\"payload\":{\"numVal\":0.3446204628340932},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.36\",\"payload\":{\"numVal\":0.3583130640179337},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.28\",\"payload\":{\"numVal\":0.27864774845238505},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.71\",\"payload\":{\"numVal\":0.7121681702552329},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.59\",\"payload\":{\"numVal\":0.5890337186562513},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.51\",\"payload\":{\"numVal\":0.5065076800458095},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.1\",\"payload\":{\"numVal\":0.0965456686570012},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = France\",\"text\":\"France\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Russia\",\"text\":\"Russia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 256 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Iran (4 Countries)", + "timestamp": 1522412423963, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 643, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 142.0916209162092, + 45.967082931226116 + ], + [ + 141.9080190801908, + 46.80659199847878 + ], + [ + 142.01962019620197, + 47.779813195394695 + ], + [ + 141.90441904419043, + 48.85966558432051 + ], + [ + 142.1348213482135, + 49.61454672140661 + ], + [ + 142.18162181621818, + 50.9516680180389 + ], + [ + 141.59481594815952, + 51.93504456657479 + ], + [ + 141.68121681216815, + 53.30263191806705 + ], + [ + 142.60642606426063, + 53.761315299570015 + ], + [ + 142.21042210422104, + 54.225076356882994 + ], + [ + 142.6532265322653, + 54.36555872095954 + ], + [ + 142.9160291602916, + 53.70376830705675 + ], + [ + 143.26163261632615, + 52.74070246176083 + ], + [ + 143.23643236432366, + 51.75732591322492 + ], + [ + 143.6468364683647, + 50.74686842703571 + ], + [ + 144.6548465484655, + 48.97645212795044 + ], + [ + 143.17523175231753, + 49.306501055600165 + ], + [ + 142.55962559625596, + 47.86105600835464 + ], + [ + 143.53523535235354, + 46.83705805333878 + ], + [ + 143.50643506435068, + 46.138031350162635 + ], + [ + 142.74682746827472, + 46.74058221294885 + ], + [ + 142.0916209162092, + 45.967082931226116 + ] + ] + ], + [ + [ + [ + 22.73242732427326, + 54.328322431686246 + ], + [ + 20.892808928089295, + 54.31308940425626 + ], + [ + 19.661596615966175, + 54.42649083067951 + ], + [ + 19.888398883988856, + 54.866556067545815 + ], + [ + 21.267212672126732, + 55.18983476078225 + ], + [ + 22.314823148231483, + 55.01550122463905 + ], + [ + 22.75762757627578, + 54.856400715925844 + ], + [ + 22.649626496264972, + 54.582206222186045 + ], + [ + 22.73242732427326, + 54.328322431686246 + ] + ] + ], + [ + [ + [ + -172.95472954729547, + 64.25348608162517 + ], + [ + -173.89073890738908, + 64.2822595778818 + ], + [ + -174.65394653946538, + 64.63092665016819 + ], + [ + -175.98235982359824, + 64.92204672994131 + ], + [ + -176.20556205562056, + 65.35703429099763 + ], + [ + -177.22437224372243, + 65.51951991691752 + ], + [ + -178.35838358383583, + 65.39088546306428 + ], + [ + -178.9019890198902, + 65.741245093954 + ], + [ + -178.6859868598686, + 66.1119154280837 + ], + [ + -179.8847988479885, + 65.87495722361723 + ], + [ + -179.43119431194313, + 65.40442593189093 + ], + [ + -180, + 64.97959372245461 + ], + [ + -180, + 68.96387667469816 + ], + [ + -177.54837548375482, + 68.20053274459542 + ], + [ + -174.92754927549277, + 67.2053082858362 + ], + [ + -175.0139501395014, + 66.58413927841335 + ], + [ + -174.34074340743408, + 66.33533316372353 + ], + [ + -174.57114571145712, + 67.06144080455297 + ], + [ + -171.85671856718568, + 66.91249564745976 + ], + [ + -169.89829898298984, + 65.97651073981714 + ], + [ + -170.8919089190892, + 65.54152317876083 + ], + [ + -172.529925299253, + 65.43827710395757 + ], + [ + -172.55512555125551, + 64.45997823123167 + ], + [ + -172.95472954729547, + 64.25348608162517 + ] + ] + ], + [ + [ + [ + 178.9019890198902, + 70.78168461467672 + ], + [ + 178.7255872558726, + 71.09819307349983 + ], + [ + 180, + 71.51625504852282 + ], + [ + 180, + 70.83246137277669 + ], + [ + 178.9019890198902, + 70.78168461467672 + ] + ] + ], + [ + [ + [ + -180, + 70.83246137277669 + ], + [ + -180, + 71.51625504852282 + ], + [ + -179.87039870398704, + 71.5568764550028 + ], + [ + -179.02439024390245, + 71.55518389639946 + ], + [ + -177.5771757717577, + 71.26914149243635 + ], + [ + -177.66357663576636, + 71.13204424556645 + ], + [ + -178.69318693186932, + 70.89339348249663 + ], + [ + -180, + 70.83246137277669 + ] + ] + ], + [ + [ + [ + 142.08802088020883, + 73.20542853464818 + ], + [ + 140.03960039600395, + 73.31713740246809 + ], + [ + 139.86319863198634, + 73.36960671917137 + ], + [ + 140.810008100081, + 73.76566543235106 + ], + [ + 142.06282062820628, + 73.857063596931 + ], + [ + 143.48123481234813, + 73.47454535257796 + ], + [ + 143.6036360363604, + 73.2121987690615 + ], + [ + 142.08802088020883, + 73.20542853464818 + ] + ] + ], + [ + [ + [ + 149.57609576095763, + 74.688109871167 + ], + [ + 147.9776797767978, + 74.7778154771436 + ], + [ + 146.12006120061204, + 75.17218163171998 + ], + [ + 146.3576635766358, + 75.49715288355972 + ], + [ + 148.22248222482227, + 75.34651516786317 + ], + [ + 150.7317073170732, + 75.08416858434671 + ], + [ + 149.57609576095763, + 74.688109871167 + ] + ] + ], + [ + [ + [ + 138.9559895598956, + 74.61194473401707 + ], + [ + 136.9759697596976, + 75.26188723769656 + ], + [ + 137.51237512375127, + 75.94906603064936 + ], + [ + 138.82998829988298, + 76.1369400356192 + ], + [ + 141.47241472414726, + 76.09293351193259 + ], + [ + 145.0868508685087, + 75.56316266908965 + ], + [ + 144.29844298442987, + 74.82012944222691 + ], + [ + 140.61560615606157, + 74.84721037988021 + ], + [ + 138.9559895598956, + 74.61194473401707 + ] + ] + ], + [ + [ + [ + 56.94356943569437, + 70.63273945758351 + ], + [ + 53.678336783367854, + 70.76306647004009 + ], + [ + 53.4119341193412, + 71.20651682411307 + ], + [ + 51.601116011160116, + 71.47394108343951 + ], + [ + 51.45711457114572, + 72.01555983650576 + ], + [ + 52.479524795247954, + 72.22882222052559 + ], + [ + 52.44352443524437, + 72.77551864940185 + ], + [ + 54.42714427144273, + 73.62687562687785 + ], + [ + 53.50913509135091, + 73.75043240492107 + ], + [ + 55.90315903159032, + 74.62717776144706 + ], + [ + 55.63315633156333, + 75.08078346714004 + ], + [ + 57.868778687786886, + 75.60886175137964 + ], + [ + 61.170011700117016, + 76.2520340206458 + ], + [ + 64.50004500045, + 76.4382154670123 + ], + [ + 66.210062100621, + 76.81057835974536 + ], + [ + 68.15768157681578, + 76.93921281359857 + ], + [ + 68.85248852488525, + 76.54484665902223 + ], + [ + 68.17928179281793, + 76.23341587600913 + ], + [ + 64.6368463684637, + 75.73749620523287 + ], + [ + 61.5840158401584, + 75.26019467909322 + ], + [ + 58.47718477184773, + 74.30897674402064 + ], + [ + 56.98676986769868, + 73.33237042989808 + ], + [ + 55.420754207542075, + 72.3709971432055 + ], + [ + 55.622356223562235, + 71.53995086896947 + ], + [ + 57.5339753397534, + 70.72075250495678 + ], + [ + 56.94356943569437, + 70.63273945758351 + ] + ] + ], + [ + [ + [ + 112.11772117721176, + 73.7876686941944 + ], + [ + 113.02133021330212, + 73.97723525776757 + ], + [ + 113.52893528935289, + 73.33575554710472 + ], + [ + 113.96813968139685, + 73.59471701341454 + ], + [ + 115.56655566555668, + 73.75212496352441 + ], + [ + 118.77778777787779, + 73.58794677900121 + ], + [ + 119.0189901899019, + 73.12080060448156 + ], + [ + 123.20223202232023, + 72.97185544738835 + ], + [ + 123.25623256232564, + 73.73519937749109 + ], + [ + 125.38025380253805, + 73.55917328274455 + ], + [ + 126.97506975069751, + 73.56594351715788 + ], + [ + 128.59148591485916, + 73.0378652329183 + ], + [ + 129.05229052290525, + 72.3980780808588 + ], + [ + 128.45828458284586, + 71.9800161058358 + ], + [ + 129.7146971469715, + 71.19297635528642 + ], + [ + 131.28791287912878, + 70.78676229048673 + ], + [ + 132.25272252722527, + 71.83614862455258 + ], + [ + 133.85833858338583, + 71.38592803606625 + ], + [ + 135.5611556115561, + 71.65504485399606 + ], + [ + 137.4979749797498, + 71.34699918818961 + ], + [ + 138.23238232382323, + 71.62796391634274 + ], + [ + 139.87039870398706, + 71.48748155226619 + ], + [ + 139.14679146791468, + 72.41669622549546 + ], + [ + 140.46800468004682, + 72.84999122794844 + ], + [ + 149.50049500495004, + 72.20004872426895 + ], + [ + 150.350103501035, + 71.60596065449943 + ], + [ + 152.96732967329672, + 70.84261672439669 + ], + [ + 157.00657006570066, + 71.03218328796987 + ], + [ + 158.99738997389977, + 70.86631254484334 + ], + [ + 159.8289982899829, + 70.45332824563033 + ], + [ + 159.710197101971, + 69.72214292899088 + ], + [ + 160.94140941409415, + 69.4377930836311 + ], + [ + 162.28062280622805, + 69.64259267463427 + ], + [ + 164.05184051840519, + 69.66798105368426 + ], + [ + 165.94185941859422, + 69.47164425569775 + ], + [ + 167.83547835478356, + 69.58335312351767 + ], + [ + 169.57789577895778, + 68.69306729816503 + ], + [ + 170.81630816308166, + 69.01296087419479 + ], + [ + 170.00990009900102, + 69.65274802625427 + ], + [ + 170.45270452704528, + 70.09619838032725 + ], + [ + 173.64233642336427, + 69.8169262107775 + ], + [ + 175.72315723157232, + 69.87785832049744 + ], + [ + 178.59958599585997, + 69.40055679435781 + ], + [ + 180, + 68.96387667469816 + ], + [ + 180, + 64.97959372245461 + ], + [ + 179.99279992799927, + 64.9745160466446 + ], + [ + 178.70758707587078, + 64.53445080977826 + ], + [ + 177.4115741157412, + 64.60892338832488 + ], + [ + 178.31158311583118, + 64.0757674282753 + ], + [ + 178.90918909189094, + 63.25149138845262 + ], + [ + 179.36999369993703, + 62.982374570522836 + ], + [ + 179.4851948519485, + 62.5693902713098 + ], + [ + 179.229592295923, + 62.30365857058669 + ], + [ + 177.3647736477365, + 62.521998630416505 + ], + [ + 174.56754567545676, + 61.76881005193377 + ], + [ + 173.67833678336785, + 61.65202350830387 + ], + [ + 172.14832148321483, + 60.94961168792108 + ], + [ + 170.69750697506976, + 60.33690547351489 + ], + [ + 170.33030330303302, + 59.88160720921857 + ], + [ + 168.90108901089013, + 60.573863677981365 + ], + [ + 166.2946629466295, + 59.78851648603532 + ], + [ + 165.84105841058414, + 60.15918682016502 + ], + [ + 164.87624876248765, + 59.730969493522025 + ], + [ + 163.54063540635406, + 59.868066740391924 + ], + [ + 163.2166321663217, + 59.21135400229909 + ], + [ + 162.01782017820182, + 58.24321048119319 + ], + [ + 162.0538205382054, + 57.83868897499684 + ], + [ + 163.19143191431914, + 57.615271239357014 + ], + [ + 163.05823058230584, + 56.159670840491486 + ], + [ + 162.12942129421293, + 56.12243455121819 + ], + [ + 161.70101701017012, + 55.286310601172175 + ], + [ + 162.1186211862119, + 54.854708157322506 + ], + [ + 160.3690036900369, + 54.34355545911623 + ], + [ + 160.02340023400234, + 53.202770960470474 + ], + [ + 158.52938529385295, + 52.959042521590646 + ], + [ + 158.23058230582308, + 51.94350735959145 + ], + [ + 156.79056790567904, + 51.010907569155506 + ], + [ + 156.419764197642, + 51.69977892071162 + ], + [ + 155.99135991359913, + 53.15876443678383 + ], + [ + 155.43335433354332, + 55.381093882958766 + ], + [ + 155.9157591575916, + 56.76729937908769 + ], + [ + 156.75816758167582, + 57.36477256606389 + ], + [ + 156.80856808568086, + 57.83191874058352 + ], + [ + 158.36378363783638, + 58.055336476223346 + ], + [ + 160.14940149401497, + 59.31460007710234 + ], + [ + 161.87381873818737, + 60.34367570792821 + ], + [ + 163.67023670236705, + 61.140870810097596 + ], + [ + 164.47304473044733, + 62.550772126673166 + ], + [ + 163.259832598326, + 62.46614419650655 + ], + [ + 162.65862658626588, + 61.64186815668387 + ], + [ + 160.12060120601205, + 60.54339762312139 + ], + [ + 159.30339303393038, + 61.773887727743755 + ], + [ + 156.72216722167224, + 61.43368344847403 + ], + [ + 154.21654216542169, + 59.75805043117535 + ], + [ + 155.04455044550446, + 59.14534421676916 + ], + [ + 152.8125281252813, + 58.88469019185604 + ], + [ + 151.26451264512644, + 58.78144411705276 + ], + [ + 151.33651336513367, + 59.50416664067555 + ], + [ + 149.78489784897852, + 59.656496914975435 + ], + [ + 148.54648546485464, + 59.163962361405794 + ], + [ + 145.48645486454865, + 59.33660333894568 + ], + [ + 142.19602196021964, + 59.04040558336257 + ], + [ + 138.95958959589598, + 57.088885513720754 + ], + [ + 135.12555125551256, + 54.729458820675944 + ], + [ + 136.70236702367026, + 54.604209484029354 + ], + [ + 137.1919719197192, + 53.97796280079652 + ], + [ + 138.16398163981643, + 53.75454506515669 + ], + [ + 138.8047880478805, + 54.25384985313963 + ], + [ + 139.90279902799028, + 54.18953262621304 + ], + [ + 141.34641346413463, + 53.08936953404722 + ], + [ + 141.3788137881379, + 52.23801255657122 + ], + [ + 140.59760597605975, + 51.23940298060532 + ], + [ + 140.5148051480515, + 50.04614916525625 + ], + [ + 140.06120061200613, + 48.4466812851075 + ], + [ + 138.55638556385566, + 46.999543679258636 + ], + [ + 138.21798217982183, + 46.30728721049584 + ], + [ + 136.8607686076861, + 45.14280689140344 + ], + [ + 135.51435514355143, + 43.988481923931005 + ], + [ + 134.869948699487, + 43.397778971368126 + ], + [ + 133.53793537935383, + 42.81215369461523 + ], + [ + 132.9079290792908, + 42.798613225788586 + ], + [ + 132.27792277922782, + 43.284377544944874 + ], + [ + 130.9351093510935, + 42.55319222830545 + ], + [ + 130.78030780307802, + 42.219758183449045 + ], + [ + 130.639906399064, + 42.39578427819558 + ], + [ + 130.63270632706326, + 42.903551859195176 + ], + [ + 131.1439114391144, + 42.9306327968485 + ], + [ + 131.28791287912878, + 44.11203870197423 + ], + [ + 131.02511025110255, + 44.968473355260215 + ], + [ + 131.88191881918823, + 45.32052554475328 + ], + [ + 133.09873098730986, + 45.14449945000675 + ], + [ + 133.76833768337684, + 46.11772064692266 + ], + [ + 134.1139411394114, + 47.212806063278464 + ], + [ + 134.49914499144995, + 47.57839872159818 + ], + [ + 135.02475024750248, + 48.47883989857081 + ], + [ + 133.37233372333725, + 48.18264214298773 + ], + [ + 132.50832508325084, + 47.78827598841136 + ], + [ + 130.98550985509854, + 47.789968547014695 + ], + [ + 130.58230582305822, + 48.72933857186396 + ], + [ + 129.3978939789398, + 49.44021318526339 + ], + [ + 127.65907659076589, + 49.760106761293144 + ], + [ + 127.28827288272885, + 50.74009819262238 + ], + [ + 126.93906939069393, + 51.35449696563191 + ], + [ + 126.56466564665647, + 51.78440685087824 + ], + [ + 125.94545945459458, + 52.793171778464114 + ], + [ + 125.06705067050672, + 53.160456995387165 + ], + [ + 123.57303573035733, + 53.45834730957358 + ], + [ + 122.24462244622447, + 53.43126637192029 + ], + [ + 121.00261002610029, + 53.25185515996708 + ], + [ + 120.17820178201782, + 52.75424293058748 + ], + [ + 120.72540725407254, + 52.51559216751767 + ], + [ + 120.73980739807399, + 51.96381806283142 + ], + [ + 120.18180181801819, + 51.643924486801694 + ], + [ + 119.27819278192783, + 50.58269024251251 + ], + [ + 119.28899288992892, + 50.14262500564618 + ], + [ + 117.8777787777878, + 49.51130064660336 + ], + [ + 116.67896678966792, + 49.88874121514638 + ], + [ + 115.48735487354872, + 49.80580584358313 + ], + [ + 114.9617496174962, + 50.14093244704284 + ], + [ + 114.36414364143644, + 50.24756363905277 + ], + [ + 112.89892898928991, + 49.54345926006664 + ], + [ + 111.58131581315814, + 49.37758851694011 + ], + [ + 110.66330663306633, + 49.13047496085363 + ], + [ + 109.40329403294032, + 49.29296058677352 + ], + [ + 108.47448474484747, + 49.28280523515352 + ], + [ + 107.86967869678699, + 49.79395793335979 + ], + [ + 106.89046890468904, + 50.274644576706095 + ], + [ + 105.8860588605886, + 50.40666414776598 + ], + [ + 104.62244622446224, + 50.274644576706095 + ], + [ + 103.67563675636757, + 50.0901556889429 + ], + [ + 102.25722257222571, + 50.50991022256923 + ], + [ + 102.06642066420665, + 51.25971368384532 + ], + [ + 100.88920889208896, + 51.516982591551766 + ], + [ + 99.98199981999824, + 51.633769135181694 + ], + [ + 98.86238862388626, + 52.0467534343947 + ], + [ + 97.82557825578255, + 51.010907569155506 + ], + [ + 98.23238232382323, + 50.421897175195966 + ], + [ + 97.26037260372607, + 49.726255589226525 + ], + [ + 95.8131581315813, + 49.97675426251965 + ], + [ + 94.8159481594816, + 50.01399055179294 + ], + [ + 94.14634146341467, + 50.4811367263126 + ], + [ + 93.10593105931059, + 50.494677195139246 + ], + [ + 92.23472234722351, + 50.802722860945664 + ], + [ + 90.71190711907121, + 50.33219156921936 + ], + [ + 88.80388803888042, + 49.47067924012339 + ], + [ + 87.7526775267753, + 49.2980382625835 + ], + [ + 87.36027360273602, + 49.21510289102025 + ], + [ + 86.83106831068312, + 49.8261165468231 + ], + [ + 85.54225542255426, + 49.69240441715988 + ], + [ + 85.1138511385114, + 50.117236626596195 + ], + [ + 84.41544415444156, + 50.31188086597939 + ], + [ + 83.93663936639365, + 50.88904334971559 + ], + [ + 83.38223382233821, + 51.0684545616688 + ], + [ + 81.94581945819459, + 50.812878212565664 + ], + [ + 80.56700567005669, + 51.38834813769856 + ], + [ + 80.03420034200343, + 50.865347529268945 + ], + [ + 77.80217802178021, + 53.404185434266964 + ], + [ + 76.52416524165244, + 54.1776847159897 + ], + [ + 76.89136891368912, + 54.49080805760613 + ], + [ + 74.38574385743857, + 53.54636035694685 + ], + [ + 73.42453424534247, + 53.49050592303689 + ], + [ + 73.50733507335073, + 54.035509793309814 + ], + [ + 72.22572225722257, + 54.37740663118288 + ], + [ + 71.18171181711818, + 54.13367819230308 + ], + [ + 70.86490864908649, + 55.16952405754225 + ], + [ + 69.06849068490686, + 55.38447900016541 + ], + [ + 68.16848168481687, + 54.969802142349096 + ], + [ + 65.66645666456665, + 54.60082436682271 + ], + [ + 65.17685176851771, + 54.35371081073623 + ], + [ + 61.436414364143644, + 54.00673629705318 + ], + [ + 60.97920979209792, + 53.664839459180115 + ], + [ + 61.69921699216994, + 52.979353224830646 + ], + [ + 60.741607416074174, + 52.72039175852083 + ], + [ + 60.92880928809288, + 52.44788982338437 + ], + [ + 59.96759967599678, + 51.960432945624774 + ], + [ + 61.587615876158765, + 51.27325415267197 + ], + [ + 61.33921339213393, + 50.79933774373902 + ], + [ + 59.93159931599317, + 50.8416517088223 + ], + [ + 59.643596435964355, + 50.54545395323922 + ], + [ + 58.361983619836195, + 51.06337688585879 + ], + [ + 56.777967779677795, + 51.043066182618816 + ], + [ + 55.715957159571616, + 50.621619090389146 + ], + [ + 54.53154531545317, + 51.02614059658549 + ], + [ + 52.328323283232834, + 51.718397065348285 + ], + [ + 50.76590765907659, + 51.6930086862983 + ], + [ + 48.70308703087031, + 50.60469350435582 + ], + [ + 48.57708577085771, + 49.875200746319734 + ], + [ + 47.55107551075511, + 50.454055788659275 + ], + [ + 46.7518675186752, + 49.3555852550968 + ], + [ + 47.043470434704346, + 49.15247822269697 + ], + [ + 46.46746467464675, + 48.39421196840422 + ], + [ + 47.31347313473137, + 47.715495968468076 + ], + [ + 48.05868058680588, + 47.74426946472474 + ], + [ + 48.69588695886961, + 47.07570881640859 + ], + [ + 48.59148591485916, + 46.56117100099564 + ], + [ + 49.102691026910264, + 46.398685375075786 + ], + [ + 48.64548645486457, + 45.80628986390957 + ], + [ + 47.67707677076771, + 45.642111679386375 + ], + [ + 46.683466834668366, + 44.609650931353855 + ], + [ + 47.59067590675909, + 43.66012555488459 + ], + [ + 47.493474934749344, + 42.986487230758456 + ], + [ + 48.584285842858435, + 41.80846644283936 + ], + [ + 47.98667986679868, + 41.40563749524634 + ], + [ + 47.813878138781405, + 41.15175370474654 + ], + [ + 47.37467374673747, + 41.21945604887982 + ], + [ + 46.6870668706687, + 41.82708458747602 + ], + [ + 46.406264062640645, + 41.860935759542656 + ], + [ + 45.77625776257764, + 42.092816288199145 + ], + [ + 45.47025470254704, + 42.50241547020548 + ], + [ + 44.537845378453795, + 42.71229273701866 + ], + [ + 43.92943929439295, + 42.55488478690879 + ], + [ + 43.75663756637567, + 42.74106623327529 + ], + [ + 42.39582395823959, + 43.220060318018255 + ], + [ + 40.92340923409236, + 43.38254594393814 + ], + [ + 40.07740077400774, + 43.55349436287466 + ], + [ + 39.954999549995506, + 43.43501526064142 + ], + [ + 38.680586805868074, + 44.2796020037041 + ], + [ + 37.53937539375394, + 44.65704257224715 + ], + [ + 36.67536675366753, + 45.24436040760335 + ], + [ + 37.40257402574028, + 45.4051534749199 + ], + [ + 38.23418234182341, + 46.24127742496589 + ], + [ + 37.67257672576727, + 46.6373361381456 + ], + [ + 39.148591485914864, + 47.04524276154859 + ], + [ + 39.11979119791198, + 47.263582821378435 + ], + [ + 38.22338223382235, + 47.10278975406189 + ], + [ + 38.2557825578256, + 47.54624010813487 + ], + [ + 38.77058770587706, + 47.82551227768465 + ], + [ + 39.73899738997392, + 47.89829229762793 + ], + [ + 39.89739897398974, + 48.231726342484336 + ], + [ + 39.67419674196742, + 48.78350044717058 + ], + [ + 40.081000810008106, + 49.3081936142035 + ], + [ + 40.070200702007014, + 49.601006252579936 + ], + [ + 38.59418594185942, + 49.92597750441968 + ], + [ + 38.010980109801096, + 49.915822152799706 + ], + [ + 37.39177391773919, + 50.38466088592267 + ], + [ + 36.62496624966249, + 50.22556037720946 + ], + [ + 35.35775357753579, + 50.57761256670253 + ], + [ + 35.379353793537945, + 50.77394936468903 + ], + [ + 35.0229502295023, + 51.20724436714201 + ], + [ + 34.223742237422385, + 51.25632856663864 + ], + [ + 34.1409414094141, + 51.5660667910484 + ], + [ + 34.3929439294393, + 51.769173823448256 + ], + [ + 33.75213752137523, + 52.33448839696115 + ], + [ + 32.715327153271545, + 52.23801255657122 + ], + [ + 32.412924129241304, + 52.28878931467116 + ], + [ + 32.1609216092161, + 52.06198646182469 + ], + [ + 31.786517865178666, + 52.10091530970132 + ], + [ + 31.541715417154165, + 52.74239502036414 + ], + [ + 31.30411304113042, + 53.074136506617236 + ], + [ + 31.498514985149853, + 53.16722722980049 + ], + [ + 32.304923049230496, + 53.13337605773384 + ], + [ + 32.69372693726939, + 53.35171611756368 + ], + [ + 32.405724057240576, + 53.61744781828679 + ], + [ + 31.732517325173262, + 53.793473913033324 + ], + [ + 31.79011790117903, + 53.97457768358987 + ], + [ + 31.383313833138345, + 54.15737401274973 + ], + [ + 30.756907569075707, + 54.812394192239196 + ], + [ + 30.972909729097296, + 55.08151101016898 + ], + [ + 30.87570875708758, + 55.550349743291974 + ], + [ + 29.89649896498966, + 55.78900050636179 + ], + [ + 29.370893708937103, + 55.67052140412852 + ], + [ + 29.230492304923047, + 55.917634960215 + ], + [ + 28.175681756817568, + 56.169826192111486 + ], + [ + 27.855278552785535, + 56.75883658607103 + ], + [ + 27.768877688776882, + 57.244600905227315 + ], + [ + 27.286472864728665, + 57.47478887528047 + ], + [ + 27.718477184771842, + 57.79129733410355 + ], + [ + 27.419674196741965, + 58.72389712453949 + ], + [ + 28.132481324813256, + 59.30105960827569 + ], + [ + 27.981279812798135, + 59.47539314441889 + ], + [ + 29.118891188911903, + 60.02885980770847 + ], + [ + 28.071280712807123, + 60.50277621664142 + ], + [ + 30.209702097020966, + 61.78065796215711 + ], + [ + 31.138511385113873, + 62.35782044589331 + ], + [ + 31.516515165151645, + 62.867280585496246 + ], + [ + 30.03690036900369, + 63.552766819845715 + ], + [ + 30.443704437044374, + 64.20440188212854 + ], + [ + 29.54369543695438, + 64.94912766759461 + ], + [ + 30.216902169021694, + 65.80556232088063 + ], + [ + 29.054090540905406, + 66.94465426092307 + ], + [ + 29.975699756997585, + 67.69784283940581 + ], + [ + 28.44568445684459, + 68.36471092911862 + ], + [ + 28.593285932859345, + 69.06543019089807 + ], + [ + 29.399693996939988, + 69.15682835547801 + ], + [ + 31.10251102511026, + 69.55796474446768 + ], + [ + 32.13212132121322, + 69.90663181675407 + ], + [ + 33.77373773737739, + 69.30069583676121 + ], + [ + 36.51336513365135, + 69.06373763229473 + ], + [ + 40.29340293402936, + 67.93310848526895 + ], + [ + 41.060210602106025, + 67.45749951773266 + ], + [ + 41.12501125011252, + 66.79232398662319 + ], + [ + 40.01620016200164, + 66.26593826098693 + ], + [ + 38.3817838178382, + 66.00020656026379 + ], + [ + 33.91773917739178, + 66.76016537315988 + ], + [ + 33.183331833318334, + 66.63322347790998 + ], + [ + 34.81414814148141, + 65.90034560266722 + ], + [ + 34.87894878948791, + 65.43658454535424 + ], + [ + 34.943749437494375, + 64.41427914894172 + ], + [ + 36.23256232562326, + 64.10961860034195 + ], + [ + 37.013770137701385, + 63.85065713403213 + ], + [ + 37.14337143371435, + 64.33472889458511 + ], + [ + 36.53856538565387, + 64.76463877983144 + ], + [ + 37.1757717577176, + 65.1437719069778 + ], + [ + 39.5949959499595, + 64.52091034095162 + ], + [ + 40.43380433804339, + 64.76463877983144 + ], + [ + 39.76419764197644, + 65.49751665507418 + ], + [ + 42.09342093420935, + 66.47581552780008 + ], + [ + 43.0150301503015, + 66.41826853528681 + ], + [ + 43.951039510395105, + 66.06960146300042 + ], + [ + 44.53064530645307, + 66.7567802559532 + ], + [ + 43.699036990369905, + 67.35256088432607 + ], + [ + 44.18864188641888, + 67.95003407130227 + ], + [ + 43.45423454234543, + 68.57120307872512 + ], + [ + 46.25146251462516, + 68.24961694409205 + ], + [ + 46.82026820268203, + 67.68938004638915 + ], + [ + 45.55665556655566, + 67.5658232683459 + ], + [ + 45.560255602556026, + 67.010664046453 + ], + [ + 46.34866348663488, + 66.6670746499766 + ], + [ + 47.89307893078933, + 66.8837221512031 + ], + [ + 48.1378813788138, + 67.52181674465928 + ], + [ + 50.225902259022604, + 67.9991182707989 + ], + [ + 53.7179371793718, + 68.85724548268823 + ], + [ + 54.47034470344704, + 68.8081612831916 + ], + [ + 53.48753487534876, + 68.20053274459542 + ], + [ + 54.725947259472605, + 68.09728666979217 + ], + [ + 55.44235442354423, + 68.43918350766523 + ], + [ + 57.31797317973181, + 68.46626444531853 + ], + [ + 58.80118801188013, + 68.88094130313488 + ], + [ + 59.94239942399426, + 68.27839044034869 + ], + [ + 61.07641076410766, + 68.94018085425151 + ], + [ + 60.028800288002884, + 69.52072845519439 + ], + [ + 60.55080550805508, + 69.85077738284411 + ], + [ + 63.50283502835029, + 69.54780939284768 + ], + [ + 64.8888488884889, + 69.23468605123128 + ], + [ + 68.51048510485106, + 68.09220899398215 + ], + [ + 69.180091800918, + 68.61520960241177 + ], + [ + 68.1648816488165, + 69.14498044525467 + ], + [ + 68.13608136081362, + 69.35655027067116 + ], + [ + 66.93006930069302, + 69.45471866966443 + ], + [ + 67.26127261272615, + 69.92863507859741 + ], + [ + 66.7248672486725, + 70.70890459473344 + ], + [ + 66.69606696066961, + 71.0287981707632 + ], + [ + 68.53928539285394, + 71.93431702354582 + ], + [ + 69.19809198091983, + 72.84322099353511 + ], + [ + 69.93969939699397, + 73.03955779152164 + ], + [ + 72.58932589325894, + 72.77551864940185 + ], + [ + 72.79452794527947, + 72.22035942750895 + ], + [ + 71.84771847718477, + 71.4096238565129 + ], + [ + 72.47052470524707, + 71.08973028048317 + ], + [ + 72.7909279092791, + 70.39070357730702 + ], + [ + 72.56412564125642, + 69.02142366721145 + ], + [ + 73.66933669336694, + 68.40871745280526 + ], + [ + 73.23733237332374, + 67.74015680448912 + ], + [ + 71.2789127891279, + 66.32010013629355 + ], + [ + 72.42372423724237, + 66.17284753780368 + ], + [ + 72.81972819728199, + 66.53336252031337 + ], + [ + 73.92133921339214, + 66.78893886941651 + ], + [ + 74.18774187741877, + 67.2848585401928 + ], + [ + 75.05175051750518, + 67.76046750772909 + ], + [ + 74.46854468544686, + 68.32916719844866 + ], + [ + 74.93654936549368, + 68.98926505374814 + ], + [ + 73.84213842138422, + 69.0722004253114 + ], + [ + 73.60093600936011, + 69.62735964720429 + ], + [ + 74.40014400144003, + 70.63104689898017 + ], + [ + 73.10053100531007, + 71.44686014578622 + ], + [ + 74.88974889748897, + 72.12049846991235 + ], + [ + 74.65934659346595, + 72.83306564191514 + ], + [ + 75.15975159751599, + 72.85506890375845 + ], + [ + 75.68175681756819, + 72.29990968186556 + ], + [ + 75.28935289352896, + 71.3351512779663 + ], + [ + 76.35856358563586, + 71.15235494880645 + ], + [ + 75.90135901359014, + 71.87338491382587 + ], + [ + 77.57537575375756, + 72.26775106840225 + ], + [ + 79.6525965259653, + 72.32022038510553 + ], + [ + 81.49941499414996, + 71.74982813578265 + ], + [ + 80.61020610206106, + 72.58256696862199 + ], + [ + 80.50940509405098, + 73.64887888872116 + ], + [ + 82.24822248222483, + 73.85029336251768 + ], + [ + 84.65664656646567, + 73.80628683883103 + ], + [ + 86.8238682386824, + 73.9366138512876 + ], + [ + 86.01026010260102, + 74.45961445971719 + ], + [ + 87.16587165871658, + 75.11632719781002 + ], + [ + 88.31428314283141, + 75.14340813546332 + ], + [ + 90.25830258302585, + 75.6393278062396 + ], + [ + 92.90072900729007, + 75.77303993590283 + ], + [ + 93.23553235532358, + 76.04723442964263 + ], + [ + 95.85995859958598, + 76.14032515282588 + ], + [ + 96.67716677166771, + 75.91521485858271 + ], + [ + 98.9235892358924, + 76.44667826002896 + ], + [ + 100.75960759607597, + 76.42975267399567 + ], + [ + 101.03681036810372, + 76.8613551178453 + ], + [ + 101.99081990819911, + 77.28787988588499 + ], + [ + 104.35244352443527, + 77.69747906789132 + ], + [ + 106.06606066060664, + 77.37420037465492 + ], + [ + 104.70524705247055, + 77.12708681856844 + ], + [ + 106.969669696697, + 76.97475654426856 + ], + [ + 107.23967239672396, + 76.48052943209561 + ], + [ + 108.15408154081541, + 76.7225653123721 + ], + [ + 111.07731077310774, + 76.71071740214876 + ], + [ + 113.33093330933309, + 76.22156796578582 + ], + [ + 114.13374133741337, + 75.84751251444945 + ], + [ + 113.88533885338853, + 75.32789702322651 + ], + [ + 112.78012780127801, + 75.0316992676434 + ], + [ + 110.1521015210152, + 74.47654004575051 + ], + [ + 109.39969399693996, + 74.1803422901674 + ], + [ + 110.6417064170642, + 74.03985992609086 + ], + [ + 112.11772117721176, + 73.7876686941944 + ] + ] + ], + [ + [ + [ + 99.43839438394383, + 77.92089680353115 + ], + [ + 101.26361263612637, + 79.23432227971679 + ], + [ + 102.08802088020883, + 79.3460311475367 + ], + [ + 102.8368283682837, + 79.28171392061009 + ], + [ + 105.37125371253711, + 78.71301422989055 + ], + [ + 105.0760507605076, + 78.30680016509086 + ], + [ + 99.43839438394383, + 77.92089680353115 + ] + ] + ], + [ + [ + [ + 47.587075870758724, + 80.00951412004287 + ], + [ + 46.50346503465036, + 80.24647232450934 + ], + [ + 47.07227072270723, + 80.55959566612574 + ], + [ + 44.847448474484764, + 80.59006172098574 + ], + [ + 46.798667986679874, + 80.77116549154226 + ], + [ + 48.317883178831806, + 80.78470596036891 + ], + [ + 48.5230852308523, + 80.51389658383579 + ], + [ + 49.095490954909565, + 80.75423990550894 + ], + [ + 50.03870038700387, + 80.91841809003213 + ], + [ + 51.52191521915219, + 80.70007803020232 + ], + [ + 51.13671136711369, + 80.54774775590244 + ], + [ + 49.7938979389794, + 80.41572818484255 + ], + [ + 48.893888938889404, + 80.3395630476926 + ], + [ + 48.75348753487535, + 80.1753848631694 + ], + [ + 47.587075870758724, + 80.00951412004287 + ] + ] + ], + [ + [ + [ + 97.75717757177574, + 78.75702075357717 + ], + [ + 94.97434974349744, + 79.04475571614361 + ], + [ + 93.31113311133112, + 79.42727396049665 + ], + [ + 92.54432544325442, + 80.14322624970609 + ], + [ + 91.17991179911797, + 80.34125560629593 + ], + [ + 93.77913779137793, + 81.02504928204206 + ], + [ + 95.93915939159393, + 81.25015957628523 + ], + [ + 97.88317883178831, + 80.74746967109562 + ], + [ + 100.1872018720187, + 79.77932614998971 + ], + [ + 99.93879938799387, + 78.88057753162039 + ], + [ + 97.75717757177574, + 78.75702075357717 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.22667175476665236, + "skewed": 0.8079450343151731, + "clumpy": 0.5228702487159924, + "sparse": 0.011949573275484626, + "striated": 0.2227478520991626, + "convex": 0.002024881670328993, + "skinny": 0.4879390794168317, + "stringy": 0.13611120078860628, + "monotonic": 0.008164698757193722, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 90.52733163067008, + -85.28471424748072 + ], + "drag": [ + 90.52733163067008, + -85.28471424748072 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 257 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Mexico (5 Countries)", + "timestamp": 1522412429258, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 484, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.52677526775267, + 24.992896718735835 + ], + [ + -97.70317703177031, + 24.271866753716395 + ], + [ + -97.77517775177752, + 22.93305289848078 + ], + [ + -97.87237872378724, + 22.44390346211783 + ], + [ + -97.69957699576996, + 21.898899591844923 + ], + [ + -97.38997389973899, + 21.411442714085297 + ], + [ + -97.18837188371883, + 20.636250873759238 + ], + [ + -96.5259652596526, + 19.89152508829315 + ], + [ + -96.2919629196292, + 19.321132838970257 + ], + [ + -95.89955899558996, + 18.828598285400645 + ], + [ + -94.83754837548375, + 18.562866584677522 + ], + [ + -94.42714427144271, + 18.144804609654514 + ], + [ + -93.54873548735488, + 18.4240767792043 + ], + [ + -92.78552785527854, + 18.525630295404213 + ], + [ + -92.03672036720367, + 18.705041507357407 + ], + [ + -91.40671406714067, + 18.87598992629394 + ], + [ + -90.7731077310773, + 19.283896549696962 + ], + [ + -90.53190531905318, + 19.867829267846503 + ], + [ + -90.45270452704527, + 20.70733833509918 + ], + [ + -90.279902799028, + 21.000150973475613 + ], + [ + -89.6030960309603, + 21.262497556992074 + ], + [ + -88.54468544685446, + 21.494378085648563 + ], + [ + -87.6590765907659, + 21.458834354978592 + ], + [ + -87.05067050670506, + 21.543462285145196 + ], + [ + -86.8130681306813, + 21.331892459728692 + ], + [ + -86.84546845468455, + 20.849513257779066 + ], + [ + -87.38187381873819, + 20.25542518800954 + ], + [ + -87.61947619476194, + 19.646104090810013 + ], + [ + -87.43587435874359, + 19.47177055466682 + ], + [ + -87.58707587075871, + 19.04016811081715 + ], + [ + -87.83547835478355, + 18.25989859468109 + ], + [ + -88.09108091080911, + 18.517167502387565 + ], + [ + -88.29988299882999, + 18.50024191635424 + ], + [ + -88.49068490684907, + 18.48670144752758 + ], + [ + -88.8470884708847, + 17.882458026138053 + ], + [ + -89.03069030690307, + 18.00093712837129 + ], + [ + -89.14949149491494, + 17.955238046081334 + ], + [ + -89.14229142291423, + 17.80798544759145 + ], + [ + -90.06750067500674, + 17.819833357814773 + ], + [ + -90.99990999909998, + 17.818140799211434 + ], + [ + -91.00351003510035, + 17.25451878430188 + ], + [ + -91.45351453514535, + 17.25282622569854 + ], + [ + -91.08271082710827, + 16.917699622238814 + ], + [ + -90.71190711907118, + 16.68751165218565 + ], + [ + -90.60030600306003, + 16.47086415095916 + ], + [ + -90.43830438304383, + 16.409932041239202 + ], + [ + -90.46350463504635, + 16.069727761969474 + ], + [ + -91.74871748717487, + 16.066342644762813 + ], + [ + -92.22752227522275, + 15.252221956560106 + ], + [ + -92.08712087120871, + 15.06434795159025 + ], + [ + -92.20232202322023, + 14.830774864330436 + ], + [ + -92.22752227522275, + 14.539654784557328 + ], + [ + -93.35793357933579, + 15.616122056276495 + ], + [ + -93.87633876338764, + 15.939400749512899 + ], + [ + -94.68994689946899, + 16.201747333029374 + ], + [ + -95.25155251552515, + 16.128967313086093 + ], + [ + -96.05436054360543, + 15.751526744543057 + ], + [ + -96.55836558365583, + 15.65335834554979 + ], + [ + -97.26397263972639, + 15.91739748766959 + ], + [ + -98.01278012780128, + 16.10696405124277 + ], + [ + -98.94878948789487, + 16.56564743274575 + ], + [ + -99.69759697596976, + 16.70612979682231 + ], + [ + -100.8280082800828, + 17.171583412738613 + ], + [ + -101.66681666816667, + 17.64888493887824 + ], + [ + -101.91881918819188, + 17.9163091982047 + ], + [ + -102.47682476824768, + 17.97554874932132 + ], + [ + -103.49923499234993, + 18.2920572081444 + ], + [ + -103.91683916839168, + 18.74904803104404 + ], + [ + -104.99324993249932, + 19.31605516316027 + ], + [ + -105.49365493654936, + 19.947379522203107 + ], + [ + -105.73125731257312, + 20.434836399962734 + ], + [ + -105.39645396453965, + 20.531312240352648 + ], + [ + -105.50085500855008, + 20.817354644315756 + ], + [ + -105.27045270452705, + 21.076316110625555 + ], + [ + -105.26685266852668, + 21.421598065705282 + ], + [ + -105.60165601656016, + 21.8718186541916 + ], + [ + -105.69165691656916, + 22.269569925974622 + ], + [ + -106.030060300603, + 22.773952389767572 + ], + [ + -106.90846908469085, + 23.76748428992346 + ], + [ + -107.91647916479164, + 24.549446364662842 + ], + [ + -108.40248402484025, + 25.17230793068903 + ], + [ + -109.25929259292593, + 25.580214554092038 + ], + [ + -109.44289442894429, + 25.82563555157519 + ], + [ + -109.29169291692916, + 26.443419441791363 + ], + [ + -109.80289802898028, + 26.67699252905119 + ], + [ + -110.39330393303933, + 27.162756848207465 + ], + [ + -110.64170641706417, + 27.860090992780258 + ], + [ + -111.1781117811178, + 27.9413338057402 + ], + [ + -111.76131761317613, + 28.467719531376446 + ], + [ + -112.22932229322294, + 28.955176409136072 + ], + [ + -112.27252272522725, + 29.266607192149166 + ], + [ + -112.8089280892809, + 30.02148832923524 + ], + [ + -113.16533165331653, + 30.786524817941313 + ], + [ + -113.14733147331474, + 31.170735620897673 + ], + [ + -113.87093870938709, + 31.566794334077358 + ], + [ + -114.20574205742057, + 31.524480368994062 + ], + [ + -114.77814778147781, + 31.800367421337185 + ], + [ + -114.93654936549365, + 31.3941533565375 + ], + [ + -114.7709477094771, + 30.913466713191212 + ], + [ + -114.67374673746737, + 30.1619706933118 + ], + [ + -114.33174331743317, + 29.750678952702117 + ], + [ + -113.590135901359, + 29.061807601145986 + ], + [ + -113.42453424534246, + 28.826541955282835 + ], + [ + -113.27333273332734, + 28.755454493942892 + ], + [ + -113.14013140131401, + 28.41186509746649 + ], + [ + -112.96372963729637, + 28.42540556629315 + ], + [ + -112.7621276212762, + 27.780540738423653 + ], + [ + -112.45612456124562, + 27.526656947923854 + ], + [ + -112.24372243722436, + 27.171219641224127 + ], + [ + -111.61731617316173, + 26.66345206022453 + ], + [ + -111.28611286112861, + 25.732544828391923 + ], + [ + -110.98730987309872, + 25.29417215012893 + ], + [ + -110.710107101071, + 24.825333417005965 + ], + [ + -110.65610656106561, + 24.298947691369705 + ], + [ + -110.17370173701737, + 24.26509651930307 + ], + [ + -109.77049770497705, + 23.811490813610092 + ], + [ + -109.41049410494105, + 23.364655342330437 + ], + [ + -109.43209432094321, + 23.185244130377242 + ], + [ + -109.85329853298532, + 22.817958913454206 + ], + [ + -110.02970029700296, + 22.82303658926419 + ], + [ + -110.2961029610296, + 23.430665127860394 + ], + [ + -110.94770947709476, + 24.001057377183272 + ], + [ + -111.67131671316713, + 24.485129137736223 + ], + [ + -112.18252182521825, + 24.739012928236036 + ], + [ + -112.15012150121501, + 25.470198244875462 + ], + [ + -112.30132301323013, + 26.011816997941708 + ], + [ + -112.77652776527765, + 26.321555222351463 + ], + [ + -113.4641346413464, + 26.76839069363112 + ], + [ + -113.59733597335973, + 26.63975623977788 + ], + [ + -113.84933849338493, + 26.900410264691004 + ], + [ + -114.4649446494465, + 27.142446144967494 + ], + [ + -115.05535055350553, + 27.722993745910372 + ], + [ + -114.98334983349834, + 27.797466324456977 + ], + [ + -114.56934569345694, + 27.74161189054702 + ], + [ + -114.19854198541985, + 28.115667341883395 + ], + [ + -114.16254162541625, + 28.565887930369712 + ], + [ + -114.9329493294933, + 29.280147660975814 + ], + [ + -115.51975519755197, + 29.556034713318937 + ], + [ + -115.8869588695887, + 30.18058883794845 + ], + [ + -116.25776257762578, + 30.83730157604127 + ], + [ + -116.72216722167221, + 31.636189236813976 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -97.14157141571415, + 25.869642075261808 + ] + ] + ] + }, + "countryRef": { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.8787241571431588, + "skewed": 0.05712961897832547, + "clumpy": 0.33788706927057865, + "sparse": 0.022352408509591637, + "striated": 0.32115977486326663, + "convex": 0.9069499453295773, + "skinny": 0.2998506758140984, + "stringy": 0.11404819845983405, + "monotonic": 0.0841135553231045, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -103.705360918679, + -88.21165080741547 + ], + "drag": [ + -103.705360918679, + -88.21165080741547 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 258 + }, + { + "attrs": { + "name": "Selected Mexico (5 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.88\",\"payload\":{\"numVal\":0.8787241571431588},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.06\",\"payload\":{\"numVal\":0.05712961897832547},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.34\",\"payload\":{\"numVal\":0.33788706927057865},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.02\",\"payload\":{\"numVal\":0.022352408509591637},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.32\",\"payload\":{\"numVal\":0.32115977486326663},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.91\",\"payload\":{\"numVal\":0.9069499453295773},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.3\",\"payload\":{\"numVal\":0.2998506758140984},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.11\",\"payload\":{\"numVal\":0.11404819845983405},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.08\",\"payload\":{\"numVal\":0.0841135553231045},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = France\",\"text\":\"France\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Russia\",\"text\":\"Russia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 259 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Mexico (5 Countries)", + "timestamp": 1522412429258, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 364, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 53.92313923139233, + 37.1996293659663 + ], + [ + 54.801548015480165, + 37.392581046746145 + ], + [ + 55.51075510755109, + 37.96466585467236 + ], + [ + 56.18036180361804, + 37.93589235841573 + ], + [ + 56.619566195661974, + 38.12207380478225 + ], + [ + 57.32877328773287, + 38.02898308159898 + ], + [ + 58.437584375843755, + 37.522908059202706 + ], + [ + 59.233192331923334, + 37.41289174998613 + ], + [ + 60.3780037800378, + 36.527683600443495 + ], + [ + 61.12321123211234, + 36.49213986977351 + ], + [ + 61.20961209612096, + 35.64924568531417 + ], + [ + 60.80280802808028, + 34.40352255326181 + ], + [ + 60.52920529205292, + 33.675722353829045 + ], + [ + 60.96480964809649, + 33.52846975533916 + ], + [ + 60.53640536405365, + 32.98177332646293 + ], + [ + 60.86400864008641, + 32.18288566569022 + ], + [ + 60.943209432094335, + 31.54817618944071 + ], + [ + 61.69921699216994, + 31.378920329107515 + ], + [ + 61.7820178201782, + 30.73574805984134 + ], + [ + 60.8748087480875, + 29.828536648455383 + ], + [ + 61.36801368013681, + 29.30384348142246 + ], + [ + 61.77121771217713, + 28.699600060032935 + ], + [ + 62.728827288272896, + 28.259534823166618 + ], + [ + 62.754027540275416, + 27.37940434943397 + ], + [ + 63.2328323283233, + 27.216918723514098 + ], + [ + 63.315633156331586, + 26.756542783407795 + ], + [ + 61.87561875618758, + 26.24031240939152 + ], + [ + 61.49761497614978, + 25.07752464890244 + ], + [ + 59.6147961479615, + 25.380492638898858 + ], + [ + 58.52398523985241, + 25.610680608952023 + ], + [ + 57.39717397173973, + 25.739315062805247 + ], + [ + 56.972369723697255, + 26.96642005022096 + ], + [ + 56.493564935649374, + 27.144138703570817 + ], + [ + 55.723157231572316, + 26.964727491617623 + ], + [ + 54.71514715147151, + 26.480655731064672 + ], + [ + 53.494734947349485, + 26.812397217317738 + ], + [ + 52.48312483124832, + 27.580818823230473 + ], + [ + 51.52191521915219, + 27.865168668590258 + ], + [ + 50.85230852308524, + 28.81469404505951 + ], + [ + 50.11430114301143, + 30.14843022448514 + ], + [ + 49.57789577895781, + 29.98594459856527 + ], + [ + 48.94068940689408, + 30.317686084818334 + ], + [ + 48.56628566285664, + 29.92670504744865 + ], + [ + 48.015480154801566, + 30.453090773084895 + ], + [ + 48.00468004680047, + 30.984554174531155 + ], + [ + 47.68427684276844, + 30.984554174531155 + ], + [ + 47.84987849878499, + 31.708969256757257 + ], + [ + 47.33507335073352, + 32.46892806965333 + ], + [ + 46.111061110611104, + 33.0173170571329 + ], + [ + 45.416254162541634, + 33.96853499220549 + ], + [ + 45.65025650256504, + 34.74880450834155 + ], + [ + 46.15066150661508, + 35.09408646342128 + ], + [ + 46.07506075060752, + 35.67801918157082 + ], + [ + 45.419854198542, + 35.97760205436059 + ], + [ + 44.771847718477204, + 37.170855869709655 + ], + [ + 44.22464224642246, + 37.9714360890857 + ], + [ + 44.42264422644226, + 38.281174313495455 + ], + [ + 44.109441094410954, + 39.42872904655455 + ], + [ + 44.79344793447936, + 39.713078891914336 + ], + [ + 44.95184951849518, + 39.3356383233713 + ], + [ + 45.459454594545946, + 38.87356982466166 + ], + [ + 46.14346143461435, + 38.74155025360176 + ], + [ + 46.507065070650725, + 38.770323749858406 + ], + [ + 47.68427684276844, + 39.508279300911155 + ], + [ + 48.05868058680588, + 39.582751879457774 + ], + [ + 48.35388353883539, + 39.288246682478004 + ], + [ + 48.0118801188012, + 38.79401957030505 + ], + [ + 48.634686346863475, + 38.271018961875455 + ], + [ + 48.88308883088831, + 38.32010316137209 + ], + [ + 49.19989199892001, + 37.582147610319325 + ], + [ + 50.14670146701468, + 37.3739629021095 + ], + [ + 50.84150841508415, + 36.87296555552322 + ], + [ + 52.263522635226366, + 36.70032457798335 + ], + [ + 53.82593825938261, + 36.96436372010315 + ], + [ + 53.92313923139233, + 37.1996293659663 + ] + ] + ] + }, + "countryRef": { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.3138113586061122, + "skewed": 0.6831823359921632, + "clumpy": 0.3446204628340932, + "sparse": 0.3583130640179337, + "striated": 0.27864774845238505, + "convex": 0.7121681702552329, + "skinny": 0.5890337186562513, + "stringy": 0.5065076800458095, + "monotonic": 0.0965456686570012, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 53.285074947166564, + -87.81579256981577 + ], + "drag": [ + 53.285074947166564, + -87.81579256981577 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 260 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Turkey (6 Countries)", + "timestamp": 1522412434737, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 792, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 38.34938349383495, + 40.9486466723467 + ], + [ + 39.51219512195124, + 41.10266950524992 + ], + [ + 40.372603726037255, + 41.012963899273316 + ], + [ + 41.55341553415536, + 41.535964507702914 + ], + [ + 42.619026190261906, + 41.58335614859621 + ], + [ + 43.5838358383584, + 41.09251415362992 + ], + [ + 43.75303753037531, + 40.74046196413687 + ], + [ + 43.65583655836559, + 40.25300508637724 + ], + [ + 44.4010440104401, + 40.004198971687444 + ], + [ + 44.79344793447936, + 39.713078891914336 + ], + [ + 44.109441094410954, + 39.42872904655455 + ], + [ + 44.42264422644226, + 38.281174313495455 + ], + [ + 44.22464224642246, + 37.9714360890857 + ], + [ + 44.771847718477204, + 37.170855869709655 + ], + [ + 44.29304293042932, + 37.001600009376446 + ], + [ + 43.943839438394406, + 37.25548379987626 + ], + [ + 42.777427774277754, + 37.38581081233282 + ], + [ + 42.34902349023491, + 37.230095420826274 + ], + [ + 41.211412114121146, + 37.07438002931973 + ], + [ + 40.675006750067496, + 37.09130561535305 + ], + [ + 39.5229952299523, + 36.71555760541334 + ], + [ + 38.698586985869866, + 36.712172488206676 + ], + [ + 38.169381693816945, + 36.90173905177987 + ], + [ + 37.06777067770679, + 36.622466882230086 + ], + [ + 36.74016740167403, + 36.817111121613266 + ], + [ + 36.686166861668625, + 36.260259341117035 + ], + [ + 36.41616416164163, + 36.04022672268387 + ], + [ + 36.149761497614975, + 35.82188666285404 + ], + [ + 35.782557825578266, + 36.27549236854702 + ], + [ + 36.16056160561607, + 36.65124037848672 + ], + [ + 35.55215552155522, + 36.56491988971679 + ], + [ + 34.71334713347133, + 36.79510785976994 + ], + [ + 34.02574025740259, + 36.21963793463706 + ], + [ + 32.51012510125102, + 36.10792906681715 + ], + [ + 31.700117001170014, + 36.644470144073395 + ], + [ + 30.620106201062015, + 36.67832131614004 + ], + [ + 30.38970389703897, + 36.2636444583237 + ], + [ + 29.698496984969864, + 36.14516535609046 + ], + [ + 28.733687336873373, + 36.676628757536704 + ], + [ + 27.642876428764282, + 36.65801061290006 + ], + [ + 27.048870488704893, + 37.65323507165928 + ], + [ + 26.31806318063181, + 38.208394293552175 + ], + [ + 26.80406804068042, + 38.98527869248157 + ], + [ + 26.170461704617054, + 39.46427277722452 + ], + [ + 27.279272792727937, + 40.420568388107114 + ], + [ + 28.820088200882026, + 40.45949723598375 + ], + [ + 29.24129241292414, + 41.21945604887982 + ], + [ + 31.145711457114572, + 41.08743647781992 + ], + [ + 32.34812348123481, + 41.73568642289608 + ], + [ + 33.51453514535146, + 42.01834370965253 + ], + [ + 35.16695166951669, + 42.04034697149585 + ], + [ + 36.912969129691305, + 41.334550033906396 + ], + [ + 38.34938349383495, + 40.9486466723467 + ] + ] + ], + [ + [ + [ + 26.357663576635787, + 40.15145157017733 + ], + [ + 26.044460444604454, + 40.618597744696956 + ], + [ + 26.055260552605546, + 40.823397335700136 + ], + [ + 26.29286292862929, + 40.936798762123374 + ], + [ + 26.60246602466026, + 41.561352886752886 + ], + [ + 26.11646116461165, + 41.82708458747602 + ], + [ + 27.135271352713545, + 42.141900487695764 + ], + [ + 27.995679956799563, + 42.00818835803254 + ], + [ + 28.114481144811464, + 41.62228499647284 + ], + [ + 28.989289892898938, + 41.30069886183976 + ], + [ + 28.80568805688057, + 41.05527786435661 + ], + [ + 27.617676176761762, + 40.99942343044667 + ], + [ + 27.192871928719285, + 40.69137776464024 + ], + [ + 26.357663576635787, + 40.15145157017733 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.10693461348195732, + "skewed": 0.1978975440333819, + "clumpy": 0.7958861137184239, + "sparse": 0.4864574442253773, + "striated": 0.7056068078214577, + "convex": 0.13550932437942276, + "skinny": 0.1957912041031229, + "stringy": 0.9379476266695632, + "monotonic": 0.35817924572456694, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 33.231552117587746, + -87.33236189197157 + ], + "drag": [ + 33.231552117587746, + -87.33236189197157 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 261 + }, + { + "attrs": { + "name": "Selected Turkey (6 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.11\",\"payload\":{\"numVal\":0.10693461348195732},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.2\",\"payload\":{\"numVal\":0.1978975440333819},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.8\",\"payload\":{\"numVal\":0.7958861137184239},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.49\",\"payload\":{\"numVal\":0.4864574442253773},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.71\",\"payload\":{\"numVal\":0.7056068078214577},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.14\",\"payload\":{\"numVal\":0.13550932437942276},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.2\",\"payload\":{\"numVal\":0.1957912041031229},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.94\",\"payload\":{\"numVal\":0.9379476266695632},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.36\",\"payload\":{\"numVal\":0.35817924572456694},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = France\",\"text\":\"France\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Russia\",\"text\":\"Russia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Turkey\",\"text\":\"Turkey\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 262 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Turkey (6 Countries)", + "timestamp": 1522412434737, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 484, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -97.14157141571415, + 25.869642075261808 + ], + [ + -97.52677526775267, + 24.992896718735835 + ], + [ + -97.70317703177031, + 24.271866753716395 + ], + [ + -97.77517775177752, + 22.93305289848078 + ], + [ + -97.87237872378724, + 22.44390346211783 + ], + [ + -97.69957699576996, + 21.898899591844923 + ], + [ + -97.38997389973899, + 21.411442714085297 + ], + [ + -97.18837188371883, + 20.636250873759238 + ], + [ + -96.5259652596526, + 19.89152508829315 + ], + [ + -96.2919629196292, + 19.321132838970257 + ], + [ + -95.89955899558996, + 18.828598285400645 + ], + [ + -94.83754837548375, + 18.562866584677522 + ], + [ + -94.42714427144271, + 18.144804609654514 + ], + [ + -93.54873548735488, + 18.4240767792043 + ], + [ + -92.78552785527854, + 18.525630295404213 + ], + [ + -92.03672036720367, + 18.705041507357407 + ], + [ + -91.40671406714067, + 18.87598992629394 + ], + [ + -90.7731077310773, + 19.283896549696962 + ], + [ + -90.53190531905318, + 19.867829267846503 + ], + [ + -90.45270452704527, + 20.70733833509918 + ], + [ + -90.279902799028, + 21.000150973475613 + ], + [ + -89.6030960309603, + 21.262497556992074 + ], + [ + -88.54468544685446, + 21.494378085648563 + ], + [ + -87.6590765907659, + 21.458834354978592 + ], + [ + -87.05067050670506, + 21.543462285145196 + ], + [ + -86.8130681306813, + 21.331892459728692 + ], + [ + -86.84546845468455, + 20.849513257779066 + ], + [ + -87.38187381873819, + 20.25542518800954 + ], + [ + -87.61947619476194, + 19.646104090810013 + ], + [ + -87.43587435874359, + 19.47177055466682 + ], + [ + -87.58707587075871, + 19.04016811081715 + ], + [ + -87.83547835478355, + 18.25989859468109 + ], + [ + -88.09108091080911, + 18.517167502387565 + ], + [ + -88.29988299882999, + 18.50024191635424 + ], + [ + -88.49068490684907, + 18.48670144752758 + ], + [ + -88.8470884708847, + 17.882458026138053 + ], + [ + -89.03069030690307, + 18.00093712837129 + ], + [ + -89.14949149491494, + 17.955238046081334 + ], + [ + -89.14229142291423, + 17.80798544759145 + ], + [ + -90.06750067500674, + 17.819833357814773 + ], + [ + -90.99990999909998, + 17.818140799211434 + ], + [ + -91.00351003510035, + 17.25451878430188 + ], + [ + -91.45351453514535, + 17.25282622569854 + ], + [ + -91.08271082710827, + 16.917699622238814 + ], + [ + -90.71190711907118, + 16.68751165218565 + ], + [ + -90.60030600306003, + 16.47086415095916 + ], + [ + -90.43830438304383, + 16.409932041239202 + ], + [ + -90.46350463504635, + 16.069727761969474 + ], + [ + -91.74871748717487, + 16.066342644762813 + ], + [ + -92.22752227522275, + 15.252221956560106 + ], + [ + -92.08712087120871, + 15.06434795159025 + ], + [ + -92.20232202322023, + 14.830774864330436 + ], + [ + -92.22752227522275, + 14.539654784557328 + ], + [ + -93.35793357933579, + 15.616122056276495 + ], + [ + -93.87633876338764, + 15.939400749512899 + ], + [ + -94.68994689946899, + 16.201747333029374 + ], + [ + -95.25155251552515, + 16.128967313086093 + ], + [ + -96.05436054360543, + 15.751526744543057 + ], + [ + -96.55836558365583, + 15.65335834554979 + ], + [ + -97.26397263972639, + 15.91739748766959 + ], + [ + -98.01278012780128, + 16.10696405124277 + ], + [ + -98.94878948789487, + 16.56564743274575 + ], + [ + -99.69759697596976, + 16.70612979682231 + ], + [ + -100.8280082800828, + 17.171583412738613 + ], + [ + -101.66681666816667, + 17.64888493887824 + ], + [ + -101.91881918819188, + 17.9163091982047 + ], + [ + -102.47682476824768, + 17.97554874932132 + ], + [ + -103.49923499234993, + 18.2920572081444 + ], + [ + -103.91683916839168, + 18.74904803104404 + ], + [ + -104.99324993249932, + 19.31605516316027 + ], + [ + -105.49365493654936, + 19.947379522203107 + ], + [ + -105.73125731257312, + 20.434836399962734 + ], + [ + -105.39645396453965, + 20.531312240352648 + ], + [ + -105.50085500855008, + 20.817354644315756 + ], + [ + -105.27045270452705, + 21.076316110625555 + ], + [ + -105.26685266852668, + 21.421598065705282 + ], + [ + -105.60165601656016, + 21.8718186541916 + ], + [ + -105.69165691656916, + 22.269569925974622 + ], + [ + -106.030060300603, + 22.773952389767572 + ], + [ + -106.90846908469085, + 23.76748428992346 + ], + [ + -107.91647916479164, + 24.549446364662842 + ], + [ + -108.40248402484025, + 25.17230793068903 + ], + [ + -109.25929259292593, + 25.580214554092038 + ], + [ + -109.44289442894429, + 25.82563555157519 + ], + [ + -109.29169291692916, + 26.443419441791363 + ], + [ + -109.80289802898028, + 26.67699252905119 + ], + [ + -110.39330393303933, + 27.162756848207465 + ], + [ + -110.64170641706417, + 27.860090992780258 + ], + [ + -111.1781117811178, + 27.9413338057402 + ], + [ + -111.76131761317613, + 28.467719531376446 + ], + [ + -112.22932229322294, + 28.955176409136072 + ], + [ + -112.27252272522725, + 29.266607192149166 + ], + [ + -112.8089280892809, + 30.02148832923524 + ], + [ + -113.16533165331653, + 30.786524817941313 + ], + [ + -113.14733147331474, + 31.170735620897673 + ], + [ + -113.87093870938709, + 31.566794334077358 + ], + [ + -114.20574205742057, + 31.524480368994062 + ], + [ + -114.77814778147781, + 31.800367421337185 + ], + [ + -114.93654936549365, + 31.3941533565375 + ], + [ + -114.7709477094771, + 30.913466713191212 + ], + [ + -114.67374673746737, + 30.1619706933118 + ], + [ + -114.33174331743317, + 29.750678952702117 + ], + [ + -113.590135901359, + 29.061807601145986 + ], + [ + -113.42453424534246, + 28.826541955282835 + ], + [ + -113.27333273332734, + 28.755454493942892 + ], + [ + -113.14013140131401, + 28.41186509746649 + ], + [ + -112.96372963729637, + 28.42540556629315 + ], + [ + -112.7621276212762, + 27.780540738423653 + ], + [ + -112.45612456124562, + 27.526656947923854 + ], + [ + -112.24372243722436, + 27.171219641224127 + ], + [ + -111.61731617316173, + 26.66345206022453 + ], + [ + -111.28611286112861, + 25.732544828391923 + ], + [ + -110.98730987309872, + 25.29417215012893 + ], + [ + -110.710107101071, + 24.825333417005965 + ], + [ + -110.65610656106561, + 24.298947691369705 + ], + [ + -110.17370173701737, + 24.26509651930307 + ], + [ + -109.77049770497705, + 23.811490813610092 + ], + [ + -109.41049410494105, + 23.364655342330437 + ], + [ + -109.43209432094321, + 23.185244130377242 + ], + [ + -109.85329853298532, + 22.817958913454206 + ], + [ + -110.02970029700296, + 22.82303658926419 + ], + [ + -110.2961029610296, + 23.430665127860394 + ], + [ + -110.94770947709476, + 24.001057377183272 + ], + [ + -111.67131671316713, + 24.485129137736223 + ], + [ + -112.18252182521825, + 24.739012928236036 + ], + [ + -112.15012150121501, + 25.470198244875462 + ], + [ + -112.30132301323013, + 26.011816997941708 + ], + [ + -112.77652776527765, + 26.321555222351463 + ], + [ + -113.4641346413464, + 26.76839069363112 + ], + [ + -113.59733597335973, + 26.63975623977788 + ], + [ + -113.84933849338493, + 26.900410264691004 + ], + [ + -114.4649446494465, + 27.142446144967494 + ], + [ + -115.05535055350553, + 27.722993745910372 + ], + [ + -114.98334983349834, + 27.797466324456977 + ], + [ + -114.56934569345694, + 27.74161189054702 + ], + [ + -114.19854198541985, + 28.115667341883395 + ], + [ + -114.16254162541625, + 28.565887930369712 + ], + [ + -114.9329493294933, + 29.280147660975814 + ], + [ + -115.51975519755197, + 29.556034713318937 + ], + [ + -115.8869588695887, + 30.18058883794845 + ], + [ + -116.25776257762578, + 30.83730157604127 + ], + [ + -116.72216722167221, + 31.636189236813976 + ], + [ + -117.1289712897129, + 32.53493785518327 + ], + [ + -115.99135991359914, + 32.61279555093655 + ], + [ + -114.72054720547206, + 32.72111930154979 + ], + [ + -114.81414814148141, + 32.52478250356329 + ], + [ + -113.30573305733057, + 32.039018184407 + ], + [ + -111.02331023310232, + 31.334913805420882 + ], + [ + -109.0360903609036, + 31.341684039834206 + ], + [ + -108.24048240482405, + 31.341684039834206 + ], + [ + -108.24048240482405, + 31.754668339047214 + ], + [ + -106.50886508865088, + 31.754668339047214 + ], + [ + -106.14166141661417, + 31.3992310323475 + ], + [ + -105.63045630456304, + 31.084415132127745 + ], + [ + -105.03645036450364, + 30.644349895261414 + ], + [ + -104.70524705247053, + 30.12134928683183 + ], + [ + -104.45684456844567, + 29.571267740748922 + ], + [ + -103.93843938439385, + 29.26999230935583 + ], + [ + -103.11043110431105, + 28.970409436566058 + ], + [ + -102.48042480424805, + 29.760834304322103 + ], + [ + -101.66321663216632, + 29.779452448958764 + ], + [ + -100.95760957609576, + 29.380008618572404 + ], + [ + -100.45720457204571, + 28.696214942826273 + ], + [ + -100.11160111601116, + 28.110589666073395 + ], + [ + -99.52119521195212, + 27.540197416750516 + ], + [ + -99.30159301593015, + 26.83947815497106 + ], + [ + -99.02079020790208, + 26.370639421848097 + ], + [ + -98.23958239582396, + 26.059208638835003 + ], + [ + -97.53037530375303, + 25.839176020401837 + ], + [ + -97.14157141571415, + 25.869642075261808 + ] + ] + ] + }, + "countryRef": { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.8787241571431588, + "skewed": 0.05712961897832547, + "clumpy": 0.33788706927057865, + "sparse": 0.022352408509591637, + "striated": 0.32115977486326663, + "convex": 0.9069499453295773, + "skinny": 0.2998506758140984, + "stringy": 0.11404819845983405, + "monotonic": 0.0841135553231045, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -103.705360918679, + -88.21165080741547 + ], + "drag": [ + -103.705360918679, + -88.21165080741547 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 263 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Algeria (7 Countries)", + "timestamp": 1522412444081, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 12, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.000720007200073, + 23.47128653434035 + ], + [ + 8.573485734857343, + 21.565465546988506 + ], + [ + 5.679056790567898, + 19.600405008520042 + ], + [ + 4.267842678426803, + 19.155262095843725 + ], + [ + 3.1590315903159194, + 19.057093696850472 + ], + [ + 3.148231482314827, + 19.693495731703308 + ], + [ + 2.683826838268402, + 19.85598135762318 + ], + [ + 2.0610206102061, + 20.142023761586287 + ], + [ + 1.8234182341823555, + 20.610862494709252 + ], + [ + -1.5498154981549703, + 22.79257053440422 + ], + [ + -4.923049230492296, + 24.974278574099188 + ], + [ + -8.685086850868515, + 27.396329935467293 + ], + [ + -8.66348663486633, + 27.589281616247135 + ], + [ + -8.667086670866695, + 27.656983960380416 + ], + [ + -8.674286742867423, + 28.84177498271282 + ], + [ + -7.057870578705774, + 29.579730533765584 + ], + [ + -6.0606606066060635, + 29.73206080806547 + ], + [ + -5.243452434524329, + 30.001177625995254 + ], + [ + -4.858248582485828, + 30.50048241397819 + ], + [ + -3.6918369183691766, + 30.89654112715789 + ], + [ + -3.6486364863648646, + 31.637881795417314 + ], + [ + -3.069030690306903, + 31.724202284187243 + ], + [ + -2.6154261542615416, + 32.094872618316955 + ], + [ + -1.3086130861308618, + 32.262435920046826 + ], + [ + -1.1250112501124931, + 32.65172439881319 + ], + [ + -1.387813878138786, + 32.86329422422969 + ], + [ + -1.733417334173339, + 33.91945079270886 + ], + [ + -1.794617946179443, + 34.527079331305046 + ], + [ + -2.1690216902169084, + 35.16855904196788 + ], + [ + -1.2078120781207815, + 35.71525547084413 + ], + [ + -0.1278012780127824, + 35.887896448383984 + ], + [ + 0.5022050220502194, + 36.300880747597006 + ], + [ + 1.4670146701467104, + 36.60554129619676 + ], + [ + 3.1626316263162835, + 36.78325994954662 + ], + [ + 4.815048150481516, + 36.86450276250656 + ], + [ + 5.319053190531918, + 36.717250164016676 + ], + [ + 6.262262622626224, + 37.1099237599897 + ], + [ + 7.331473314733159, + 37.11838655300636 + ], + [ + 7.738277382773845, + 36.88650602434987 + ], + [ + 8.422284222842222, + 36.94574557546649 + ], + [ + 8.217082170821726, + 36.43290031865689 + ], + [ + 8.375483754837546, + 35.479989824980976 + ], + [ + 8.141481414814166, + 34.655713785158284 + ], + [ + 7.525875258752592, + 34.097169446058714 + ], + [ + 7.612276122761244, + 33.34398086757598 + ], + [ + 8.42948429484295, + 32.748200239203115 + ], + [ + 8.440284402844043, + 32.506164358926625 + ], + [ + 9.055890558905588, + 32.10333541133362 + ], + [ + 9.480694806948065, + 30.307530733198348 + ], + [ + 9.80469804698049, + 29.424015142259037 + ], + [ + 9.858698586985867, + 28.960254084946072 + ], + [ + 9.682296822968226, + 28.144440838140042 + ], + [ + 9.757897578975786, + 27.6874500152404 + ], + [ + 9.62829628296285, + 27.140753586364156 + ], + [ + 9.714697146971474, + 26.512814344527982 + ], + [ + 9.318693186931881, + 26.094752369504974 + ], + [ + 9.909099090990907, + 25.365259611468872 + ], + [ + 9.948699486994883, + 24.93704228482588 + ], + [ + 10.305103051030528, + 24.37849794572631 + ], + [ + 10.773107731077317, + 24.562986833489504 + ], + [ + 11.561515615156168, + 24.0975332175732 + ], + [ + 12.000720007200073, + 23.47128653434035 + ] + ] + ] + }, + "countryRef": { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.7483754700085603, + "skewed": 0.14104290473034697, + "clumpy": 0.5945347554104545, + "sparse": 0.8169382778616172, + "striated": 0.6421069986082317, + "convex": 0.24860147591339032, + "skinny": 0.6790990501556642, + "stringy": 0.7389903394901296, + "monotonic": 0.20190012043992844, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 5.729577951308233, + -87.83752061153776 + ], + "drag": [ + 5.729577951308233, + -87.83752061153776 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 264 + }, + { + "attrs": { + "name": "Selected Algeria (7 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.75\",\"payload\":{\"numVal\":0.7483754700085603},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.14\",\"payload\":{\"numVal\":0.14104290473034697},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.59\",\"payload\":{\"numVal\":0.5945347554104545},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.82\",\"payload\":{\"numVal\":0.8169382778616172},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.64\",\"payload\":{\"numVal\":0.6421069986082317},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.25\",\"payload\":{\"numVal\":0.24860147591339032},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.68\",\"payload\":{\"numVal\":0.6790990501556642},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.74\",\"payload\":{\"numVal\":0.7389903394901296},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.2\",\"payload\":{\"numVal\":0.20190012043992844},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = France\",\"text\":\"France\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Russia\",\"text\":\"Russia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Turkey\",\"text\":\"Turkey\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Algeria\",\"text\":\"Algeria\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 265 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Algeria (7 Countries)", + "timestamp": 1522412444081, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 792, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 38.34938349383495, + 40.9486466723467 + ], + [ + 39.51219512195124, + 41.10266950524992 + ], + [ + 40.372603726037255, + 41.012963899273316 + ], + [ + 41.55341553415536, + 41.535964507702914 + ], + [ + 42.619026190261906, + 41.58335614859621 + ], + [ + 43.5838358383584, + 41.09251415362992 + ], + [ + 43.75303753037531, + 40.74046196413687 + ], + [ + 43.65583655836559, + 40.25300508637724 + ], + [ + 44.4010440104401, + 40.004198971687444 + ], + [ + 44.79344793447936, + 39.713078891914336 + ], + [ + 44.109441094410954, + 39.42872904655455 + ], + [ + 44.42264422644226, + 38.281174313495455 + ], + [ + 44.22464224642246, + 37.9714360890857 + ], + [ + 44.771847718477204, + 37.170855869709655 + ], + [ + 44.29304293042932, + 37.001600009376446 + ], + [ + 43.943839438394406, + 37.25548379987626 + ], + [ + 42.777427774277754, + 37.38581081233282 + ], + [ + 42.34902349023491, + 37.230095420826274 + ], + [ + 41.211412114121146, + 37.07438002931973 + ], + [ + 40.675006750067496, + 37.09130561535305 + ], + [ + 39.5229952299523, + 36.71555760541334 + ], + [ + 38.698586985869866, + 36.712172488206676 + ], + [ + 38.169381693816945, + 36.90173905177987 + ], + [ + 37.06777067770679, + 36.622466882230086 + ], + [ + 36.74016740167403, + 36.817111121613266 + ], + [ + 36.686166861668625, + 36.260259341117035 + ], + [ + 36.41616416164163, + 36.04022672268387 + ], + [ + 36.149761497614975, + 35.82188666285404 + ], + [ + 35.782557825578266, + 36.27549236854702 + ], + [ + 36.16056160561607, + 36.65124037848672 + ], + [ + 35.55215552155522, + 36.56491988971679 + ], + [ + 34.71334713347133, + 36.79510785976994 + ], + [ + 34.02574025740259, + 36.21963793463706 + ], + [ + 32.51012510125102, + 36.10792906681715 + ], + [ + 31.700117001170014, + 36.644470144073395 + ], + [ + 30.620106201062015, + 36.67832131614004 + ], + [ + 30.38970389703897, + 36.2636444583237 + ], + [ + 29.698496984969864, + 36.14516535609046 + ], + [ + 28.733687336873373, + 36.676628757536704 + ], + [ + 27.642876428764282, + 36.65801061290006 + ], + [ + 27.048870488704893, + 37.65323507165928 + ], + [ + 26.31806318063181, + 38.208394293552175 + ], + [ + 26.80406804068042, + 38.98527869248157 + ], + [ + 26.170461704617054, + 39.46427277722452 + ], + [ + 27.279272792727937, + 40.420568388107114 + ], + [ + 28.820088200882026, + 40.45949723598375 + ], + [ + 29.24129241292414, + 41.21945604887982 + ], + [ + 31.145711457114572, + 41.08743647781992 + ], + [ + 32.34812348123481, + 41.73568642289608 + ], + [ + 33.51453514535146, + 42.01834370965253 + ], + [ + 35.16695166951669, + 42.04034697149585 + ], + [ + 36.912969129691305, + 41.334550033906396 + ], + [ + 38.34938349383495, + 40.9486466723467 + ] + ] + ], + [ + [ + [ + 26.357663576635787, + 40.15145157017733 + ], + [ + 26.044460444604454, + 40.618597744696956 + ], + [ + 26.055260552605546, + 40.823397335700136 + ], + [ + 26.29286292862929, + 40.936798762123374 + ], + [ + 26.60246602466026, + 41.561352886752886 + ], + [ + 26.11646116461165, + 41.82708458747602 + ], + [ + 27.135271352713545, + 42.141900487695764 + ], + [ + 27.995679956799563, + 42.00818835803254 + ], + [ + 28.114481144811464, + 41.62228499647284 + ], + [ + 28.989289892898938, + 41.30069886183976 + ], + [ + 28.80568805688057, + 41.05527786435661 + ], + [ + 27.617676176761762, + 40.99942343044667 + ], + [ + 27.192871928719285, + 40.69137776464024 + ], + [ + 26.357663576635787, + 40.15145157017733 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.10693461348195732, + "skewed": 0.1978975440333819, + "clumpy": 0.7958861137184239, + "sparse": 0.4864574442253773, + "striated": 0.7056068078214577, + "convex": 0.13550932437942276, + "skinny": 0.1957912041031229, + "stringy": 0.9379476266695632, + "monotonic": 0.35817924572456694, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 33.231552117587746, + -87.33236189197157 + ], + "drag": [ + 33.231552117587746, + -87.33236189197157 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 266 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Indonesia (8 Countries)", + "timestamp": 1522412450765, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 360, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 120.29340293402936, + -10.258021312859967 + ], + [ + 118.96858968589686, + -9.557302051080512 + ], + [ + 119.90099900999013, + -9.360965253093994 + ], + [ + 120.42660426604266, + -9.665625801693764 + ], + [ + 120.77580775807758, + -9.97028635029352 + ], + [ + 120.71460714607144, + -10.239403168223305 + ], + [ + 120.29340293402936, + -10.258021312859967 + ] + ] + ], + [ + [ + [ + 124.969849698497, + -8.892126519971029 + ], + [ + 125.07065070650708, + -9.090155876560871 + ], + [ + 125.0886508865089, + -9.393123866557303 + ], + [ + 124.43704437044374, + -10.139542210626729 + ], + [ + 123.58023580235806, + -10.35957482905988 + ], + [ + 123.46143461434616, + -10.239403168223305 + ], + [ + 123.55143551435515, + -9.899198888953578 + ], + [ + 123.97983979839802, + -9.289877791754051 + ], + [ + 124.969849698497, + -8.892126519971029 + ] + ] + ], + [ + [ + [ + 117.27657276572768, + -9.041071677064252 + ], + [ + 116.740167401674, + -9.03260888404759 + ], + [ + 117.08217082170825, + -8.457138958914697 + ], + [ + 117.63297632976332, + -8.44867616589805 + ], + [ + 117.89937899378992, + -8.094931417801646 + ], + [ + 118.25938259382593, + -8.362355677128107 + ], + [ + 118.87858878588787, + -8.281112864168179 + ], + [ + 119.12699126991271, + -8.70594507360451 + ], + [ + 117.97137971379715, + -8.907359547401015 + ], + [ + 117.27657276572768, + -9.041071677064252 + ] + ] + ], + [ + [ + [ + 121.25461254612549, + -8.934440485054324 + ], + [ + 119.92259922599226, + -8.810883707011087 + ], + [ + 119.92259922599226, + -8.445291048691374 + ], + [ + 120.71460714607144, + -8.237106340481546 + ], + [ + 121.34101341013411, + -8.536689213271302 + ], + [ + 122.00702007020072, + -8.460524076121374 + ], + [ + 122.90342903429035, + -8.094931417801646 + ], + [ + 122.7558275582756, + -8.650090639694554 + ], + [ + 121.25461254612549, + -8.934440485054324 + ] + ] + ], + [ + [ + [ + 114.5657456574566, + -8.751644155894468 + ], + [ + 113.46413464134645, + -8.34881520830146 + ], + [ + 112.56052560525609, + -8.37589614595477 + ], + [ + 111.52371523715237, + -8.301423567408165 + ], + [ + 110.5877058770588, + -8.12201235545497 + ], + [ + 109.42849428494287, + -7.741186669705257 + ], + [ + 108.6940869408694, + -7.641325712108667 + ], + [ + 108.27648276482768, + -7.766575048755243 + ], + [ + 106.4548645486455, + -7.355283308145559 + ], + [ + 106.2820628206282, + -6.925373422899227 + ], + [ + 105.36405364053644, + -6.850900844352623 + ], + [ + 106.05166051660518, + -5.896297792073369 + ], + [ + 107.26487264872651, + -5.955537343189988 + ], + [ + 108.07128071280715, + -6.3465183805596865 + ], + [ + 108.48528485284857, + -6.422683517709629 + ], + [ + 108.62208622086223, + -6.778120824409342 + ], + [ + 110.54090540905412, + -6.877981782005932 + ], + [ + 110.76050760507604, + -6.464997482792924 + ], + [ + 112.61452614526144, + -6.945684126139213 + ], + [ + 112.97812978129781, + -7.593934071215372 + ], + [ + 114.47934479344792, + -7.776730400375229 + ], + [ + 115.7069570695707, + -8.37081847014477 + ], + [ + 114.5657456574566, + -8.751644155894468 + ] + ] + ], + [ + [ + [ + 134.2111421114211, + -6.894907368039256 + ], + [ + 134.1139411394114, + -6.141718789556506 + ], + [ + 134.29034290342906, + -5.7828963656501315 + ], + [ + 134.49914499144995, + -5.444384644983728 + ], + [ + 134.7259472594726, + -5.73719728336016 + ], + [ + 134.7259472594726, + -6.214498809499787 + ], + [ + 134.2111421114211, + -6.894907368039256 + ] + ] + ], + [ + [ + [ + 126.87426874268743, + -3.790754889528344 + ], + [ + 126.18306183061833, + -3.6079585603684876 + ], + [ + 125.9886598865989, + -3.178048675122156 + ], + [ + 127.00027000270006, + -3.128964475625537 + ], + [ + 127.2486724867249, + -3.4590134032752786 + ], + [ + 126.87426874268743, + -3.790754889528344 + ] + ] + ], + [ + [ + [ + 130.83430834308342, + -3.8584572336616247 + ], + [ + 129.9918999189992, + -3.445472934448617 + ], + [ + 129.1566915669157, + -3.3625375628853504 + ], + [ + 128.59148591485916, + -3.428547348415293 + ], + [ + 127.90027900279006, + -3.3930036177453218 + ], + [ + 128.13428134281344, + -2.8429220716624286 + ], + [ + 129.37269372693726, + -2.8023006651824574 + ], + [ + 130.4707047070471, + -3.0934207449555657 + ], + [ + 130.83430834308342, + -3.8584572336616247 + ] + ] + ], + [ + [ + [ + 141.00081000810007, + -2.600886191385939 + ], + [ + 141.0188101881019, + -5.85906150280006 + ], + [ + 141.03321033210335, + -9.11723681421418 + ], + [ + 140.1440014400144, + -8.296345891598165 + ], + [ + 139.12879128791292, + -8.096623976404985 + ], + [ + 138.88038880388802, + -8.38097382176477 + ], + [ + 137.61317613176135, + -8.41143987662474 + ], + [ + 138.0379803798038, + -7.597319188422048 + ], + [ + 138.66798667986683, + -7.319739577475588 + ], + [ + 138.4087840878409, + -6.233116954136435 + ], + [ + 137.92637926379263, + -5.393607886883757 + ], + [ + 135.98955989559897, + -4.547328585217755 + ], + [ + 135.1651516515165, + -4.462700655051151 + ], + [ + 133.6639366393664, + -3.538563657631883 + ], + [ + 133.36873368733688, + -4.024327976788172 + ], + [ + 132.98352983529838, + -4.112341024161424 + ], + [ + 132.75672756727568, + -3.746748365841711 + ], + [ + 132.7531275312753, + -3.3117608047853935 + ], + [ + 131.98991989919898, + -2.820918809819105 + ], + [ + 133.06633066330664, + -2.460403827309392 + ], + [ + 133.77913779137793, + -2.4790219719460396 + ], + [ + 133.69633696336962, + -2.2149828298262406 + ], + [ + 132.23112231122315, + -2.2132902712229168 + ], + [ + 131.8351183511835, + -1.6175096428500524 + ], + [ + 130.94230942309423, + -1.433020755086858 + ], + [ + 130.52110521105215, + -0.9371010843105836 + ], + [ + 131.86751867518677, + -0.6950652040340941 + ], + [ + 132.3787237872379, + -0.3700939521943525 + ], + [ + 133.98433984339846, + -0.7796931342006985 + ], + [ + 134.1427414274143, + -1.1520560269337494 + ], + [ + 134.42354423544236, + -2.76844949311581 + ], + [ + 135.45675456754566, + -3.3676152386953504 + ], + [ + 136.2919629196292, + -2.306380994406169 + ], + [ + 137.44037440374404, + -1.7038301316199806 + ], + [ + 138.32958329583295, + -1.7021375730166426 + ], + [ + 139.18639186391863, + -2.050804645303046 + ], + [ + 139.92799927999283, + -2.409627069209421 + ], + [ + 141.00081000810007, + -2.600886191385939 + ] + ] + ], + [ + [ + [ + 119.79659796597969, + -5.6728800564335415 + ], + [ + 119.36819368193682, + -5.380067418057109 + ], + [ + 119.6525965259653, + -4.459315537844489 + ], + [ + 119.49779497794981, + -3.49455713394525 + ], + [ + 119.07659076590767, + -3.487786899531912 + ], + [ + 118.7669876698767, + -2.8023006651824574 + ], + [ + 119.18099180991811, + -2.14728048569296 + ], + [ + 119.3249932499325, + -1.3534705007302534 + ], + [ + 119.82539825398254, + 0.1545992148385693 + ], + [ + 120.03420034200343, + 0.5658909554482534 + ], + [ + 120.88740887408875, + 1.308924182311003 + ], + [ + 121.6686166861669, + 1.0144189853312326 + ], + [ + 122.92862928629285, + 0.8756291798580094 + ], + [ + 124.07704077040773, + 0.9179431449413045 + ], + [ + 125.06705067050672, + 1.6440507857707445 + ], + [ + 125.23985239852402, + 1.4206330501309168 + ], + [ + 124.43704437044374, + 0.4271011499750301 + ], + [ + 123.68463684636845, + 0.23584202779851182 + ], + [ + 122.72342723427238, + 0.43048626718169203 + ], + [ + 121.05661056610569, + 0.3814020676850589 + ], + [ + 120.18180181801819, + 0.23753458640183567 + ], + [ + 120.04140041400416, + -0.5190391092875757 + ], + [ + 120.93420934209342, + -1.4093249346402104 + ], + [ + 121.47421474214741, + -0.9557192289472312 + ], + [ + 123.3390333903339, + -0.6155149496774897 + ], + [ + 123.259832598326, + -1.0758908897838069 + ], + [ + 122.82422824228246, + -0.9303308498972456 + ], + [ + 122.38862388623886, + -1.5176486852534623 + ], + [ + 121.50661506615069, + -1.9052446054164847 + ], + [ + 122.45342453424536, + -3.186511468138818 + ], + [ + 122.27342273422738, + -3.530100864615221 + ], + [ + 123.16983169831701, + -4.684425832087655 + ], + [ + 123.16263162631628, + -5.341138570180476 + ], + [ + 122.62982629826297, + -5.633951208556908 + ], + [ + 122.23742237422374, + -5.283591577667181 + ], + [ + 122.71982719827201, + -4.464393213654489 + ], + [ + 121.7370173701737, + -4.851989133817526 + ], + [ + 121.48861488614887, + -4.574409522871065 + ], + [ + 121.61821618216186, + -4.188506161311366 + ], + [ + 120.89820898208984, + -3.602880884558502 + ], + [ + 120.97380973809737, + -2.6279671290392628 + ], + [ + 120.30420304203045, + -2.9309351190356807 + ], + [ + 120.39060390603908, + -4.097107996731438 + ], + [ + 120.43020430204302, + -5.529012575150318 + ], + [ + 119.79659796597969, + -5.6728800564335415 + ] + ] + ], + [ + [ + [ + 128.09828098280985, + -0.8998647950372742 + ], + [ + 127.69507695076953, + -0.2668478773911005 + ], + [ + 127.39987399874002, + 1.0110338681245707 + ], + [ + 127.60147601476018, + 1.8099215288972772 + ], + [ + 127.93267932679328, + 2.173821628613652 + ], + [ + 128.0046800468005, + 1.6288177583407446 + ], + [ + 128.59508595085953, + 1.5408047109674925 + ], + [ + 128.68868688686888, + 1.1328980875644703 + ], + [ + 128.63468634686348, + 0.2578452896418213 + ], + [ + 128.11988119881198, + 0.3560136886350733 + ], + [ + 127.96867968679686, + -0.25161484996111483 + ], + [ + 128.3790837908379, + -0.7796931342006985 + ], + [ + 128.09828098280985, + -0.8998647950372742 + ] + ] + ], + [ + [ + [ + 109.66249662496625, + 2.0062583268837955 + ], + [ + 109.83169831698319, + 1.3376976785676504 + ], + [ + 110.51570515705157, + 0.7723831050547574 + ], + [ + 111.160111601116, + 0.9771826960579233 + ], + [ + 111.79731797317976, + 0.9044026761146569 + ], + [ + 112.38052380523806, + 1.4104776985109169 + ], + [ + 112.85932859328597, + 1.4984907458841832 + ], + [ + 113.80613806138064, + 1.2175260177310747 + ], + [ + 114.619746197462, + 1.4307884017509025 + ], + [ + 115.13455134551344, + 2.8220715736898256 + ], + [ + 115.519755197552, + 3.1690460873728767 + ], + [ + 115.86535865358655, + 4.306445468811987 + ], + [ + 117.01377013770139, + 4.306445468811987 + ], + [ + 117.88137881378816, + 4.137189608478792 + ], + [ + 117.31257312573126, + 3.2350558729028336 + ], + [ + 118.04698046980474, + 2.287223055036904 + ], + [ + 117.87417874178743, + 1.826847114930601 + ], + [ + 118.99738997389977, + 0.9027101175113188 + ], + [ + 117.8129781297813, + 0.7842310152780811 + ], + [ + 117.47817478174784, + 0.10212989813527429 + ], + [ + 117.52137521375215, + -0.803388954647346 + ], + [ + 116.56016560165602, + -1.4871826303934768 + ], + [ + 116.53496534965353, + -2.4840996477560395 + ], + [ + 116.14976149761497, + -4.012480066564848 + ], + [ + 116.00216002160022, + -3.6570427598651207 + ], + [ + 114.86454864548648, + -4.107263348351438 + ], + [ + 114.46854468544689, + -3.4962496925485738 + ], + [ + 113.7557375573756, + -3.438702700035293 + ], + [ + 113.25533255332556, + -3.118809124005537 + ], + [ + 112.06732067320672, + -3.477631547911926 + ], + [ + 111.7037170371704, + -2.9952523459622995 + ], + [ + 111.04851048510488, + -3.0494142212689326 + ], + [ + 110.22410224102242, + -2.934320236242357 + ], + [ + 110.06930069300694, + -1.5921212638000668 + ], + [ + 109.57249572495726, + -1.3145416528536202 + ], + [ + 109.09009090090905, + -0.45979955817095686 + ], + [ + 108.95328953289533, + 0.41525323975170636 + ], + [ + 109.06849068490686, + 1.3427753543776362 + ], + [ + 109.66249662496625, + 2.0062583268837955 + ] + ] + ], + [ + [ + [ + 104.70884708847092, + -5.872601971626722 + ], + [ + 103.86643866438664, + -5.036478021580706 + ], + [ + 102.5848258482585, + -4.220664774774676 + ], + [ + 102.15642156421563, + -3.6147287947818256 + ], + [ + 101.40041400414003, + -2.8006081065791193 + ], + [ + 100.90360903609036, + -2.050804645303046 + ], + [ + 100.14040140401403, + -0.651058680347461 + ], + [ + 99.26199261992622, + 0.1833727110952168 + ], + [ + 98.97038970389707, + 1.0431924815878801 + ], + [ + 98.59958599585997, + 1.823461997723939 + ], + [ + 97.69957699576997, + 2.4530937981634366 + ], + [ + 97.17757177571775, + 3.309528451449438 + ], + [ + 96.42516425164251, + 3.8680727905490073 + ], + [ + 95.38115381153813, + 4.97162099992147 + ], + [ + 95.2947529475295, + 5.479388580921082 + ], + [ + 95.93555935559357, + 5.438767174441111 + ], + [ + 97.48357483574836, + 5.245815493661254 + ], + [ + 98.36918369183695, + 4.2692091795386915 + ], + [ + 99.14319143191432, + 3.5904931796025465 + ], + [ + 99.6939969399694, + 3.1741237631828767 + ], + [ + 100.64080640806407, + 2.0993490500670475 + ], + [ + 101.65961659616596, + 2.084116022637062 + ], + [ + 102.49842498424988, + 1.398629788287593 + ], + [ + 103.07803078030781, + 0.5608132796382534 + ], + [ + 103.83763837638378, + 0.10382245673861235 + ], + [ + 103.43803438034382, + -0.7119907900674178 + ], + [ + 104.01044010440103, + -1.0589653037504831 + ], + [ + 104.37044370443704, + -1.0843536828004687 + ], + [ + 104.53964539645398, + -1.781687827373247 + ], + [ + 104.8888488884889, + -2.3402321664728163 + ], + [ + 105.62325623256231, + -2.4282452138460826 + ], + [ + 106.10926109261095, + -3.0612621314922563 + ], + [ + 105.85725857258575, + -4.30529270494128 + ], + [ + 105.8176581765818, + -5.852291268386736 + ], + [ + 104.70884708847092, + -5.872601971626722 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.7023439299064882, + "skewed": 0.49031244208271296, + "clumpy": 0.6734972944615256, + "sparse": 0.06855965931754127, + "striated": 0.8538216187555585, + "convex": 0.9813458961025647, + "skinny": 0.8274354938985189, + "stringy": 0.7922045522504819, + "monotonic": 0.675292464845332, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + }, + { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 102.55944532841735, + -88.8011800925879 + ], + "drag": [ + 102.55944532841735, + -88.8011800925879 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 267 + }, + { + "attrs": { + "name": "Selected Indonesia (8 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.7\",\"payload\":{\"numVal\":0.7023439299064882},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.49\",\"payload\":{\"numVal\":0.49031244208271296},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.67\",\"payload\":{\"numVal\":0.6734972944615256},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.07\",\"payload\":{\"numVal\":0.06855965931754127},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.85\",\"payload\":{\"numVal\":0.8538216187555585},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.98\",\"payload\":{\"numVal\":0.9813458961025647},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.83\",\"payload\":{\"numVal\":0.8274354938985189},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.79\",\"payload\":{\"numVal\":0.7922045522504819},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.68\",\"payload\":{\"numVal\":0.675292464845332},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = France\",\"text\":\"France\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Russia\",\"text\":\"Russia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Turkey\",\"text\":\"Turkey\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Algeria\",\"text\":\"Algeria\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Indonesia\",\"text\":\"Indonesia\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 268 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Indonesia (8 Countries)", + "timestamp": 1522412450765, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 12, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 12.000720007200073, + 23.47128653434035 + ], + [ + 8.573485734857343, + 21.565465546988506 + ], + [ + 5.679056790567898, + 19.600405008520042 + ], + [ + 4.267842678426803, + 19.155262095843725 + ], + [ + 3.1590315903159194, + 19.057093696850472 + ], + [ + 3.148231482314827, + 19.693495731703308 + ], + [ + 2.683826838268402, + 19.85598135762318 + ], + [ + 2.0610206102061, + 20.142023761586287 + ], + [ + 1.8234182341823555, + 20.610862494709252 + ], + [ + -1.5498154981549703, + 22.79257053440422 + ], + [ + -4.923049230492296, + 24.974278574099188 + ], + [ + -8.685086850868515, + 27.396329935467293 + ], + [ + -8.66348663486633, + 27.589281616247135 + ], + [ + -8.667086670866695, + 27.656983960380416 + ], + [ + -8.674286742867423, + 28.84177498271282 + ], + [ + -7.057870578705774, + 29.579730533765584 + ], + [ + -6.0606606066060635, + 29.73206080806547 + ], + [ + -5.243452434524329, + 30.001177625995254 + ], + [ + -4.858248582485828, + 30.50048241397819 + ], + [ + -3.6918369183691766, + 30.89654112715789 + ], + [ + -3.6486364863648646, + 31.637881795417314 + ], + [ + -3.069030690306903, + 31.724202284187243 + ], + [ + -2.6154261542615416, + 32.094872618316955 + ], + [ + -1.3086130861308618, + 32.262435920046826 + ], + [ + -1.1250112501124931, + 32.65172439881319 + ], + [ + -1.387813878138786, + 32.86329422422969 + ], + [ + -1.733417334173339, + 33.91945079270886 + ], + [ + -1.794617946179443, + 34.527079331305046 + ], + [ + -2.1690216902169084, + 35.16855904196788 + ], + [ + -1.2078120781207815, + 35.71525547084413 + ], + [ + -0.1278012780127824, + 35.887896448383984 + ], + [ + 0.5022050220502194, + 36.300880747597006 + ], + [ + 1.4670146701467104, + 36.60554129619676 + ], + [ + 3.1626316263162835, + 36.78325994954662 + ], + [ + 4.815048150481516, + 36.86450276250656 + ], + [ + 5.319053190531918, + 36.717250164016676 + ], + [ + 6.262262622626224, + 37.1099237599897 + ], + [ + 7.331473314733159, + 37.11838655300636 + ], + [ + 7.738277382773845, + 36.88650602434987 + ], + [ + 8.422284222842222, + 36.94574557546649 + ], + [ + 8.217082170821726, + 36.43290031865689 + ], + [ + 8.375483754837546, + 35.479989824980976 + ], + [ + 8.141481414814166, + 34.655713785158284 + ], + [ + 7.525875258752592, + 34.097169446058714 + ], + [ + 7.612276122761244, + 33.34398086757598 + ], + [ + 8.42948429484295, + 32.748200239203115 + ], + [ + 8.440284402844043, + 32.506164358926625 + ], + [ + 9.055890558905588, + 32.10333541133362 + ], + [ + 9.480694806948065, + 30.307530733198348 + ], + [ + 9.80469804698049, + 29.424015142259037 + ], + [ + 9.858698586985867, + 28.960254084946072 + ], + [ + 9.682296822968226, + 28.144440838140042 + ], + [ + 9.757897578975786, + 27.6874500152404 + ], + [ + 9.62829628296285, + 27.140753586364156 + ], + [ + 9.714697146971474, + 26.512814344527982 + ], + [ + 9.318693186931881, + 26.094752369504974 + ], + [ + 9.909099090990907, + 25.365259611468872 + ], + [ + 9.948699486994883, + 24.93704228482588 + ], + [ + 10.305103051030528, + 24.37849794572631 + ], + [ + 10.773107731077317, + 24.562986833489504 + ], + [ + 11.561515615156168, + 24.0975332175732 + ], + [ + 12.000720007200073, + 23.47128653434035 + ] + ] + ] + }, + "countryRef": { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.7483754700085603, + "skewed": 0.14104290473034697, + "clumpy": 0.5945347554104545, + "sparse": 0.8169382778616172, + "striated": 0.6421069986082317, + "convex": 0.24860147591339032, + "skinny": 0.6790990501556642, + "stringy": 0.7389903394901296, + "monotonic": 0.20190012043992844, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 5.729577951308233, + -87.83752061153776 + ], + "drag": [ + 5.729577951308233, + -87.83752061153776 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 269 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected India (9 Countries)", + "timestamp": 1522412457594, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 356, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 77.83817838178385, + 35.49353029380762 + ], + [ + 78.91098910989109, + 34.32227974030188 + ], + [ + 78.81018810188101, + 33.50646649349585 + ], + [ + 79.20979209792097, + 32.99362123668625 + ], + [ + 79.17739177391775, + 32.484161097083316 + ], + [ + 78.45738457384573, + 32.61787322674654 + ], + [ + 78.73818738187384, + 31.5160175759774 + ], + [ + 79.7209972099721, + 30.883000658331227 + ], + [ + 81.1106111061111, + 30.18397395515511 + ], + [ + 80.4770047700477, + 29.73036824946213 + ], + [ + 80.08820088200883, + 28.794383341819525 + ], + [ + 81.05661056610569, + 28.415250214673165 + ], + [ + 81.9998199982, + 27.926100778310214 + ], + [ + 83.30303303033031, + 27.364171322003983 + ], + [ + 84.67464674646749, + 27.235536868150746 + ], + [ + 85.25065250652506, + 26.72607672854781 + ], + [ + 86.02466024660248, + 26.63129344676122 + ], + [ + 87.22707227072272, + 26.397720359501406 + ], + [ + 88.0586805868059, + 26.414645945534716 + ], + [ + 88.17388173881739, + 26.810704658714414 + ], + [ + 88.04428044280445, + 27.44541413496391 + ], + [ + 88.11988119881198, + 27.87701657881358 + ], + [ + 88.73188731887319, + 28.086893845626747 + ], + [ + 88.81468814688145, + 27.299854095077364 + ], + [ + 88.83628836288364, + 27.09843962128086 + ], + [ + 89.74349743497436, + 26.719306494134486 + ], + [ + 90.37350373503733, + 26.875021885641033 + ], + [ + 91.21591215912161, + 26.809012100111076 + ], + [ + 92.03312033120335, + 26.837785596367723 + ], + [ + 92.10512105121052, + 27.45218436937725 + ], + [ + 91.69831698316983, + 27.77207794540699 + ], + [ + 92.50472504725047, + 27.897327282053567 + ], + [ + 93.4119341193412, + 28.640360508916316 + ], + [ + 94.56754567545676, + 29.276762543769152 + ], + [ + 95.40635406354062, + 29.031341546286015 + ], + [ + 96.11916119161191, + 29.452788638515685 + ], + [ + 96.58716587165873, + 28.831619631092835 + ], + [ + 96.2487624876249, + 28.41186509746649 + ], + [ + 97.32877328773287, + 28.26122738176994 + ], + [ + 97.4007740077401, + 27.88209425462358 + ], + [ + 97.05157051570518, + 27.699297925463725 + ], + [ + 97.13437134371344, + 27.08320659385086 + ], + [ + 96.41796417964179, + 27.264310364407393 + ], + [ + 95.12555125551256, + 26.573746454247924 + ], + [ + 95.15435154351542, + 26.001661646321708 + ], + [ + 94.60354603546034, + 25.16215257906903 + ], + [ + 94.5531455314553, + 24.674695701309417 + ], + [ + 94.10674106741067, + 23.850419661486725 + ], + [ + 93.32553325533257, + 24.078915072936553 + ], + [ + 93.28593285932862, + 23.043069207697357 + ], + [ + 93.05913059130592, + 22.702864928427616 + ], + [ + 93.16713167131672, + 22.278032718991284 + ], + [ + 92.67392673926742, + 22.04107451452481 + ], + [ + 92.14472144721447, + 23.627001925846898 + ], + [ + 91.87111871118714, + 23.623616808640236 + ], + [ + 91.70551705517056, + 22.985522215184062 + ], + [ + 91.15831158311585, + 23.50344514780366 + ], + [ + 91.46791467914682, + 24.072144838523215 + ], + [ + 91.91431914319145, + 24.12969183103651 + ], + [ + 92.37512375123754, + 24.97597113270251 + ], + [ + 91.79911799117991, + 25.146919551639044 + ], + [ + 90.87390873908743, + 25.133379082812397 + ], + [ + 89.91989919899203, + 25.270476329682282 + ], + [ + 89.83349833498335, + 25.964425357048412 + ], + [ + 89.3546935469355, + 26.01520211514837 + ], + [ + 88.56268562685625, + 26.446804558998025 + ], + [ + 88.20988209882097, + 25.768088559061894 + ], + [ + 88.92988929889299, + 25.238317716218972 + ], + [ + 88.30708307083074, + 24.865954823485936 + ], + [ + 88.0838808388084, + 24.502054723769547 + ], + [ + 88.69948699486997, + 24.232937905839762 + ], + [ + 88.53028530285303, + 23.63038704305356 + ], + [ + 88.87588875888758, + 22.87889102317415 + ], + [ + 89.03069030690307, + 22.056307541954794 + ], + [ + 88.89028890288904, + 21.69071488363508 + ], + [ + 88.20988209882097, + 21.702562793858405 + ], + [ + 86.97506975069751, + 21.4960706442519 + ], + [ + 87.03267032670328, + 20.74288206576915 + ], + [ + 86.49986499864997, + 20.152179113206287 + ], + [ + 85.05985059850599, + 19.478540789080142 + ], + [ + 83.94023940239401, + 18.3022125597644 + ], + [ + 83.18783187831878, + 17.67088820072155 + ], + [ + 82.19422194221943, + 17.015868021232066 + ], + [ + 82.19062190621906, + 16.557184639729087 + ], + [ + 81.69381693816939, + 16.31007108364261 + ], + [ + 80.79020790207903, + 15.951248659736223 + ], + [ + 80.32580325803258, + 15.898779343032942 + ], + [ + 80.02340023400234, + 15.13712797153353 + ], + [ + 80.23220232202323, + 13.835550405571212 + ], + [ + 80.28620286202863, + 13.006196689938534 + ], + [ + 79.86139861398613, + 12.056671313469266 + ], + [ + 79.85779857798576, + 10.35734247572394 + ], + [ + 79.33939339393396, + 10.308258276227306 + ], + [ + 78.8857888578886, + 9.546606904727895 + ], + [ + 79.18819188191884, + 9.216557977078153 + ], + [ + 78.27738277382775, + 8.932208131718383 + ], + [ + 77.94257942579429, + 8.253492131782238 + ], + [ + 77.53937539375397, + 7.965757169215806 + ], + [ + 76.59256592565924, + 8.900049518255074 + ], + [ + 76.13176131761321, + 10.299795483210644 + ], + [ + 75.74655746557465, + 11.308560410796517 + ], + [ + 75.39735397353974, + 11.780784261126158 + ], + [ + 74.86454864548645, + 12.742157547818735 + ], + [ + 74.61614616146161, + 13.992958355681097 + ], + [ + 74.44334443344434, + 14.617512480310609 + ], + [ + 73.53253532535325, + 15.99017750761287 + ], + [ + 73.11853118531187, + 17.928157108428024 + ], + [ + 72.81972819728199, + 19.20773141254702 + ], + [ + 72.82332823328235, + 20.419603372532734 + ], + [ + 72.62892628926289, + 21.35558828017534 + ], + [ + 71.17451174511746, + 20.758115093199137 + ], + [ + 70.4689046890469, + 20.876594195432375 + ], + [ + 69.16569165691658, + 22.088466155418104 + ], + [ + 69.64449644496446, + 22.450673696531155 + ], + [ + 69.34929349293495, + 22.843347292504177 + ], + [ + 68.17568175681757, + 23.691319152773517 + ], + [ + 68.84168841688418, + 24.35987980108966 + ], + [ + 71.04491044910449, + 24.356494683883 + ], + [ + 70.84330843308433, + 25.214621895772325 + ], + [ + 70.28170281702819, + 25.722389476771923 + ], + [ + 70.17010170101702, + 26.492503641287996 + ], + [ + 69.5148951489515, + 26.941031671170975 + ], + [ + 70.61650616506165, + 27.988725446633495 + ], + [ + 71.77931779317794, + 27.912560309483553 + ], + [ + 72.82332823328235, + 28.961946643549396 + ], + [ + 73.44973449734499, + 29.97578924694527 + ], + [ + 74.42174421744218, + 30.979476498721155 + ], + [ + 74.40734407344075, + 31.692043670723933 + ], + [ + 75.25695256952571, + 32.270898713063474 + ], + [ + 74.45054450544507, + 32.765125825236424 + ], + [ + 74.10494104941051, + 33.44214926656923 + ], + [ + 73.74853748537487, + 34.31720206449188 + ], + [ + 74.24174241742418, + 34.74880450834155 + ], + [ + 75.75735757357575, + 34.50507606946174 + ], + [ + 76.87336873368736, + 34.654021226554946 + ], + [ + 77.83817838178385, + 35.49353029380762 + ] + ] + ] + }, + "countryRef": { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 1800, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1052, + "child_mortality": 3561366, + "fertility": 5.95, + "life_expect": 25.4424, + "population": 168574895 + }, + "x": 1052, + "y": 25.4424, + "size": 168574895, + "color": "Asia", + "map_id": 356 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 1800, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1052, + "child_mortality": 3561366, + "fertility": 5.95, + "life_expect": 25.4424, + "population": 168574895 + }, + "x": 1052, + "y": 25.4424, + "size": 168574895, + "color": "Asia", + "map_id": 356 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.30748913741641637, + "skewed": 0.05223424802763876, + "clumpy": 0.23406666278763644, + "sparse": 0.829005491080681, + "striated": 0.003740647520015683, + "convex": 0.3017347324953199, + "skinny": 0.35834117645795804, + "stringy": 0.2809850013035762, + "monotonic": 0.27461729347321606, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + }, + { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 1800, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1052, + "child_mortality": 3561366, + "fertility": 5.95, + "life_expect": 25.4424, + "population": 168574895 + }, + "x": 1052, + "y": 25.4424, + "size": 168574895, + "color": "Asia", + "map_id": 356 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 80.78704911344607, + -88.17552980188768 + ], + "drag": [ + 80.78704911344607, + -88.17552980188768 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 270 + }, + { + "attrs": { + "name": "Selected India (9 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.31\",\"payload\":{\"numVal\":0.30748913741641637},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.05\",\"payload\":{\"numVal\":0.05223424802763876},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.23\",\"payload\":{\"numVal\":0.23406666278763644},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.83\",\"payload\":{\"numVal\":0.829005491080681},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0\",\"payload\":{\"numVal\":0.003740647520015683},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.3\",\"payload\":{\"numVal\":0.3017347324953199},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.36\",\"payload\":{\"numVal\":0.35834117645795804},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.28\",\"payload\":{\"numVal\":0.2809850013035762},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.27\",\"payload\":{\"numVal\":0.27461729347321606},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = France\",\"text\":\"France\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Russia\",\"text\":\"Russia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Turkey\",\"text\":\"Turkey\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Algeria\",\"text\":\"Algeria\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Indonesia\",\"text\":\"Indonesia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = India\",\"text\":\"India\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 271 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected India (9 Countries)", + "timestamp": 1522412457594, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 360, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 120.29340293402936, + -10.258021312859967 + ], + [ + 118.96858968589686, + -9.557302051080512 + ], + [ + 119.90099900999013, + -9.360965253093994 + ], + [ + 120.42660426604266, + -9.665625801693764 + ], + [ + 120.77580775807758, + -9.97028635029352 + ], + [ + 120.71460714607144, + -10.239403168223305 + ], + [ + 120.29340293402936, + -10.258021312859967 + ] + ] + ], + [ + [ + [ + 124.969849698497, + -8.892126519971029 + ], + [ + 125.07065070650708, + -9.090155876560871 + ], + [ + 125.0886508865089, + -9.393123866557303 + ], + [ + 124.43704437044374, + -10.139542210626729 + ], + [ + 123.58023580235806, + -10.35957482905988 + ], + [ + 123.46143461434616, + -10.239403168223305 + ], + [ + 123.55143551435515, + -9.899198888953578 + ], + [ + 123.97983979839802, + -9.289877791754051 + ], + [ + 124.969849698497, + -8.892126519971029 + ] + ] + ], + [ + [ + [ + 117.27657276572768, + -9.041071677064252 + ], + [ + 116.740167401674, + -9.03260888404759 + ], + [ + 117.08217082170825, + -8.457138958914697 + ], + [ + 117.63297632976332, + -8.44867616589805 + ], + [ + 117.89937899378992, + -8.094931417801646 + ], + [ + 118.25938259382593, + -8.362355677128107 + ], + [ + 118.87858878588787, + -8.281112864168179 + ], + [ + 119.12699126991271, + -8.70594507360451 + ], + [ + 117.97137971379715, + -8.907359547401015 + ], + [ + 117.27657276572768, + -9.041071677064252 + ] + ] + ], + [ + [ + [ + 121.25461254612549, + -8.934440485054324 + ], + [ + 119.92259922599226, + -8.810883707011087 + ], + [ + 119.92259922599226, + -8.445291048691374 + ], + [ + 120.71460714607144, + -8.237106340481546 + ], + [ + 121.34101341013411, + -8.536689213271302 + ], + [ + 122.00702007020072, + -8.460524076121374 + ], + [ + 122.90342903429035, + -8.094931417801646 + ], + [ + 122.7558275582756, + -8.650090639694554 + ], + [ + 121.25461254612549, + -8.934440485054324 + ] + ] + ], + [ + [ + [ + 114.5657456574566, + -8.751644155894468 + ], + [ + 113.46413464134645, + -8.34881520830146 + ], + [ + 112.56052560525609, + -8.37589614595477 + ], + [ + 111.52371523715237, + -8.301423567408165 + ], + [ + 110.5877058770588, + -8.12201235545497 + ], + [ + 109.42849428494287, + -7.741186669705257 + ], + [ + 108.6940869408694, + -7.641325712108667 + ], + [ + 108.27648276482768, + -7.766575048755243 + ], + [ + 106.4548645486455, + -7.355283308145559 + ], + [ + 106.2820628206282, + -6.925373422899227 + ], + [ + 105.36405364053644, + -6.850900844352623 + ], + [ + 106.05166051660518, + -5.896297792073369 + ], + [ + 107.26487264872651, + -5.955537343189988 + ], + [ + 108.07128071280715, + -6.3465183805596865 + ], + [ + 108.48528485284857, + -6.422683517709629 + ], + [ + 108.62208622086223, + -6.778120824409342 + ], + [ + 110.54090540905412, + -6.877981782005932 + ], + [ + 110.76050760507604, + -6.464997482792924 + ], + [ + 112.61452614526144, + -6.945684126139213 + ], + [ + 112.97812978129781, + -7.593934071215372 + ], + [ + 114.47934479344792, + -7.776730400375229 + ], + [ + 115.7069570695707, + -8.37081847014477 + ], + [ + 114.5657456574566, + -8.751644155894468 + ] + ] + ], + [ + [ + [ + 134.2111421114211, + -6.894907368039256 + ], + [ + 134.1139411394114, + -6.141718789556506 + ], + [ + 134.29034290342906, + -5.7828963656501315 + ], + [ + 134.49914499144995, + -5.444384644983728 + ], + [ + 134.7259472594726, + -5.73719728336016 + ], + [ + 134.7259472594726, + -6.214498809499787 + ], + [ + 134.2111421114211, + -6.894907368039256 + ] + ] + ], + [ + [ + [ + 126.87426874268743, + -3.790754889528344 + ], + [ + 126.18306183061833, + -3.6079585603684876 + ], + [ + 125.9886598865989, + -3.178048675122156 + ], + [ + 127.00027000270006, + -3.128964475625537 + ], + [ + 127.2486724867249, + -3.4590134032752786 + ], + [ + 126.87426874268743, + -3.790754889528344 + ] + ] + ], + [ + [ + [ + 130.83430834308342, + -3.8584572336616247 + ], + [ + 129.9918999189992, + -3.445472934448617 + ], + [ + 129.1566915669157, + -3.3625375628853504 + ], + [ + 128.59148591485916, + -3.428547348415293 + ], + [ + 127.90027900279006, + -3.3930036177453218 + ], + [ + 128.13428134281344, + -2.8429220716624286 + ], + [ + 129.37269372693726, + -2.8023006651824574 + ], + [ + 130.4707047070471, + -3.0934207449555657 + ], + [ + 130.83430834308342, + -3.8584572336616247 + ] + ] + ], + [ + [ + [ + 141.00081000810007, + -2.600886191385939 + ], + [ + 141.0188101881019, + -5.85906150280006 + ], + [ + 141.03321033210335, + -9.11723681421418 + ], + [ + 140.1440014400144, + -8.296345891598165 + ], + [ + 139.12879128791292, + -8.096623976404985 + ], + [ + 138.88038880388802, + -8.38097382176477 + ], + [ + 137.61317613176135, + -8.41143987662474 + ], + [ + 138.0379803798038, + -7.597319188422048 + ], + [ + 138.66798667986683, + -7.319739577475588 + ], + [ + 138.4087840878409, + -6.233116954136435 + ], + [ + 137.92637926379263, + -5.393607886883757 + ], + [ + 135.98955989559897, + -4.547328585217755 + ], + [ + 135.1651516515165, + -4.462700655051151 + ], + [ + 133.6639366393664, + -3.538563657631883 + ], + [ + 133.36873368733688, + -4.024327976788172 + ], + [ + 132.98352983529838, + -4.112341024161424 + ], + [ + 132.75672756727568, + -3.746748365841711 + ], + [ + 132.7531275312753, + -3.3117608047853935 + ], + [ + 131.98991989919898, + -2.820918809819105 + ], + [ + 133.06633066330664, + -2.460403827309392 + ], + [ + 133.77913779137793, + -2.4790219719460396 + ], + [ + 133.69633696336962, + -2.2149828298262406 + ], + [ + 132.23112231122315, + -2.2132902712229168 + ], + [ + 131.8351183511835, + -1.6175096428500524 + ], + [ + 130.94230942309423, + -1.433020755086858 + ], + [ + 130.52110521105215, + -0.9371010843105836 + ], + [ + 131.86751867518677, + -0.6950652040340941 + ], + [ + 132.3787237872379, + -0.3700939521943525 + ], + [ + 133.98433984339846, + -0.7796931342006985 + ], + [ + 134.1427414274143, + -1.1520560269337494 + ], + [ + 134.42354423544236, + -2.76844949311581 + ], + [ + 135.45675456754566, + -3.3676152386953504 + ], + [ + 136.2919629196292, + -2.306380994406169 + ], + [ + 137.44037440374404, + -1.7038301316199806 + ], + [ + 138.32958329583295, + -1.7021375730166426 + ], + [ + 139.18639186391863, + -2.050804645303046 + ], + [ + 139.92799927999283, + -2.409627069209421 + ], + [ + 141.00081000810007, + -2.600886191385939 + ] + ] + ], + [ + [ + [ + 119.79659796597969, + -5.6728800564335415 + ], + [ + 119.36819368193682, + -5.380067418057109 + ], + [ + 119.6525965259653, + -4.459315537844489 + ], + [ + 119.49779497794981, + -3.49455713394525 + ], + [ + 119.07659076590767, + -3.487786899531912 + ], + [ + 118.7669876698767, + -2.8023006651824574 + ], + [ + 119.18099180991811, + -2.14728048569296 + ], + [ + 119.3249932499325, + -1.3534705007302534 + ], + [ + 119.82539825398254, + 0.1545992148385693 + ], + [ + 120.03420034200343, + 0.5658909554482534 + ], + [ + 120.88740887408875, + 1.308924182311003 + ], + [ + 121.6686166861669, + 1.0144189853312326 + ], + [ + 122.92862928629285, + 0.8756291798580094 + ], + [ + 124.07704077040773, + 0.9179431449413045 + ], + [ + 125.06705067050672, + 1.6440507857707445 + ], + [ + 125.23985239852402, + 1.4206330501309168 + ], + [ + 124.43704437044374, + 0.4271011499750301 + ], + [ + 123.68463684636845, + 0.23584202779851182 + ], + [ + 122.72342723427238, + 0.43048626718169203 + ], + [ + 121.05661056610569, + 0.3814020676850589 + ], + [ + 120.18180181801819, + 0.23753458640183567 + ], + [ + 120.04140041400416, + -0.5190391092875757 + ], + [ + 120.93420934209342, + -1.4093249346402104 + ], + [ + 121.47421474214741, + -0.9557192289472312 + ], + [ + 123.3390333903339, + -0.6155149496774897 + ], + [ + 123.259832598326, + -1.0758908897838069 + ], + [ + 122.82422824228246, + -0.9303308498972456 + ], + [ + 122.38862388623886, + -1.5176486852534623 + ], + [ + 121.50661506615069, + -1.9052446054164847 + ], + [ + 122.45342453424536, + -3.186511468138818 + ], + [ + 122.27342273422738, + -3.530100864615221 + ], + [ + 123.16983169831701, + -4.684425832087655 + ], + [ + 123.16263162631628, + -5.341138570180476 + ], + [ + 122.62982629826297, + -5.633951208556908 + ], + [ + 122.23742237422374, + -5.283591577667181 + ], + [ + 122.71982719827201, + -4.464393213654489 + ], + [ + 121.7370173701737, + -4.851989133817526 + ], + [ + 121.48861488614887, + -4.574409522871065 + ], + [ + 121.61821618216186, + -4.188506161311366 + ], + [ + 120.89820898208984, + -3.602880884558502 + ], + [ + 120.97380973809737, + -2.6279671290392628 + ], + [ + 120.30420304203045, + -2.9309351190356807 + ], + [ + 120.39060390603908, + -4.097107996731438 + ], + [ + 120.43020430204302, + -5.529012575150318 + ], + [ + 119.79659796597969, + -5.6728800564335415 + ] + ] + ], + [ + [ + [ + 128.09828098280985, + -0.8998647950372742 + ], + [ + 127.69507695076953, + -0.2668478773911005 + ], + [ + 127.39987399874002, + 1.0110338681245707 + ], + [ + 127.60147601476018, + 1.8099215288972772 + ], + [ + 127.93267932679328, + 2.173821628613652 + ], + [ + 128.0046800468005, + 1.6288177583407446 + ], + [ + 128.59508595085953, + 1.5408047109674925 + ], + [ + 128.68868688686888, + 1.1328980875644703 + ], + [ + 128.63468634686348, + 0.2578452896418213 + ], + [ + 128.11988119881198, + 0.3560136886350733 + ], + [ + 127.96867968679686, + -0.25161484996111483 + ], + [ + 128.3790837908379, + -0.7796931342006985 + ], + [ + 128.09828098280985, + -0.8998647950372742 + ] + ] + ], + [ + [ + [ + 109.66249662496625, + 2.0062583268837955 + ], + [ + 109.83169831698319, + 1.3376976785676504 + ], + [ + 110.51570515705157, + 0.7723831050547574 + ], + [ + 111.160111601116, + 0.9771826960579233 + ], + [ + 111.79731797317976, + 0.9044026761146569 + ], + [ + 112.38052380523806, + 1.4104776985109169 + ], + [ + 112.85932859328597, + 1.4984907458841832 + ], + [ + 113.80613806138064, + 1.2175260177310747 + ], + [ + 114.619746197462, + 1.4307884017509025 + ], + [ + 115.13455134551344, + 2.8220715736898256 + ], + [ + 115.519755197552, + 3.1690460873728767 + ], + [ + 115.86535865358655, + 4.306445468811987 + ], + [ + 117.01377013770139, + 4.306445468811987 + ], + [ + 117.88137881378816, + 4.137189608478792 + ], + [ + 117.31257312573126, + 3.2350558729028336 + ], + [ + 118.04698046980474, + 2.287223055036904 + ], + [ + 117.87417874178743, + 1.826847114930601 + ], + [ + 118.99738997389977, + 0.9027101175113188 + ], + [ + 117.8129781297813, + 0.7842310152780811 + ], + [ + 117.47817478174784, + 0.10212989813527429 + ], + [ + 117.52137521375215, + -0.803388954647346 + ], + [ + 116.56016560165602, + -1.4871826303934768 + ], + [ + 116.53496534965353, + -2.4840996477560395 + ], + [ + 116.14976149761497, + -4.012480066564848 + ], + [ + 116.00216002160022, + -3.6570427598651207 + ], + [ + 114.86454864548648, + -4.107263348351438 + ], + [ + 114.46854468544689, + -3.4962496925485738 + ], + [ + 113.7557375573756, + -3.438702700035293 + ], + [ + 113.25533255332556, + -3.118809124005537 + ], + [ + 112.06732067320672, + -3.477631547911926 + ], + [ + 111.7037170371704, + -2.9952523459622995 + ], + [ + 111.04851048510488, + -3.0494142212689326 + ], + [ + 110.22410224102242, + -2.934320236242357 + ], + [ + 110.06930069300694, + -1.5921212638000668 + ], + [ + 109.57249572495726, + -1.3145416528536202 + ], + [ + 109.09009090090905, + -0.45979955817095686 + ], + [ + 108.95328953289533, + 0.41525323975170636 + ], + [ + 109.06849068490686, + 1.3427753543776362 + ], + [ + 109.66249662496625, + 2.0062583268837955 + ] + ] + ], + [ + [ + [ + 104.70884708847092, + -5.872601971626722 + ], + [ + 103.86643866438664, + -5.036478021580706 + ], + [ + 102.5848258482585, + -4.220664774774676 + ], + [ + 102.15642156421563, + -3.6147287947818256 + ], + [ + 101.40041400414003, + -2.8006081065791193 + ], + [ + 100.90360903609036, + -2.050804645303046 + ], + [ + 100.14040140401403, + -0.651058680347461 + ], + [ + 99.26199261992622, + 0.1833727110952168 + ], + [ + 98.97038970389707, + 1.0431924815878801 + ], + [ + 98.59958599585997, + 1.823461997723939 + ], + [ + 97.69957699576997, + 2.4530937981634366 + ], + [ + 97.17757177571775, + 3.309528451449438 + ], + [ + 96.42516425164251, + 3.8680727905490073 + ], + [ + 95.38115381153813, + 4.97162099992147 + ], + [ + 95.2947529475295, + 5.479388580921082 + ], + [ + 95.93555935559357, + 5.438767174441111 + ], + [ + 97.48357483574836, + 5.245815493661254 + ], + [ + 98.36918369183695, + 4.2692091795386915 + ], + [ + 99.14319143191432, + 3.5904931796025465 + ], + [ + 99.6939969399694, + 3.1741237631828767 + ], + [ + 100.64080640806407, + 2.0993490500670475 + ], + [ + 101.65961659616596, + 2.084116022637062 + ], + [ + 102.49842498424988, + 1.398629788287593 + ], + [ + 103.07803078030781, + 0.5608132796382534 + ], + [ + 103.83763837638378, + 0.10382245673861235 + ], + [ + 103.43803438034382, + -0.7119907900674178 + ], + [ + 104.01044010440103, + -1.0589653037504831 + ], + [ + 104.37044370443704, + -1.0843536828004687 + ], + [ + 104.53964539645398, + -1.781687827373247 + ], + [ + 104.8888488884889, + -2.3402321664728163 + ], + [ + 105.62325623256231, + -2.4282452138460826 + ], + [ + 106.10926109261095, + -3.0612621314922563 + ], + [ + 105.85725857258575, + -4.30529270494128 + ], + [ + 105.8176581765818, + -5.852291268386736 + ], + [ + 104.70884708847092, + -5.872601971626722 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.7023439299064882, + "skewed": 0.49031244208271296, + "clumpy": 0.6734972944615256, + "sparse": 0.06855965931754127, + "striated": 0.8538216187555585, + "convex": 0.9813458961025647, + "skinny": 0.8274354938985189, + "stringy": 0.7922045522504819, + "monotonic": 0.675292464845332, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + }, + { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 102.55944532841735, + -88.8011800925879 + ], + "drag": [ + 102.55944532841735, + -88.8011800925879 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 272 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Bangladesh (10 Countries)", + "timestamp": 1522412463047, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 50, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 92.67392673926742, + 22.04107451452481 + ], + [ + 92.65232652326523, + 21.32342966671203 + ], + [ + 92.30312303123031, + 21.475759941011916 + ], + [ + 92.36792367923681, + 20.67010204582587 + ], + [ + 92.08352083520839, + 21.19141009565213 + ], + [ + 92.02592025920262, + 21.700870235255067 + ], + [ + 91.8351183511835, + 22.183249437204694 + ], + [ + 91.41751417514178, + 22.76548959675091 + ], + [ + 90.4959049590496, + 22.804418444627544 + ], + [ + 90.58590585905858, + 22.39312670401786 + ], + [ + 90.27270272702725, + 21.83627492352163 + ], + [ + 89.8478984789848, + 22.03938195592147 + ], + [ + 89.70029700297005, + 21.856585626761614 + ], + [ + 89.41949419494193, + 21.966601935978204 + ], + [ + 89.03069030690307, + 22.056307541954794 + ], + [ + 88.87588875888758, + 22.87889102317415 + ], + [ + 88.53028530285303, + 23.63038704305356 + ], + [ + 88.69948699486997, + 24.232937905839762 + ], + [ + 88.0838808388084, + 24.502054723769547 + ], + [ + 88.30708307083074, + 24.865954823485936 + ], + [ + 88.92988929889299, + 25.238317716218972 + ], + [ + 88.20988209882097, + 25.768088559061894 + ], + [ + 88.56268562685625, + 26.446804558998025 + ], + [ + 89.3546935469355, + 26.01520211514837 + ], + [ + 89.83349833498335, + 25.964425357048412 + ], + [ + 89.91989919899203, + 25.270476329682282 + ], + [ + 90.87390873908743, + 25.133379082812397 + ], + [ + 91.79911799117991, + 25.146919551639044 + ], + [ + 92.37512375123754, + 24.97597113270251 + ], + [ + 91.91431914319145, + 24.12969183103651 + ], + [ + 91.46791467914682, + 24.072144838523215 + ], + [ + 91.15831158311585, + 23.50344514780366 + ], + [ + 91.70551705517056, + 22.985522215184062 + ], + [ + 91.87111871118714, + 23.623616808640236 + ], + [ + 92.14472144721447, + 23.627001925846898 + ], + [ + 92.67392673926742, + 22.04107451452481 + ] + ] + ] + }, + "countryRef": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.17896435975872804, + "skewed": 0.3261966339592528, + "clumpy": 0.4106506640100325, + "sparse": 0.16132784573842884, + "striated": 0.7743473223897905, + "convex": 0.8367701063483586, + "skinny": 0.5584592915868904, + "stringy": 0.5383154985186209, + "monotonic": 0.6734273339483363, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + }, + { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 1800, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1052, + "child_mortality": 3561366, + "fertility": 5.95, + "life_expect": 25.4424, + "population": 168574895 + }, + "x": 1052, + "y": 25.4424, + "size": 168574895, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 88.8084582452776, + -88.13867947734407 + ], + "drag": [ + 88.8084582452776, + -88.13867947734407 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 273 + }, + { + "attrs": { + "name": "Selected Bangladesh (10 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.18\",\"payload\":{\"numVal\":0.17896435975872804},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.33\",\"payload\":{\"numVal\":0.3261966339592528},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.41\",\"payload\":{\"numVal\":0.4106506640100325},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.16\",\"payload\":{\"numVal\":0.16132784573842884},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.77\",\"payload\":{\"numVal\":0.7743473223897905},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.84\",\"payload\":{\"numVal\":0.8367701063483586},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.56\",\"payload\":{\"numVal\":0.5584592915868904},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.54\",\"payload\":{\"numVal\":0.5383154985186209},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.67\",\"payload\":{\"numVal\":0.6734273339483363},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = France\",\"text\":\"France\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Russia\",\"text\":\"Russia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Turkey\",\"text\":\"Turkey\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Algeria\",\"text\":\"Algeria\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Indonesia\",\"text\":\"Indonesia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = India\",\"text\":\"India\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Bangladesh\",\"text\":\"Bangladesh\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 274 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Bangladesh (10 Countries)", + "timestamp": 1522412463047, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 356, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 77.83817838178385, + 35.49353029380762 + ], + [ + 78.91098910989109, + 34.32227974030188 + ], + [ + 78.81018810188101, + 33.50646649349585 + ], + [ + 79.20979209792097, + 32.99362123668625 + ], + [ + 79.17739177391775, + 32.484161097083316 + ], + [ + 78.45738457384573, + 32.61787322674654 + ], + [ + 78.73818738187384, + 31.5160175759774 + ], + [ + 79.7209972099721, + 30.883000658331227 + ], + [ + 81.1106111061111, + 30.18397395515511 + ], + [ + 80.4770047700477, + 29.73036824946213 + ], + [ + 80.08820088200883, + 28.794383341819525 + ], + [ + 81.05661056610569, + 28.415250214673165 + ], + [ + 81.9998199982, + 27.926100778310214 + ], + [ + 83.30303303033031, + 27.364171322003983 + ], + [ + 84.67464674646749, + 27.235536868150746 + ], + [ + 85.25065250652506, + 26.72607672854781 + ], + [ + 86.02466024660248, + 26.63129344676122 + ], + [ + 87.22707227072272, + 26.397720359501406 + ], + [ + 88.0586805868059, + 26.414645945534716 + ], + [ + 88.17388173881739, + 26.810704658714414 + ], + [ + 88.04428044280445, + 27.44541413496391 + ], + [ + 88.11988119881198, + 27.87701657881358 + ], + [ + 88.73188731887319, + 28.086893845626747 + ], + [ + 88.81468814688145, + 27.299854095077364 + ], + [ + 88.83628836288364, + 27.09843962128086 + ], + [ + 89.74349743497436, + 26.719306494134486 + ], + [ + 90.37350373503733, + 26.875021885641033 + ], + [ + 91.21591215912161, + 26.809012100111076 + ], + [ + 92.03312033120335, + 26.837785596367723 + ], + [ + 92.10512105121052, + 27.45218436937725 + ], + [ + 91.69831698316983, + 27.77207794540699 + ], + [ + 92.50472504725047, + 27.897327282053567 + ], + [ + 93.4119341193412, + 28.640360508916316 + ], + [ + 94.56754567545676, + 29.276762543769152 + ], + [ + 95.40635406354062, + 29.031341546286015 + ], + [ + 96.11916119161191, + 29.452788638515685 + ], + [ + 96.58716587165873, + 28.831619631092835 + ], + [ + 96.2487624876249, + 28.41186509746649 + ], + [ + 97.32877328773287, + 28.26122738176994 + ], + [ + 97.4007740077401, + 27.88209425462358 + ], + [ + 97.05157051570518, + 27.699297925463725 + ], + [ + 97.13437134371344, + 27.08320659385086 + ], + [ + 96.41796417964179, + 27.264310364407393 + ], + [ + 95.12555125551256, + 26.573746454247924 + ], + [ + 95.15435154351542, + 26.001661646321708 + ], + [ + 94.60354603546034, + 25.16215257906903 + ], + [ + 94.5531455314553, + 24.674695701309417 + ], + [ + 94.10674106741067, + 23.850419661486725 + ], + [ + 93.32553325533257, + 24.078915072936553 + ], + [ + 93.28593285932862, + 23.043069207697357 + ], + [ + 93.05913059130592, + 22.702864928427616 + ], + [ + 93.16713167131672, + 22.278032718991284 + ], + [ + 92.67392673926742, + 22.04107451452481 + ], + [ + 92.14472144721447, + 23.627001925846898 + ], + [ + 91.87111871118714, + 23.623616808640236 + ], + [ + 91.70551705517056, + 22.985522215184062 + ], + [ + 91.15831158311585, + 23.50344514780366 + ], + [ + 91.46791467914682, + 24.072144838523215 + ], + [ + 91.91431914319145, + 24.12969183103651 + ], + [ + 92.37512375123754, + 24.97597113270251 + ], + [ + 91.79911799117991, + 25.146919551639044 + ], + [ + 90.87390873908743, + 25.133379082812397 + ], + [ + 89.91989919899203, + 25.270476329682282 + ], + [ + 89.83349833498335, + 25.964425357048412 + ], + [ + 89.3546935469355, + 26.01520211514837 + ], + [ + 88.56268562685625, + 26.446804558998025 + ], + [ + 88.20988209882097, + 25.768088559061894 + ], + [ + 88.92988929889299, + 25.238317716218972 + ], + [ + 88.30708307083074, + 24.865954823485936 + ], + [ + 88.0838808388084, + 24.502054723769547 + ], + [ + 88.69948699486997, + 24.232937905839762 + ], + [ + 88.53028530285303, + 23.63038704305356 + ], + [ + 88.87588875888758, + 22.87889102317415 + ], + [ + 89.03069030690307, + 22.056307541954794 + ], + [ + 88.89028890288904, + 21.69071488363508 + ], + [ + 88.20988209882097, + 21.702562793858405 + ], + [ + 86.97506975069751, + 21.4960706442519 + ], + [ + 87.03267032670328, + 20.74288206576915 + ], + [ + 86.49986499864997, + 20.152179113206287 + ], + [ + 85.05985059850599, + 19.478540789080142 + ], + [ + 83.94023940239401, + 18.3022125597644 + ], + [ + 83.18783187831878, + 17.67088820072155 + ], + [ + 82.19422194221943, + 17.015868021232066 + ], + [ + 82.19062190621906, + 16.557184639729087 + ], + [ + 81.69381693816939, + 16.31007108364261 + ], + [ + 80.79020790207903, + 15.951248659736223 + ], + [ + 80.32580325803258, + 15.898779343032942 + ], + [ + 80.02340023400234, + 15.13712797153353 + ], + [ + 80.23220232202323, + 13.835550405571212 + ], + [ + 80.28620286202863, + 13.006196689938534 + ], + [ + 79.86139861398613, + 12.056671313469266 + ], + [ + 79.85779857798576, + 10.35734247572394 + ], + [ + 79.33939339393396, + 10.308258276227306 + ], + [ + 78.8857888578886, + 9.546606904727895 + ], + [ + 79.18819188191884, + 9.216557977078153 + ], + [ + 78.27738277382775, + 8.932208131718383 + ], + [ + 77.94257942579429, + 8.253492131782238 + ], + [ + 77.53937539375397, + 7.965757169215806 + ], + [ + 76.59256592565924, + 8.900049518255074 + ], + [ + 76.13176131761321, + 10.299795483210644 + ], + [ + 75.74655746557465, + 11.308560410796517 + ], + [ + 75.39735397353974, + 11.780784261126158 + ], + [ + 74.86454864548645, + 12.742157547818735 + ], + [ + 74.61614616146161, + 13.992958355681097 + ], + [ + 74.44334443344434, + 14.617512480310609 + ], + [ + 73.53253532535325, + 15.99017750761287 + ], + [ + 73.11853118531187, + 17.928157108428024 + ], + [ + 72.81972819728199, + 19.20773141254702 + ], + [ + 72.82332823328235, + 20.419603372532734 + ], + [ + 72.62892628926289, + 21.35558828017534 + ], + [ + 71.17451174511746, + 20.758115093199137 + ], + [ + 70.4689046890469, + 20.876594195432375 + ], + [ + 69.16569165691658, + 22.088466155418104 + ], + [ + 69.64449644496446, + 22.450673696531155 + ], + [ + 69.34929349293495, + 22.843347292504177 + ], + [ + 68.17568175681757, + 23.691319152773517 + ], + [ + 68.84168841688418, + 24.35987980108966 + ], + [ + 71.04491044910449, + 24.356494683883 + ], + [ + 70.84330843308433, + 25.214621895772325 + ], + [ + 70.28170281702819, + 25.722389476771923 + ], + [ + 70.17010170101702, + 26.492503641287996 + ], + [ + 69.5148951489515, + 26.941031671170975 + ], + [ + 70.61650616506165, + 27.988725446633495 + ], + [ + 71.77931779317794, + 27.912560309483553 + ], + [ + 72.82332823328235, + 28.961946643549396 + ], + [ + 73.44973449734499, + 29.97578924694527 + ], + [ + 74.42174421744218, + 30.979476498721155 + ], + [ + 74.40734407344075, + 31.692043670723933 + ], + [ + 75.25695256952571, + 32.270898713063474 + ], + [ + 74.45054450544507, + 32.765125825236424 + ], + [ + 74.10494104941051, + 33.44214926656923 + ], + [ + 73.74853748537487, + 34.31720206449188 + ], + [ + 74.24174241742418, + 34.74880450834155 + ], + [ + 75.75735757357575, + 34.50507606946174 + ], + [ + 76.87336873368736, + 34.654021226554946 + ], + [ + 77.83817838178385, + 35.49353029380762 + ] + ] + ] + }, + "countryRef": { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 1800, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1052, + "child_mortality": 3561366, + "fertility": 5.95, + "life_expect": 25.4424, + "population": 168574895 + }, + "x": 1052, + "y": 25.4424, + "size": 168574895, + "color": "Asia", + "map_id": 356 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 1800, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1052, + "child_mortality": 3561366, + "fertility": 5.95, + "life_expect": 25.4424, + "population": 168574895 + }, + "x": 1052, + "y": 25.4424, + "size": 168574895, + "color": "Asia", + "map_id": 356 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.30748913741641637, + "skewed": 0.05223424802763876, + "clumpy": 0.23406666278763644, + "sparse": 0.829005491080681, + "striated": 0.003740647520015683, + "convex": 0.3017347324953199, + "skinny": 0.35834117645795804, + "stringy": 0.2809850013035762, + "monotonic": 0.27461729347321606, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + }, + { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 1800, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1052, + "child_mortality": 3561366, + "fertility": 5.95, + "life_expect": 25.4424, + "population": 168574895 + }, + "x": 1052, + "y": 25.4424, + "size": 168574895, + "color": "Asia", + "map_id": 356 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 80.78704911344607, + -88.17552980188768 + ], + "drag": [ + 80.78704911344607, + -88.17552980188768 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 275 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Vietnam (11 Countries)", + "timestamp": 1522412468959, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 704, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 108.04968049680497, + 21.551925078161858 + ], + [ + 106.71406714067143, + 20.697182983479195 + ], + [ + 105.88245882458824, + 19.752735282819927 + ], + [ + 105.66285662856632, + 19.058786255453796 + ], + [ + 106.42606426064259, + 18.004322245577953 + ], + [ + 107.36207362073623, + 16.69766700380565 + ], + [ + 108.26928269282695, + 16.07988311358946 + ], + [ + 108.8776887768878, + 15.275917777006754 + ], + [ + 109.33489334893352, + 13.425951223564866 + ], + [ + 109.20169201692016, + 11.667382834702906 + ], + [ + 108.36648366483666, + 11.00897753800676 + ], + [ + 107.2216722167222, + 10.364112710137263 + ], + [ + 106.40446404464046, + 9.53137387729791 + ], + [ + 105.15885158851592, + 8.600466645465303 + ], + [ + 104.79524795247954, + 9.240253797524801 + ], + [ + 105.0760507605076, + 9.918969797460946 + ], + [ + 104.33444334443345, + 10.485976929577163 + ], + [ + 105.19845198451986, + 10.888805877170185 + ], + [ + 106.24966249662498, + 10.961585897113466 + ], + [ + 105.81045810458107, + 11.567521877106316 + ], + [ + 107.49167491674916, + 12.337636041622389 + ], + [ + 107.61407614076143, + 13.535967532781456 + ], + [ + 107.38367383673835, + 14.202835622494263 + ], + [ + 107.56367563675639, + 15.20144519846015 + ], + [ + 107.31167311673119, + 15.908934694652928 + ], + [ + 106.55566555665558, + 16.604576280622382 + ], + [ + 105.92565925659255, + 17.48470675435503 + ], + [ + 105.09405094050942, + 18.667805218084112 + ], + [ + 103.89523895238955, + 19.2652784050603 + ], + [ + 104.18324183241833, + 19.62410082896669 + ], + [ + 104.8240482404824, + 19.88644741248315 + ], + [ + 104.43524435244353, + 20.758115093199137 + ], + [ + 103.20403204032039, + 20.7665778862158 + ], + [ + 102.75402754027539, + 21.675481856205096 + ], + [ + 102.17082170821709, + 22.464214165357802 + ], + [ + 102.70722707227071, + 22.709635162840954 + ], + [ + 103.50283502835032, + 22.704557487030954 + ], + [ + 104.47844478444784, + 22.81965147205753 + ], + [ + 105.3280532805328, + 23.352807432107113 + ], + [ + 105.81045810458107, + 22.977059422167414 + ], + [ + 106.72486724867252, + 22.794263093007544 + ], + [ + 106.56646566465668, + 22.218793167874665 + ], + [ + 107.04167041670416, + 21.81257910307498 + ], + [ + 108.04968049680497, + 21.551925078161858 + ] + ] + ] + }, + "countryRef": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 1800, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 861, + "child_mortality": 91727, + "fertility": 4.7, + "life_expect": 32, + "population": 6551000 + }, + "x": 861, + "y": 32, + "size": 6551000, + "color": "Asia", + "map_id": 704 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 1800, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 861, + "child_mortality": 91727, + "fertility": 4.7, + "life_expect": 32, + "population": 6551000 + }, + "x": 861, + "y": 32, + "size": 6551000, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.1839355101184661, + "skewed": 0.8675375846591606, + "clumpy": 0.5780902950195881, + "sparse": 0.48780019032112554, + "striated": 0.2091745419793265, + "convex": 0.22498918719608652, + "skinny": 0.5950269540453177, + "stringy": 0.005904767122650645, + "monotonic": 0.11094055329520303, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + }, + { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 1800, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1052, + "child_mortality": 3561366, + "fertility": 5.95, + "life_expect": 25.4424, + "population": 168574895 + }, + "x": 1052, + "y": 25.4424, + "size": 168574895, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + }, + { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 1800, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 861, + "child_mortality": 91727, + "fertility": 4.7, + "life_expect": 32, + "population": 6551000 + }, + "x": 861, + "y": 32, + "size": 6551000, + "color": "Asia", + "map_id": 704 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 108.8619810748564, + -88.47603546222223 + ], + "drag": [ + 108.8619810748564, + -88.47603546222223 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 276 + }, + { + "attrs": { + "name": "Selected Vietnam (11 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.18\",\"payload\":{\"numVal\":0.1839355101184661},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.87\",\"payload\":{\"numVal\":0.8675375846591606},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.58\",\"payload\":{\"numVal\":0.5780902950195881},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.49\",\"payload\":{\"numVal\":0.48780019032112554},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.21\",\"payload\":{\"numVal\":0.2091745419793265},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.22\",\"payload\":{\"numVal\":0.22498918719608652},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.6\",\"payload\":{\"numVal\":0.5950269540453177},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.01\",\"payload\":{\"numVal\":0.005904767122650645},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.11\",\"payload\":{\"numVal\":0.11094055329520303},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = United States\",\"text\":\"United States\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = France\",\"text\":\"France\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Russia\",\"text\":\"Russia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Iran\",\"text\":\"Iran\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Mexico\",\"text\":\"Mexico\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Turkey\",\"text\":\"Turkey\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Algeria\",\"text\":\"Algeria\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Indonesia\",\"text\":\"Indonesia\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = India\",\"text\":\"India\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Bangladesh\",\"text\":\"Bangladesh\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Vietnam\",\"text\":\"Vietnam\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 277 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Vietnam (11 Countries)", + "timestamp": 1522412468959, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 50, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 92.67392673926742, + 22.04107451452481 + ], + [ + 92.65232652326523, + 21.32342966671203 + ], + [ + 92.30312303123031, + 21.475759941011916 + ], + [ + 92.36792367923681, + 20.67010204582587 + ], + [ + 92.08352083520839, + 21.19141009565213 + ], + [ + 92.02592025920262, + 21.700870235255067 + ], + [ + 91.8351183511835, + 22.183249437204694 + ], + [ + 91.41751417514178, + 22.76548959675091 + ], + [ + 90.4959049590496, + 22.804418444627544 + ], + [ + 90.58590585905858, + 22.39312670401786 + ], + [ + 90.27270272702725, + 21.83627492352163 + ], + [ + 89.8478984789848, + 22.03938195592147 + ], + [ + 89.70029700297005, + 21.856585626761614 + ], + [ + 89.41949419494193, + 21.966601935978204 + ], + [ + 89.03069030690307, + 22.056307541954794 + ], + [ + 88.87588875888758, + 22.87889102317415 + ], + [ + 88.53028530285303, + 23.63038704305356 + ], + [ + 88.69948699486997, + 24.232937905839762 + ], + [ + 88.0838808388084, + 24.502054723769547 + ], + [ + 88.30708307083074, + 24.865954823485936 + ], + [ + 88.92988929889299, + 25.238317716218972 + ], + [ + 88.20988209882097, + 25.768088559061894 + ], + [ + 88.56268562685625, + 26.446804558998025 + ], + [ + 89.3546935469355, + 26.01520211514837 + ], + [ + 89.83349833498335, + 25.964425357048412 + ], + [ + 89.91989919899203, + 25.270476329682282 + ], + [ + 90.87390873908743, + 25.133379082812397 + ], + [ + 91.79911799117991, + 25.146919551639044 + ], + [ + 92.37512375123754, + 24.97597113270251 + ], + [ + 91.91431914319145, + 24.12969183103651 + ], + [ + 91.46791467914682, + 24.072144838523215 + ], + [ + 91.15831158311585, + 23.50344514780366 + ], + [ + 91.70551705517056, + 22.985522215184062 + ], + [ + 91.87111871118714, + 23.623616808640236 + ], + [ + 92.14472144721447, + 23.627001925846898 + ], + [ + 92.67392673926742, + 22.04107451452481 + ] + ] + ] + }, + "countryRef": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.17896435975872804, + "skewed": 0.3261966339592528, + "clumpy": 0.4106506640100325, + "sparse": 0.16132784573842884, + "striated": 0.7743473223897905, + "convex": 0.8367701063483586, + "skinny": 0.5584592915868904, + "stringy": 0.5383154985186209, + "monotonic": 0.6734273339483363, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + }, + { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 1800, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1052, + "child_mortality": 3561366, + "fertility": 5.95, + "life_expect": 25.4424, + "population": 168574895 + }, + "x": 1052, + "y": 25.4424, + "size": 168574895, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 88.8084582452776, + -88.13867947734407 + ], + "drag": [ + 88.8084582452776, + -88.13867947734407 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 278 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522412474095, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 1800, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 861, + "child_mortality": 91727, + "fertility": 4.7, + "life_expect": 32, + "population": 6551000 + }, + "x": 861, + "y": 32, + "size": 6551000, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.9000046385203273, + "skewed": 0.433949974230331, + "clumpy": 0.20882172431106238, + "sparse": 0.3569638531473214, + "striated": 0.935455222918717, + "convex": 0.8396892017882525, + "skinny": 0.05148993450583439, + "stringy": 0.2032920701170009, + "monotonic": 0.07015784448570228, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -5.156620156177409, + -89.60093457257213 + ], + "drag": [ + -5.156620156177409, + -89.60093457257213 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 279 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.9\",\"payload\":{\"numVal\":0.9000046385203273},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.43\",\"payload\":{\"numVal\":0.433949974230331},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.21\",\"payload\":{\"numVal\":0.20882172431106238},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.36\",\"payload\":{\"numVal\":0.3569638531473214},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.94\",\"payload\":{\"numVal\":0.935455222918717},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.84\",\"payload\":{\"numVal\":0.8396892017882525},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.05\",\"payload\":{\"numVal\":0.05148993450583439},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.2\",\"payload\":{\"numVal\":0.2032920701170009},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.07\",\"payload\":{\"numVal\":0.07015784448570228},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 280 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522412474095, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 704, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 108.04968049680497, + 21.551925078161858 + ], + [ + 106.71406714067143, + 20.697182983479195 + ], + [ + 105.88245882458824, + 19.752735282819927 + ], + [ + 105.66285662856632, + 19.058786255453796 + ], + [ + 106.42606426064259, + 18.004322245577953 + ], + [ + 107.36207362073623, + 16.69766700380565 + ], + [ + 108.26928269282695, + 16.07988311358946 + ], + [ + 108.8776887768878, + 15.275917777006754 + ], + [ + 109.33489334893352, + 13.425951223564866 + ], + [ + 109.20169201692016, + 11.667382834702906 + ], + [ + 108.36648366483666, + 11.00897753800676 + ], + [ + 107.2216722167222, + 10.364112710137263 + ], + [ + 106.40446404464046, + 9.53137387729791 + ], + [ + 105.15885158851592, + 8.600466645465303 + ], + [ + 104.79524795247954, + 9.240253797524801 + ], + [ + 105.0760507605076, + 9.918969797460946 + ], + [ + 104.33444334443345, + 10.485976929577163 + ], + [ + 105.19845198451986, + 10.888805877170185 + ], + [ + 106.24966249662498, + 10.961585897113466 + ], + [ + 105.81045810458107, + 11.567521877106316 + ], + [ + 107.49167491674916, + 12.337636041622389 + ], + [ + 107.61407614076143, + 13.535967532781456 + ], + [ + 107.38367383673835, + 14.202835622494263 + ], + [ + 107.56367563675639, + 15.20144519846015 + ], + [ + 107.31167311673119, + 15.908934694652928 + ], + [ + 106.55566555665558, + 16.604576280622382 + ], + [ + 105.92565925659255, + 17.48470675435503 + ], + [ + 105.09405094050942, + 18.667805218084112 + ], + [ + 103.89523895238955, + 19.2652784050603 + ], + [ + 104.18324183241833, + 19.62410082896669 + ], + [ + 104.8240482404824, + 19.88644741248315 + ], + [ + 104.43524435244353, + 20.758115093199137 + ], + [ + 103.20403204032039, + 20.7665778862158 + ], + [ + 102.75402754027539, + 21.675481856205096 + ], + [ + 102.17082170821709, + 22.464214165357802 + ], + [ + 102.70722707227071, + 22.709635162840954 + ], + [ + 103.50283502835032, + 22.704557487030954 + ], + [ + 104.47844478444784, + 22.81965147205753 + ], + [ + 105.3280532805328, + 23.352807432107113 + ], + [ + 105.81045810458107, + 22.977059422167414 + ], + [ + 106.72486724867252, + 22.794263093007544 + ], + [ + 106.56646566465668, + 22.218793167874665 + ], + [ + 107.04167041670416, + 21.81257910307498 + ], + [ + 108.04968049680497, + 21.551925078161858 + ] + ] + ] + }, + "countryRef": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 1800, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 861, + "child_mortality": 91727, + "fertility": 4.7, + "life_expect": 32, + "population": 6551000 + }, + "x": 861, + "y": 32, + "size": 6551000, + "color": "Asia", + "map_id": 704 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 1800, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 861, + "child_mortality": 91727, + "fertility": 4.7, + "life_expect": 32, + "population": 6551000 + }, + "x": 861, + "y": 32, + "size": 6551000, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.1839355101184661, + "skewed": 0.8675375846591606, + "clumpy": 0.5780902950195881, + "sparse": 0.48780019032112554, + "striated": 0.2091745419793265, + "convex": 0.22498918719608652, + "skinny": 0.5950269540453177, + "stringy": 0.005904767122650645, + "monotonic": 0.11094055329520303, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "United States", + "count": 216, + "this": { + "country": "United States", + "year": 1800, + "map_id": 840, + "continent": "America", + "main_religion": "Christian", + "gdp": 2128, + "child_mortality": 152156, + "fertility": 7.03, + "life_expect": 39.41, + "population": 6801854 + }, + "x": 2128, + "y": 39.41, + "size": 6801854, + "color": "America", + "map_id": 840 + }, + { + "country": "France", + "count": 216, + "this": { + "country": "France", + "year": 1800, + "map_id": 250, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1803, + "child_mortality": 355866, + "fertility": 4.41, + "life_expect": 33.96717024, + "population": 29355111 + }, + "x": 1803, + "y": 33.96717024, + "size": 29355111, + "color": "Europe", + "map_id": 250 + }, + { + "country": "Russia", + "count": 216, + "this": { + "country": "Russia", + "year": 1800, + "map_id": 643, + "continent": "Europe", + "main_religion": "Christian", + "gdp": 1430, + "child_mortality": 626632, + "fertility": 7, + "life_expect": 29.5734572, + "population": 31088398 + }, + "x": 1430, + "y": 29.5734572, + "size": 31088398, + "color": "Europe", + "map_id": 643 + }, + { + "country": "Iran", + "count": 216, + "this": { + "country": "Iran", + "year": 1800, + "map_id": 364, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 977, + "child_mortality": 154437, + "fertility": 7.08, + "life_expect": 25.6, + "population": 6269721 + }, + "x": 977, + "y": 25.6, + "size": 6269721, + "color": "Asia", + "map_id": 364 + }, + { + "country": "Mexico", + "count": 216, + "this": { + "country": "Mexico", + "year": 1800, + "map_id": 484, + "continent": "America", + "main_religion": "Christian", + "gdp": 1379, + "child_mortality": 141136, + "fertility": 6.8, + "life_expect": 26.9, + "population": 6181708 + }, + "x": 1379, + "y": 26.9, + "size": 6181708, + "color": "America", + "map_id": 484 + }, + { + "country": "Turkey", + "count": 216, + "this": { + "country": "Turkey", + "year": 1800, + "map_id": 792, + "continent": "Europe", + "main_religion": "Muslim", + "gdp": 1221, + "child_mortality": 176883, + "fertility": 6.92, + "life_expect": 35, + "population": 9773456 + }, + "x": 1221, + "y": 35, + "size": 9773456, + "color": "Europe", + "map_id": 792 + }, + { + "country": "Algeria", + "count": 216, + "this": { + "country": "Algeria", + "year": 1800, + "map_id": 12, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 716, + "child_mortality": 55380, + "fertility": 6.99, + "life_expect": 28.8224, + "population": 2503218 + }, + "x": 716, + "y": 28.8224, + "size": 2503218, + "color": "Africa", + "map_id": 12 + }, + { + "country": "Indonesia", + "count": 216, + "this": { + "country": "Indonesia", + "year": 1800, + "map_id": 360, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 994, + "child_mortality": 301931, + "fertility": 6.07, + "life_expect": 30, + "population": 16108545 + }, + "x": 994, + "y": 30, + "size": 16108545, + "color": "Asia", + "map_id": 360 + }, + { + "country": "India", + "count": 216, + "this": { + "country": "India", + "year": 1800, + "map_id": 356, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 1052, + "child_mortality": 3561366, + "fertility": 5.95, + "life_expect": 25.4424, + "population": 168574895 + }, + "x": 1052, + "y": 25.4424, + "size": 168574895, + "color": "Asia", + "map_id": 356 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + }, + { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 1800, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 861, + "child_mortality": 91727, + "fertility": 4.7, + "life_expect": 32, + "population": 6551000 + }, + "x": 861, + "y": 32, + "size": 6551000, + "color": "Asia", + "map_id": 704 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 108.8619810748564, + -88.47603546222223 + ], + "drag": [ + 108.8619810748564, + -88.47603546222223 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 281 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Guatemala (1 Countries)", + "timestamp": 1522412508860, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 320, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.09630096300963, + 13.735689447974622 + ], + [ + -90.60750607506074, + 13.91002298411783 + ], + [ + -91.23391233912339, + 13.928641128754478 + ], + [ + -91.6911169111691, + 14.12667048534432 + ], + [ + -92.22752227522275, + 14.539654784557328 + ], + [ + -92.20232202322023, + 14.830774864330436 + ], + [ + -92.08712087120871, + 15.06434795159025 + ], + [ + -92.22752227522275, + 15.252221956560106 + ], + [ + -91.74871748717487, + 16.066342644762813 + ], + [ + -90.46350463504635, + 16.069727761969474 + ], + [ + -90.43830438304383, + 16.409932041239202 + ], + [ + -90.60030600306003, + 16.47086415095916 + ], + [ + -90.71190711907118, + 16.68751165218565 + ], + [ + -91.08271082710827, + 16.917699622238814 + ], + [ + -91.45351453514535, + 17.25282622569854 + ], + [ + -91.00351003510035, + 17.25451878430188 + ], + [ + -90.99990999909998, + 17.818140799211434 + ], + [ + -90.06750067500674, + 17.819833357814773 + ], + [ + -89.14229142291423, + 17.80798544759145 + ], + [ + -89.14949149491494, + 17.015868021232066 + ], + [ + -89.22869228692286, + 15.886931432809618 + ], + [ + -88.92988929889299, + 15.886931432809618 + ], + [ + -88.60588605886059, + 15.705827662253085 + ], + [ + -88.51948519485194, + 15.854772819346309 + ], + [ + -88.22428224282243, + 15.72783092409641 + ], + [ + -88.68148681486815, + 15.347005238346696 + ], + [ + -89.1530915309153, + 15.066040510193588 + ], + [ + -89.2250922509225, + 14.87478138801707 + ], + [ + -89.14589145891459, + 14.678444590030551 + ], + [ + -89.35469354693547, + 14.424560799530752 + ], + [ + -89.58869588695886, + 14.361936131207472 + ], + [ + -89.53469534695347, + 14.245149587577558 + ], + [ + -89.72189721897219, + 14.133440719757644 + ], + [ + -90.06390063900639, + 13.881249487861183 + ], + [ + -90.09630096300963, + 13.735689447974622 + ] + ] + ] + }, + "countryRef": { + "country": "Guatemala", + "count": 216, + "this": { + "country": "Guatemala", + "year": 1800, + "map_id": 320, + "continent": "America", + "main_religion": "Christian", + "gdp": 857, + "child_mortality": 10314, + "fertility": 6.45, + "life_expect": 25.8, + "population": 458965 + }, + "x": 857, + "y": 25.8, + "size": 458965, + "color": "America", + "map_id": 320 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Guatemala", + "count": 216, + "this": { + "country": "Guatemala", + "year": 1800, + "map_id": 320, + "continent": "America", + "main_religion": "Christian", + "gdp": 857, + "child_mortality": 10314, + "fertility": 6.45, + "life_expect": 25.8, + "population": 458965 + }, + "x": 857, + "y": 25.8, + "size": 458965, + "color": "America", + "map_id": 320 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.1624256376101505, + "skewed": 0.8755028365769091, + "clumpy": 0.7716738965137613, + "sparse": 0.9238349569441249, + "striated": 0.716875926438564, + "convex": 0.20955883362295236, + "skinny": 0.4567398081962959, + "stringy": 0.5343326403062596, + "monotonic": 0.7289381684161362, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Guatemala", + "count": 216, + "this": { + "country": "Guatemala", + "year": 1800, + "map_id": 320, + "continent": "America", + "main_religion": "Christian", + "gdp": 857, + "child_mortality": 10314, + "fertility": 6.45, + "life_expect": 25.8, + "population": 458965 + }, + "x": 857, + "y": 25.8, + "size": 458965, + "color": "America", + "map_id": 320 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -91.67324722093173, + -88.41384907763465 + ], + "drag": [ + -91.67324722093173, + -88.41384907763465 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 282 + }, + { + "attrs": { + "name": "Selected Guatemala (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.16\",\"payload\":{\"numVal\":0.1624256376101505},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.88\",\"payload\":{\"numVal\":0.8755028365769091},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.77\",\"payload\":{\"numVal\":0.7716738965137613},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.92\",\"payload\":{\"numVal\":0.9238349569441249},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.72\",\"payload\":{\"numVal\":0.716875926438564},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.21\",\"payload\":{\"numVal\":0.20955883362295236},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.46\",\"payload\":{\"numVal\":0.4567398081962959},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.53\",\"payload\":{\"numVal\":0.5343326403062596},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.73\",\"payload\":{\"numVal\":0.7289381684161362},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Guatemala\",\"text\":\"Guatemala\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 283 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Guatemala (1 Countries)", + "timestamp": 1522412508860, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Vietnam", + "count": 216, + "this": { + "country": "Vietnam", + "year": 1800, + "map_id": 704, + "continent": "Asia", + "main_religion": "Eastern religions", + "gdp": 861, + "child_mortality": 91727, + "fertility": 4.7, + "life_expect": 32, + "population": 6551000 + }, + "x": 861, + "y": 32, + "size": 6551000, + "color": "Asia", + "map_id": 704 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.9000046385203273, + "skewed": 0.433949974230331, + "clumpy": 0.20882172431106238, + "sparse": 0.3569638531473214, + "striated": 0.935455222918717, + "convex": 0.8396892017882525, + "skinny": 0.05148993450583439, + "stringy": 0.2032920701170009, + "monotonic": 0.07015784448570228, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -5.156620156177409, + -89.60093457257213 + ], + "drag": [ + -5.156620156177409, + -89.60093457257213 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 284 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Papua New Guinea (2 Countries)", + "timestamp": 1522412552880, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 598, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 155.5989559895599, + -6.9202957470892414 + ], + [ + 155.16695166951672, + -6.536084944132867 + ], + [ + 154.72774727747276, + -5.901375467883369 + ], + [ + 154.51534515345156, + -5.139724096383958 + ], + [ + 154.65214652146523, + -5.04324825599403 + ], + [ + 154.76014760147604, + -5.339446011577138 + ], + [ + 155.06255062550628, + -5.566248864423628 + ], + [ + 155.54855548555486, + -6.200958340673125 + ], + [ + 156.02016020160204, + -6.539470061339529 + ], + [ + 155.879758797588, + -6.820434789492651 + ], + [ + 155.5989559895599, + -6.9202957470892414 + ] + ] + ], + [ + [ + [ + 150.24210242102424, + -6.317744884303039 + ], + [ + 149.70929709297093, + -6.316052325699715 + ], + [ + 148.8884888848889, + -6.026624804529931 + ], + [ + 148.319683196832, + -5.74735263498016 + ], + [ + 148.40248402484025, + -5.43761441057039 + ], + [ + 149.29889298892988, + -5.583174450456951 + ], + [ + 149.84609846098465, + -5.505316754703671 + ], + [ + 149.99729997299977, + -5.02632266996072 + ], + [ + 150.14130141301416, + -5.000934290910735 + ], + [ + 150.23850238502388, + -5.532397692356994 + ], + [ + 150.80730807308072, + -5.456232555207052 + ], + [ + 151.08811088110883, + -5.1143357173339865 + ], + [ + 151.64611646116464, + -4.757205852030921 + ], + [ + 151.53811538115383, + -4.168195458071381 + ], + [ + 152.13572135721358, + -4.149577313434733 + ], + [ + 152.33732337323374, + -4.313755497957942 + ], + [ + 152.31932319323192, + -4.867222161247511 + ], + [ + 151.98451984519846, + -5.478235817050361 + ], + [ + 151.45891458914588, + -5.559478630010304 + ], + [ + 151.30051300513009, + -5.840443358163412 + ], + [ + 150.75330753307531, + -6.084171797043226 + ], + [ + 150.24210242102424, + -6.317744884303039 + ] + ] + ], + [ + [ + [ + 141.03321033210335, + -9.11723681421418 + ], + [ + 141.0188101881019, + -5.85906150280006 + ], + [ + 141.00081000810007, + -2.600886191385939 + ], + [ + 142.73602736027362, + -3.28975754294207 + ], + [ + 144.5828458284583, + -3.8618423508682866 + ], + [ + 145.2740527405274, + -4.372995049074561 + ], + [ + 145.82845828458284, + -4.875684954264173 + ], + [ + 145.98325983259832, + -5.466387906827038 + ], + [ + 147.64647646476465, + -6.084171797043226 + ], + [ + 147.89127891278912, + -6.613942639886147 + ], + [ + 146.969669696697, + -6.722266390499385 + ], + [ + 147.19287192871928, + -7.387441921608868 + ], + [ + 148.0856808568086, + -8.04415465970169 + ], + [ + 148.7336873368734, + -9.105388903990857 + ], + [ + 149.3060930609306, + -9.071537731924224 + ], + [ + 149.26649266492666, + -9.514988085997203 + ], + [ + 150.04050040500408, + -9.684243946330412 + ], + [ + 149.73809738097384, + -9.872117951300268 + ], + [ + 150.80010800108005, + -10.293565043529938 + ], + [ + 150.69210692106924, + -10.582992564699708 + ], + [ + 150.029700297003, + -10.652387467436327 + ], + [ + 149.78129781297815, + -10.393426001126528 + ], + [ + 148.92448924489247, + -10.281717133306614 + ], + [ + 147.9128791287913, + -10.131079417610067 + ], + [ + 147.13527135271352, + -9.492984824153893 + ], + [ + 146.56646566465668, + -8.942903278070986 + ], + [ + 146.04806048060482, + -8.067850480148337 + ], + [ + 144.7448474484745, + -7.6294778018853435 + ], + [ + 143.8988389883899, + -7.915520205848466 + ], + [ + 143.2868328683287, + -8.245569133498208 + ], + [ + 143.41283412834127, + -8.983524684550957 + ], + [ + 142.62802628026282, + -9.32711408102736 + ], + [ + 142.070020700207, + -9.15955077929749 + ], + [ + 141.03321033210335, + -9.11723681421418 + ] + ] + ], + [ + [ + [ + 152.8269282692827, + -4.765668645047583 + ], + [ + 152.63972639726398, + -4.176658251088043 + ], + [ + 152.4057240572406, + -3.78906233092502 + ], + [ + 151.95211952119524, + -3.4623985204819405 + ], + [ + 151.38331383313835, + -3.0358737524422708 + ], + [ + 150.66330663306633, + -2.7413685554625005 + ], + [ + 150.94050940509408, + -2.499332675186025 + ], + [ + 151.48051480514806, + -2.7802974033391337 + ], + [ + 151.8189181891819, + -3.0003300217722995 + ], + [ + 152.24012240122403, + -3.240673343445451 + ], + [ + 152.63972639726398, + -3.6604278770717826 + ], + [ + 153.02133021330212, + -3.9803214531015385 + ], + [ + 153.14013140131402, + -4.49993694432446 + ], + [ + 152.8269282692827, + -4.765668645047583 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Papua New Guinea", + "count": 216, + "this": { + "country": "Papua New Guinea", + "year": 1800, + "map_id": 598, + "continent": "Asia", + "main_religion": "Christian", + "gdp": 546, + "child_mortality": 13842, + "fertility": 6.23, + "life_expect": 31.5, + "population": 754894 + }, + "x": 546, + "y": 31.5, + "size": 754894, + "color": "Asia", + "map_id": 598 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Papua New Guinea", + "count": 216, + "this": { + "country": "Papua New Guinea", + "year": 1800, + "map_id": 598, + "continent": "Asia", + "main_religion": "Christian", + "gdp": 546, + "child_mortality": 13842, + "fertility": 6.23, + "life_expect": 31.5, + "population": 754894 + }, + "x": 546, + "y": 31.5, + "size": 754894, + "color": "Asia", + "map_id": 598 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.3424367430384887, + "skewed": 0.6929323001223924, + "clumpy": 0.5028443786775774, + "sparse": 0.5442415022922675, + "striated": 0.9440252165013421, + "convex": 0.3195910574026317, + "skinny": 0.05216741168180716, + "stringy": 0.5021415806237794, + "monotonic": 0.6728585211549398, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Guatemala", + "count": 216, + "this": { + "country": "Guatemala", + "year": 1800, + "map_id": 320, + "continent": "America", + "main_religion": "Christian", + "gdp": 857, + "child_mortality": 10314, + "fertility": 6.45, + "life_expect": 25.8, + "population": 458965 + }, + "x": 857, + "y": 25.8, + "size": 458965, + "color": "America", + "map_id": 320 + }, + { + "country": "Papua New Guinea", + "count": 216, + "this": { + "country": "Papua New Guinea", + "year": 1800, + "map_id": 598, + "continent": "Asia", + "main_religion": "Christian", + "gdp": 546, + "child_mortality": 13842, + "fertility": 6.23, + "life_expect": 31.5, + "population": 754894 + }, + "x": 546, + "y": 31.5, + "size": 754894, + "color": "Asia", + "map_id": 598 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 143.8124065778366, + -88.93673384752877 + ], + "drag": [ + 143.8124065778366, + -88.93673384752877 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 285 + }, + { + "attrs": { + "name": "Selected Papua New Guinea (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.34\",\"payload\":{\"numVal\":0.3424367430384887},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.69\",\"payload\":{\"numVal\":0.6929323001223924},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.5\",\"payload\":{\"numVal\":0.5028443786775774},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.54\",\"payload\":{\"numVal\":0.5442415022922675},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.94\",\"payload\":{\"numVal\":0.9440252165013421},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.32\",\"payload\":{\"numVal\":0.3195910574026317},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.05\",\"payload\":{\"numVal\":0.05216741168180716},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.5\",\"payload\":{\"numVal\":0.5021415806237794},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.67\",\"payload\":{\"numVal\":0.6728585211549398},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Guatemala\",\"text\":\"Guatemala\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Papua New Guinea\",\"text\":\"Papua New Guinea\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 286 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Papua New Guinea (2 Countries)", + "timestamp": 1522412552880, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 320, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -90.09630096300963, + 13.735689447974622 + ], + [ + -90.60750607506074, + 13.91002298411783 + ], + [ + -91.23391233912339, + 13.928641128754478 + ], + [ + -91.6911169111691, + 14.12667048534432 + ], + [ + -92.22752227522275, + 14.539654784557328 + ], + [ + -92.20232202322023, + 14.830774864330436 + ], + [ + -92.08712087120871, + 15.06434795159025 + ], + [ + -92.22752227522275, + 15.252221956560106 + ], + [ + -91.74871748717487, + 16.066342644762813 + ], + [ + -90.46350463504635, + 16.069727761969474 + ], + [ + -90.43830438304383, + 16.409932041239202 + ], + [ + -90.60030600306003, + 16.47086415095916 + ], + [ + -90.71190711907118, + 16.68751165218565 + ], + [ + -91.08271082710827, + 16.917699622238814 + ], + [ + -91.45351453514535, + 17.25282622569854 + ], + [ + -91.00351003510035, + 17.25451878430188 + ], + [ + -90.99990999909998, + 17.818140799211434 + ], + [ + -90.06750067500674, + 17.819833357814773 + ], + [ + -89.14229142291423, + 17.80798544759145 + ], + [ + -89.14949149491494, + 17.015868021232066 + ], + [ + -89.22869228692286, + 15.886931432809618 + ], + [ + -88.92988929889299, + 15.886931432809618 + ], + [ + -88.60588605886059, + 15.705827662253085 + ], + [ + -88.51948519485194, + 15.854772819346309 + ], + [ + -88.22428224282243, + 15.72783092409641 + ], + [ + -88.68148681486815, + 15.347005238346696 + ], + [ + -89.1530915309153, + 15.066040510193588 + ], + [ + -89.2250922509225, + 14.87478138801707 + ], + [ + -89.14589145891459, + 14.678444590030551 + ], + [ + -89.35469354693547, + 14.424560799530752 + ], + [ + -89.58869588695886, + 14.361936131207472 + ], + [ + -89.53469534695347, + 14.245149587577558 + ], + [ + -89.72189721897219, + 14.133440719757644 + ], + [ + -90.06390063900639, + 13.881249487861183 + ], + [ + -90.09630096300963, + 13.735689447974622 + ] + ] + ] + }, + "countryRef": { + "country": "Guatemala", + "count": 216, + "this": { + "country": "Guatemala", + "year": 1800, + "map_id": 320, + "continent": "America", + "main_religion": "Christian", + "gdp": 857, + "child_mortality": 10314, + "fertility": 6.45, + "life_expect": 25.8, + "population": 458965 + }, + "x": 857, + "y": 25.8, + "size": 458965, + "color": "America", + "map_id": 320 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Guatemala", + "count": 216, + "this": { + "country": "Guatemala", + "year": 1800, + "map_id": 320, + "continent": "America", + "main_religion": "Christian", + "gdp": 857, + "child_mortality": 10314, + "fertility": 6.45, + "life_expect": 25.8, + "population": 458965 + }, + "x": 857, + "y": 25.8, + "size": 458965, + "color": "America", + "map_id": 320 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.1624256376101505, + "skewed": 0.8755028365769091, + "clumpy": 0.7716738965137613, + "sparse": 0.9238349569441249, + "striated": 0.716875926438564, + "convex": 0.20955883362295236, + "skinny": 0.4567398081962959, + "stringy": 0.5343326403062596, + "monotonic": 0.7289381684161362, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Guatemala", + "count": 216, + "this": { + "country": "Guatemala", + "year": 1800, + "map_id": 320, + "continent": "America", + "main_religion": "Christian", + "gdp": 857, + "child_mortality": 10314, + "fertility": 6.45, + "life_expect": 25.8, + "population": 458965 + }, + "x": 857, + "y": 25.8, + "size": 458965, + "color": "America", + "map_id": 320 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -91.67324722093173, + -88.41384907763465 + ], + "drag": [ + -91.67324722093173, + -88.41384907763465 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 287 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522412556993, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Papua New Guinea", + "count": 216, + "this": { + "country": "Papua New Guinea", + "year": 1800, + "map_id": 598, + "continent": "Asia", + "main_religion": "Christian", + "gdp": 546, + "child_mortality": 13842, + "fertility": 6.23, + "life_expect": 31.5, + "population": 754894 + }, + "x": 546, + "y": 31.5, + "size": 754894, + "color": "Asia", + "map_id": 598 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.06598915578872422, + "skewed": 0.7112487408427572, + "clumpy": 0.018536202910622634, + "sparse": 0.43179088352751105, + "striated": 0.06834911471156557, + "convex": 0.8158859200710908, + "skinny": 0.014458824311891494, + "stringy": 0.5475374504445789, + "monotonic": 0.9457937245247112, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 58.44169510334397, + -89.50768277652253 + ], + "drag": [ + 58.44169510334397, + -89.50768277652253 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 288 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.07\",\"payload\":{\"numVal\":0.06598915578872422},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.71\",\"payload\":{\"numVal\":0.7112487408427572},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.02\",\"payload\":{\"numVal\":0.018536202910622634},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.43\",\"payload\":{\"numVal\":0.43179088352751105},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.07\",\"payload\":{\"numVal\":0.06834911471156557},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.82\",\"payload\":{\"numVal\":0.8158859200710908},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.01\",\"payload\":{\"numVal\":0.014458824311891494},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.55\",\"payload\":{\"numVal\":0.5475374504445789},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.95\",\"payload\":{\"numVal\":0.9457937245247112},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 289 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522412556993, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 598, + "properties": {}, + "geometry": { + "type": "MultiPolygon", + "coordinates": [ + [ + [ + [ + 155.5989559895599, + -6.9202957470892414 + ], + [ + 155.16695166951672, + -6.536084944132867 + ], + [ + 154.72774727747276, + -5.901375467883369 + ], + [ + 154.51534515345156, + -5.139724096383958 + ], + [ + 154.65214652146523, + -5.04324825599403 + ], + [ + 154.76014760147604, + -5.339446011577138 + ], + [ + 155.06255062550628, + -5.566248864423628 + ], + [ + 155.54855548555486, + -6.200958340673125 + ], + [ + 156.02016020160204, + -6.539470061339529 + ], + [ + 155.879758797588, + -6.820434789492651 + ], + [ + 155.5989559895599, + -6.9202957470892414 + ] + ] + ], + [ + [ + [ + 150.24210242102424, + -6.317744884303039 + ], + [ + 149.70929709297093, + -6.316052325699715 + ], + [ + 148.8884888848889, + -6.026624804529931 + ], + [ + 148.319683196832, + -5.74735263498016 + ], + [ + 148.40248402484025, + -5.43761441057039 + ], + [ + 149.29889298892988, + -5.583174450456951 + ], + [ + 149.84609846098465, + -5.505316754703671 + ], + [ + 149.99729997299977, + -5.02632266996072 + ], + [ + 150.14130141301416, + -5.000934290910735 + ], + [ + 150.23850238502388, + -5.532397692356994 + ], + [ + 150.80730807308072, + -5.456232555207052 + ], + [ + 151.08811088110883, + -5.1143357173339865 + ], + [ + 151.64611646116464, + -4.757205852030921 + ], + [ + 151.53811538115383, + -4.168195458071381 + ], + [ + 152.13572135721358, + -4.149577313434733 + ], + [ + 152.33732337323374, + -4.313755497957942 + ], + [ + 152.31932319323192, + -4.867222161247511 + ], + [ + 151.98451984519846, + -5.478235817050361 + ], + [ + 151.45891458914588, + -5.559478630010304 + ], + [ + 151.30051300513009, + -5.840443358163412 + ], + [ + 150.75330753307531, + -6.084171797043226 + ], + [ + 150.24210242102424, + -6.317744884303039 + ] + ] + ], + [ + [ + [ + 141.03321033210335, + -9.11723681421418 + ], + [ + 141.0188101881019, + -5.85906150280006 + ], + [ + 141.00081000810007, + -2.600886191385939 + ], + [ + 142.73602736027362, + -3.28975754294207 + ], + [ + 144.5828458284583, + -3.8618423508682866 + ], + [ + 145.2740527405274, + -4.372995049074561 + ], + [ + 145.82845828458284, + -4.875684954264173 + ], + [ + 145.98325983259832, + -5.466387906827038 + ], + [ + 147.64647646476465, + -6.084171797043226 + ], + [ + 147.89127891278912, + -6.613942639886147 + ], + [ + 146.969669696697, + -6.722266390499385 + ], + [ + 147.19287192871928, + -7.387441921608868 + ], + [ + 148.0856808568086, + -8.04415465970169 + ], + [ + 148.7336873368734, + -9.105388903990857 + ], + [ + 149.3060930609306, + -9.071537731924224 + ], + [ + 149.26649266492666, + -9.514988085997203 + ], + [ + 150.04050040500408, + -9.684243946330412 + ], + [ + 149.73809738097384, + -9.872117951300268 + ], + [ + 150.80010800108005, + -10.293565043529938 + ], + [ + 150.69210692106924, + -10.582992564699708 + ], + [ + 150.029700297003, + -10.652387467436327 + ], + [ + 149.78129781297815, + -10.393426001126528 + ], + [ + 148.92448924489247, + -10.281717133306614 + ], + [ + 147.9128791287913, + -10.131079417610067 + ], + [ + 147.13527135271352, + -9.492984824153893 + ], + [ + 146.56646566465668, + -8.942903278070986 + ], + [ + 146.04806048060482, + -8.067850480148337 + ], + [ + 144.7448474484745, + -7.6294778018853435 + ], + [ + 143.8988389883899, + -7.915520205848466 + ], + [ + 143.2868328683287, + -8.245569133498208 + ], + [ + 143.41283412834127, + -8.983524684550957 + ], + [ + 142.62802628026282, + -9.32711408102736 + ], + [ + 142.070020700207, + -9.15955077929749 + ], + [ + 141.03321033210335, + -9.11723681421418 + ] + ] + ], + [ + [ + [ + 152.8269282692827, + -4.765668645047583 + ], + [ + 152.63972639726398, + -4.176658251088043 + ], + [ + 152.4057240572406, + -3.78906233092502 + ], + [ + 151.95211952119524, + -3.4623985204819405 + ], + [ + 151.38331383313835, + -3.0358737524422708 + ], + [ + 150.66330663306633, + -2.7413685554625005 + ], + [ + 150.94050940509408, + -2.499332675186025 + ], + [ + 151.48051480514806, + -2.7802974033391337 + ], + [ + 151.8189181891819, + -3.0003300217722995 + ], + [ + 152.24012240122403, + -3.240673343445451 + ], + [ + 152.63972639726398, + -3.6604278770717826 + ], + [ + 153.02133021330212, + -3.9803214531015385 + ], + [ + 153.14013140131402, + -4.49993694432446 + ], + [ + 152.8269282692827, + -4.765668645047583 + ] + ] + ] + ] + }, + "countryRef": { + "country": "Papua New Guinea", + "count": 216, + "this": { + "country": "Papua New Guinea", + "year": 1800, + "map_id": 598, + "continent": "Asia", + "main_religion": "Christian", + "gdp": 546, + "child_mortality": 13842, + "fertility": 6.23, + "life_expect": 31.5, + "population": 754894 + }, + "x": 546, + "y": 31.5, + "size": 754894, + "color": "Asia", + "map_id": 598 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Papua New Guinea", + "count": 216, + "this": { + "country": "Papua New Guinea", + "year": 1800, + "map_id": 598, + "continent": "Asia", + "main_religion": "Christian", + "gdp": 546, + "child_mortality": 13842, + "fertility": 6.23, + "life_expect": 31.5, + "population": 754894 + }, + "x": 546, + "y": 31.5, + "size": 754894, + "color": "Asia", + "map_id": 598 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.3424367430384887, + "skewed": 0.6929323001223924, + "clumpy": 0.5028443786775774, + "sparse": 0.5442415022922675, + "striated": 0.9440252165013421, + "convex": 0.3195910574026317, + "skinny": 0.05216741168180716, + "stringy": 0.5021415806237794, + "monotonic": 0.6728585211549398, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Guatemala", + "count": 216, + "this": { + "country": "Guatemala", + "year": 1800, + "map_id": 320, + "continent": "America", + "main_religion": "Christian", + "gdp": 857, + "child_mortality": 10314, + "fertility": 6.45, + "life_expect": 25.8, + "population": 458965 + }, + "x": 857, + "y": 25.8, + "size": 458965, + "color": "America", + "map_id": 320 + }, + { + "country": "Papua New Guinea", + "count": 216, + "this": { + "country": "Papua New Guinea", + "year": 1800, + "map_id": 598, + "continent": "Asia", + "main_religion": "Christian", + "gdp": 546, + "child_mortality": 13842, + "fertility": 6.23, + "life_expect": 31.5, + "population": 754894 + }, + "x": 546, + "y": 31.5, + "size": 754894, + "color": "Asia", + "map_id": 598 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 143.8124065778366, + -88.93673384752877 + ], + "drag": [ + 143.8124065778366, + -88.93673384752877 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 290 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Afghanistan (1 Countries)", + "timestamp": 1522412562002, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 4, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 61.20961209612096, + 35.64924568531417 + ], + [ + 62.23202232022322, + 35.27011255816781 + ], + [ + 62.98442984429846, + 35.40382468783103 + ], + [ + 63.19323193231932, + 35.85743039352401 + ], + [ + 63.98163981639817, + 36.00806810922056 + ], + [ + 64.5468454684547, + 36.31272865782033 + ], + [ + 64.7448474484745, + 37.111616318593036 + ], + [ + 65.58725587255873, + 37.30456799937288 + ], + [ + 65.74565745657458, + 37.66169786467593 + ], + [ + 66.21726217262173, + 37.39427360534948 + ], + [ + 66.51966519665197, + 37.36211499188617 + ], + [ + 67.07407074070741, + 37.355344757472835 + ], + [ + 67.83007830078301, + 37.14546749065967 + ], + [ + 68.13608136081362, + 37.02360327121977 + ], + [ + 68.85968859688597, + 37.34349684724951 + ], + [ + 69.19449194491946, + 37.15054516646967 + ], + [ + 69.51849518495186, + 37.60922854797265 + ], + [ + 70.11610116101161, + 37.58891784473266 + ], + [ + 70.2709027090271, + 37.73447788461921 + ], + [ + 70.37530375303754, + 38.13899939081557 + ], + [ + 70.80730807308075, + 38.48597390449862 + ], + [ + 71.34731347313473, + 38.25917105165213 + ], + [ + 71.23931239312395, + 37.95281794444904 + ], + [ + 71.5417154171542, + 37.90542630355574 + ], + [ + 71.44811448114481, + 37.065917236303065 + ], + [ + 71.84411844118443, + 36.73756086725666 + ], + [ + 72.19332193321935, + 36.949130692673165 + ], + [ + 72.63612636126362, + 37.04729909166642 + ], + [ + 73.2589325893259, + 37.4958271215494 + ], + [ + 73.95013950139503, + 37.42135454300279 + ], + [ + 74.97974979749799, + 37.419661984399454 + ], + [ + 75.15975159751599, + 37.133619580436346 + ], + [ + 74.57654576545767, + 37.02021815401311 + ], + [ + 74.0689406894069, + 36.83572926624991 + ], + [ + 72.92052920529207, + 36.72063528122334 + ], + [ + 71.84771847718477, + 36.51075801441017 + ], + [ + 71.26091260912611, + 36.074077894750516 + ], + [ + 71.49851498514985, + 35.65093824391751 + ], + [ + 71.61371613716139, + 35.153326014537896 + ], + [ + 71.11331113311135, + 34.73357148091155 + ], + [ + 71.15651156511566, + 34.34936067795519 + ], + [ + 70.88290882908831, + 33.98884569544548 + ], + [ + 69.92889928899291, + 34.01931175030545 + ], + [ + 70.3249032490325, + 33.359213895005965 + ], + [ + 69.68769687696877, + 33.105330104506166 + ], + [ + 69.2628926289263, + 32.50277924171996 + ], + [ + 69.3168931689317, + 31.9019209375371 + ], + [ + 68.9280892808928, + 31.62095620938399 + ], + [ + 68.55728557285573, + 31.714046932567243 + ], + [ + 67.7940779407794, + 31.58371992011068 + ], + [ + 67.68247682476826, + 31.302755191957573 + ], + [ + 66.93726937269375, + 31.304447750560897 + ], + [ + 66.3828638286383, + 30.739133177048004 + ], + [ + 66.3468634686347, + 29.887776199572002 + ], + [ + 65.04725047250474, + 29.471406783152332 + ], + [ + 64.34884348843488, + 29.5594198305256 + ], + [ + 64.14724147241472, + 29.34107977069577 + ], + [ + 63.549635496354966, + 29.46802166594567 + ], + [ + 62.54882548825489, + 29.319076508852447 + ], + [ + 60.8748087480875, + 29.828536648455383 + ], + [ + 61.7820178201782, + 30.73574805984134 + ], + [ + 61.69921699216994, + 31.378920329107515 + ], + [ + 60.943209432094335, + 31.54817618944071 + ], + [ + 60.86400864008641, + 32.18288566569022 + ], + [ + 60.53640536405365, + 32.98177332646293 + ], + [ + 60.96480964809649, + 33.52846975533916 + ], + [ + 60.52920529205292, + 33.675722353829045 + ], + [ + 60.80280802808028, + 34.40352255326181 + ], + [ + 61.20961209612096, + 35.64924568531417 + ] + ] + ] + }, + "countryRef": { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 1800, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 603, + "child_mortality": 73982, + "fertility": 7, + "life_expect": 28.211, + "population": 3280000 + }, + "x": 603, + "y": 28.211, + "size": 3280000, + "color": "Asia", + "map_id": 4 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 1800, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 603, + "child_mortality": 73982, + "fertility": 7, + "life_expect": 28.211, + "population": 3280000 + }, + "x": 603, + "y": 28.211, + "size": 3280000, + "color": "Asia", + "map_id": 4 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.6083413149029062, + "skewed": 0.01082408322842432, + "clumpy": 0.7554717145244729, + "sparse": 0.7988764460121385, + "striated": 0.2870495357607885, + "convex": 0.1047366941435568, + "skinny": 0.010034840712262794, + "stringy": 0.2637629269569426, + "monotonic": 0.8203229411305435, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 1800, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 603, + "child_mortality": 73982, + "fertility": 7, + "life_expect": 28.211, + "population": 3280000 + }, + "x": 603, + "y": 28.211, + "size": 3280000, + "color": "Asia", + "map_id": 4 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 61.879441874128915, + -87.6807645324519 + ], + "drag": [ + 61.879441874128915, + -87.6807645324519 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 291 + }, + { + "attrs": { + "name": "Selected Afghanistan (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.61\",\"payload\":{\"numVal\":0.6083413149029062},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.01\",\"payload\":{\"numVal\":0.01082408322842432},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.76\",\"payload\":{\"numVal\":0.7554717145244729},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.8\",\"payload\":{\"numVal\":0.7988764460121385},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.29\",\"payload\":{\"numVal\":0.2870495357607885},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.1\",\"payload\":{\"numVal\":0.1047366941435568},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.01\",\"payload\":{\"numVal\":0.010034840712262794},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.26\",\"payload\":{\"numVal\":0.2637629269569426},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.82\",\"payload\":{\"numVal\":0.8203229411305435},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Afghanistan\",\"text\":\"Afghanistan\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 292 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Afghanistan (1 Countries)", + "timestamp": 1522412562002, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Papua New Guinea", + "count": 216, + "this": { + "country": "Papua New Guinea", + "year": 1800, + "map_id": 598, + "continent": "Asia", + "main_religion": "Christian", + "gdp": 546, + "child_mortality": 13842, + "fertility": 6.23, + "life_expect": 31.5, + "population": 754894 + }, + "x": 546, + "y": 31.5, + "size": 754894, + "color": "Asia", + "map_id": 598 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.06598915578872422, + "skewed": 0.7112487408427572, + "clumpy": 0.018536202910622634, + "sparse": 0.43179088352751105, + "striated": 0.06834911471156557, + "convex": 0.8158859200710908, + "skinny": 0.014458824311891494, + "stringy": 0.5475374504445789, + "monotonic": 0.9457937245247112, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 58.44169510334397, + -89.50768277652253 + ], + "drag": [ + 58.44169510334397, + -89.50768277652253 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 293 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Congo, Dem. Rep. (2 Countries)", + "timestamp": 1522412573020, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 180, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 30.832508325083268, + 3.5092503666426182 + ], + [ + 30.7749077490775, + 2.339692371740199 + ], + [ + 31.174511745117456, + 2.2042876834736376 + ], + [ + 30.854108541085424, + 1.8488503767739104 + ], + [ + 30.468904689046894, + 1.5831186760507876 + ], + [ + 30.08730087300873, + 1.0618106262245277 + ], + [ + 29.874898748987505, + 0.5980495689115628 + ], + [ + 29.8208982089821, + -0.2059157676711436 + ], + [ + 29.586895868958692, + -0.5867414534208564 + ], + [ + 29.579695796957964, + -1.3416225905069297 + ], + [ + 29.29169291692918, + -1.6208947600567143 + ], + [ + 29.255692556925567, + -2.2149828298262406 + ], + [ + 29.118891188911903, + -2.2928405255795212 + ], + [ + 29.02529025290255, + -2.8395369544557525 + ], + [ + 29.277292772927723, + -3.2931426601487317 + ], + [ + 29.338493384933855, + -4.49993694432446 + ], + [ + 29.51849518495186, + -5.420688824537081 + ], + [ + 29.421294212942144, + -5.940304315760002 + ], + [ + 29.61929619296194, + -6.520851916702881 + ], + [ + 30.1989019890199, + -7.07939625580245 + ], + [ + 30.738907389073887, + -8.340352415284798 + ], + [ + 30.346503465034658, + -8.23879889908487 + ], + [ + 29.003690036900366, + -8.40636220081474 + ], + [ + 28.733687336873373, + -8.526533861651316 + ], + [ + 28.449284492844924, + -9.16462845510749 + ], + [ + 28.67248672486727, + -9.606386250577145 + ], + [ + 28.49608496084963, + -10.789484714306212 + ], + [ + 28.373683736837364, + -11.793171966082099 + ], + [ + 28.643686436864385, + -11.970890619431955 + ], + [ + 29.34209342093422, + -12.360179098198316 + ], + [ + 29.615696156961576, + -12.179075327641797 + ], + [ + 29.698496984969864, + -13.257235157964288 + ], + [ + 28.935289352893534, + -13.248772364947627 + ], + [ + 28.524885248852485, + -12.69869081886472 + ], + [ + 28.15408154081541, + -12.27216605082505 + ], + [ + 27.387273872738746, + -12.133376245351826 + ], + [ + 27.1640716407164, + -11.608683078318904 + ], + [ + 26.55206552065522, + -11.925191537141998 + ], + [ + 25.752857528575305, + -11.784709173065437 + ], + [ + 25.418054180541816, + -11.331103467372458 + ], + [ + 24.78444784447845, + -11.238012744189191 + ], + [ + 24.312843128431297, + -11.263401123239177 + ], + [ + 24.258842588425892, + -10.951970340226083 + ], + [ + 23.91323913239134, + -10.926581961176112 + ], + [ + 23.456034560345614, + -10.867342410059493 + ], + [ + 22.836828368283676, + -11.01798012575604 + ], + [ + 22.401224012240135, + -10.992591746706054 + ], + [ + 22.156421564215663, + -11.083989911285983 + ], + [ + 22.21042210422104, + -9.894121213143578 + ], + [ + 21.875618756187578, + -9.523450879013865 + ], + [ + 21.800018000180017, + -8.909052106004353 + ], + [ + 21.947619476194774, + -8.30650124321815 + ], + [ + 21.746017460174613, + -7.920597881658452 + ], + [ + 21.72801728017282, + -7.290966081218954 + ], + [ + 20.514805148051494, + -7.299428874235602 + ], + [ + 20.601206012060118, + -6.938913891725889 + ], + [ + 20.090000900009017, + -6.942299008932551 + ], + [ + 20.036000360003612, + -7.1166325450757455 + ], + [ + 19.416794167941674, + -7.155561392952393 + ], + [ + 19.168391683916838, + -7.7378015524985955 + ], + [ + 19.017190171901717, + -7.988300225791733 + ], + [ + 18.462784627846275, + -7.8478178617151855 + ], + [ + 18.135181351813515, + -7.988300225791733 + ], + [ + 17.472774727747293, + -8.067850480148337 + ], + [ + 17.091170911709128, + -7.544849871718753 + ], + [ + 16.860768607686083, + -7.2215711784823355 + ], + [ + 16.57276572765727, + -6.622405432902809 + ], + [ + 16.327963279632797, + -5.877679647436722 + ], + [ + 13.375933759337613, + -5.86413917861006 + ], + [ + 13.023130231302332, + -5.9843108394466356 + ], + [ + 12.735127351273519, + -5.965692694809988 + ], + [ + 12.321123211232106, + -6.099404824473211 + ], + [ + 12.180721807218077, + -5.789666600063455 + ], + [ + 12.436324363243642, + -5.684727966656865 + ], + [ + 12.46872468724689, + -5.24804784699721 + ], + [ + 12.630726307263075, + -4.990778939290749 + ], + [ + 12.994329943299448, + -4.780901672477569 + ], + [ + 13.257132571325712, + -4.882455188677497 + ], + [ + 13.59913599135993, + -4.49993694432446 + ], + [ + 14.146341463414643, + -4.510092295944446 + ], + [ + 14.207542075420747, + -4.792749582700893 + ], + [ + 14.581945819458213, + -4.970468236050763 + ], + [ + 15.172351723517238, + -4.344221552817913 + ], + [ + 15.7519575195752, + -3.855072116454963 + ], + [ + 16.007560075600765, + -3.535178540425221 + ], + [ + 15.971559715597152, + -2.712595059205853 + ], + [ + 16.40716407164072, + -1.7410664208932758 + ], + [ + 16.864368643686447, + -1.226528605480354 + ], + [ + 17.523175231752333, + -0.7441494035307272 + ], + [ + 17.63837638376384, + -0.42425582750097135 + ], + [ + 17.66357663576636, + -0.05866316918125847 + ], + [ + 17.825578255782574, + 0.28831134450179263 + ], + [ + 17.775177751777534, + 0.8553184766180237 + ], + [ + 17.89757897578977, + 1.7422191847639965 + ], + [ + 18.095580955809567, + 2.3650807507901703 + ], + [ + 18.394383943839443, + 2.899929269443092 + ], + [ + 18.45198451984521, + 3.5041726908326183 + ], + [ + 18.5419854198542, + 4.201506835405411 + ], + [ + 18.930789307893093, + 4.709274416405009 + ], + [ + 19.467194671946714, + 5.030860551038089 + ], + [ + 20.291602916029177, + 4.692348830371685 + ], + [ + 20.92880928809288, + 4.32337105484531 + ], + [ + 21.65961659616596, + 4.22351009724872 + ], + [ + 22.4048240482405, + 4.02886585786554 + ], + [ + 22.703627036270376, + 4.633109279255066 + ], + [ + 22.84042840428404, + 4.710966975008347 + ], + [ + 23.297632976329766, + 4.609413458808419 + ], + [ + 24.410044100441013, + 5.108718246791369 + ], + [ + 24.806048060480606, + 4.897148421374865 + ], + [ + 25.130051300513003, + 4.927614476234837 + ], + [ + 25.27765277652776, + 5.169650356511312 + ], + [ + 25.652056520565225, + 5.255970845281254 + ], + [ + 26.404464044640463, + 5.151032211874664 + ], + [ + 27.04527045270453, + 5.127336391428017 + ], + [ + 27.37287372873729, + 5.233967583437931 + ], + [ + 27.981279812798135, + 4.407998985011915 + ], + [ + 28.42768427684277, + 4.287827324175339 + ], + [ + 28.69768697686979, + 4.45539062590521 + ], + [ + 29.15849158491585, + 4.389380840375267 + ], + [ + 29.716497164971656, + 4.600950665791757 + ], + [ + 29.95409954099543, + 4.174425897752101 + ], + [ + 30.832508325083268, + 3.5092503666426182 + ] + ] + ] + }, + "countryRef": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 1800, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 485, + "child_mortality": 91070, + "fertility": 5.99, + "life_expect": 31.6, + "population": 5163819 + }, + "x": 485, + "y": 31.6, + "size": 5163819, + "color": "Africa", + "map_id": 180 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 1800, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 485, + "child_mortality": 91070, + "fertility": 5.99, + "life_expect": 31.6, + "population": 5163819 + }, + "x": 485, + "y": 31.6, + "size": 5163819, + "color": "Africa", + "map_id": 180 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.08104370811618922, + "skewed": 0.2737310162060034, + "clumpy": 0.4177768889070934, + "sparse": 0.05677393247896623, + "striated": 0.31994889975793206, + "convex": 0.4727379893066248, + "skinny": 0.2336691739966601, + "stringy": 0.5275733973093115, + "monotonic": 0.16130621475978857, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 1800, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 603, + "child_mortality": 73982, + "fertility": 7, + "life_expect": 28.211, + "population": 3280000 + }, + "x": 603, + "y": 28.211, + "size": 3280000, + "color": "Asia", + "map_id": 4 + }, + { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 1800, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 485, + "child_mortality": 91070, + "fertility": 5.99, + "life_expect": 31.6, + "population": 5163819 + }, + "x": 485, + "y": 31.6, + "size": 5163819, + "color": "Africa", + "map_id": 180 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 20.05352282957881, + -88.88222239980192 + ], + "drag": [ + 20.05352282957881, + -88.88222239980192 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 294 + }, + { + "attrs": { + "name": "Selected Congo, Dem. Rep. (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.08\",\"payload\":{\"numVal\":0.08104370811618922},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.27\",\"payload\":{\"numVal\":0.2737310162060034},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.42\",\"payload\":{\"numVal\":0.4177768889070934},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.06\",\"payload\":{\"numVal\":0.05677393247896623},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.32\",\"payload\":{\"numVal\":0.31994889975793206},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.47\",\"payload\":{\"numVal\":0.4727379893066248},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.23\",\"payload\":{\"numVal\":0.2336691739966601},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.53\",\"payload\":{\"numVal\":0.5275733973093115},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.16\",\"payload\":{\"numVal\":0.16130621475978857},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Afghanistan\",\"text\":\"Afghanistan\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Congo, Dem. Rep.\",\"text\":\"Congo, Dem. Rep.\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 295 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Congo, Dem. Rep. (2 Countries)", + "timestamp": 1522412573020, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 4, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 61.20961209612096, + 35.64924568531417 + ], + [ + 62.23202232022322, + 35.27011255816781 + ], + [ + 62.98442984429846, + 35.40382468783103 + ], + [ + 63.19323193231932, + 35.85743039352401 + ], + [ + 63.98163981639817, + 36.00806810922056 + ], + [ + 64.5468454684547, + 36.31272865782033 + ], + [ + 64.7448474484745, + 37.111616318593036 + ], + [ + 65.58725587255873, + 37.30456799937288 + ], + [ + 65.74565745657458, + 37.66169786467593 + ], + [ + 66.21726217262173, + 37.39427360534948 + ], + [ + 66.51966519665197, + 37.36211499188617 + ], + [ + 67.07407074070741, + 37.355344757472835 + ], + [ + 67.83007830078301, + 37.14546749065967 + ], + [ + 68.13608136081362, + 37.02360327121977 + ], + [ + 68.85968859688597, + 37.34349684724951 + ], + [ + 69.19449194491946, + 37.15054516646967 + ], + [ + 69.51849518495186, + 37.60922854797265 + ], + [ + 70.11610116101161, + 37.58891784473266 + ], + [ + 70.2709027090271, + 37.73447788461921 + ], + [ + 70.37530375303754, + 38.13899939081557 + ], + [ + 70.80730807308075, + 38.48597390449862 + ], + [ + 71.34731347313473, + 38.25917105165213 + ], + [ + 71.23931239312395, + 37.95281794444904 + ], + [ + 71.5417154171542, + 37.90542630355574 + ], + [ + 71.44811448114481, + 37.065917236303065 + ], + [ + 71.84411844118443, + 36.73756086725666 + ], + [ + 72.19332193321935, + 36.949130692673165 + ], + [ + 72.63612636126362, + 37.04729909166642 + ], + [ + 73.2589325893259, + 37.4958271215494 + ], + [ + 73.95013950139503, + 37.42135454300279 + ], + [ + 74.97974979749799, + 37.419661984399454 + ], + [ + 75.15975159751599, + 37.133619580436346 + ], + [ + 74.57654576545767, + 37.02021815401311 + ], + [ + 74.0689406894069, + 36.83572926624991 + ], + [ + 72.92052920529207, + 36.72063528122334 + ], + [ + 71.84771847718477, + 36.51075801441017 + ], + [ + 71.26091260912611, + 36.074077894750516 + ], + [ + 71.49851498514985, + 35.65093824391751 + ], + [ + 71.61371613716139, + 35.153326014537896 + ], + [ + 71.11331113311135, + 34.73357148091155 + ], + [ + 71.15651156511566, + 34.34936067795519 + ], + [ + 70.88290882908831, + 33.98884569544548 + ], + [ + 69.92889928899291, + 34.01931175030545 + ], + [ + 70.3249032490325, + 33.359213895005965 + ], + [ + 69.68769687696877, + 33.105330104506166 + ], + [ + 69.2628926289263, + 32.50277924171996 + ], + [ + 69.3168931689317, + 31.9019209375371 + ], + [ + 68.9280892808928, + 31.62095620938399 + ], + [ + 68.55728557285573, + 31.714046932567243 + ], + [ + 67.7940779407794, + 31.58371992011068 + ], + [ + 67.68247682476826, + 31.302755191957573 + ], + [ + 66.93726937269375, + 31.304447750560897 + ], + [ + 66.3828638286383, + 30.739133177048004 + ], + [ + 66.3468634686347, + 29.887776199572002 + ], + [ + 65.04725047250474, + 29.471406783152332 + ], + [ + 64.34884348843488, + 29.5594198305256 + ], + [ + 64.14724147241472, + 29.34107977069577 + ], + [ + 63.549635496354966, + 29.46802166594567 + ], + [ + 62.54882548825489, + 29.319076508852447 + ], + [ + 60.8748087480875, + 29.828536648455383 + ], + [ + 61.7820178201782, + 30.73574805984134 + ], + [ + 61.69921699216994, + 31.378920329107515 + ], + [ + 60.943209432094335, + 31.54817618944071 + ], + [ + 60.86400864008641, + 32.18288566569022 + ], + [ + 60.53640536405365, + 32.98177332646293 + ], + [ + 60.96480964809649, + 33.52846975533916 + ], + [ + 60.52920529205292, + 33.675722353829045 + ], + [ + 60.80280802808028, + 34.40352255326181 + ], + [ + 61.20961209612096, + 35.64924568531417 + ] + ] + ] + }, + "countryRef": { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 1800, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 603, + "child_mortality": 73982, + "fertility": 7, + "life_expect": 28.211, + "population": 3280000 + }, + "x": 603, + "y": 28.211, + "size": 3280000, + "color": "Asia", + "map_id": 4 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 1800, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 603, + "child_mortality": 73982, + "fertility": 7, + "life_expect": 28.211, + "population": 3280000 + }, + "x": 603, + "y": 28.211, + "size": 3280000, + "color": "Asia", + "map_id": 4 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.6083413149029062, + "skewed": 0.01082408322842432, + "clumpy": 0.7554717145244729, + "sparse": 0.7988764460121385, + "striated": 0.2870495357607885, + "convex": 0.1047366941435568, + "skinny": 0.010034840712262794, + "stringy": 0.2637629269569426, + "monotonic": 0.8203229411305435, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 1800, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 603, + "child_mortality": 73982, + "fertility": 7, + "life_expect": 28.211, + "population": 3280000 + }, + "x": 603, + "y": 28.211, + "size": 3280000, + "color": "Asia", + "map_id": 4 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 61.879441874128915, + -87.6807645324519 + ], + "drag": [ + 61.879441874128915, + -87.6807645324519 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 296 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522412576563, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 1800, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 485, + "child_mortality": 91070, + "fertility": 5.99, + "life_expect": 31.6, + "population": 5163819 + }, + "x": 485, + "y": 31.6, + "size": 5163819, + "color": "Africa", + "map_id": 180 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.1797321641855354, + "skewed": 0.30675609240514157, + "clumpy": 0.6259127206656185, + "sparse": 0.3331173242302885, + "striated": 0.8916485871590953, + "convex": 0.6361264584740025, + "skinny": 0.9950064744725551, + "stringy": 0.040337873580341244, + "monotonic": 0.542754506430229, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 76.2033867523995, + -89.5676978865428 + ], + "drag": [ + 76.2033867523995, + -89.5676978865428 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 297 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.18\",\"payload\":{\"numVal\":0.1797321641855354},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.31\",\"payload\":{\"numVal\":0.30675609240514157},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.63\",\"payload\":{\"numVal\":0.6259127206656185},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.33\",\"payload\":{\"numVal\":0.3331173242302885},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.89\",\"payload\":{\"numVal\":0.8916485871590953},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.64\",\"payload\":{\"numVal\":0.6361264584740025},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 1\",\"payload\":{\"numVal\":0.9950064744725551},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.04\",\"payload\":{\"numVal\":0.040337873580341244},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.54\",\"payload\":{\"numVal\":0.542754506430229},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 298 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522412576563, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 180, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 30.832508325083268, + 3.5092503666426182 + ], + [ + 30.7749077490775, + 2.339692371740199 + ], + [ + 31.174511745117456, + 2.2042876834736376 + ], + [ + 30.854108541085424, + 1.8488503767739104 + ], + [ + 30.468904689046894, + 1.5831186760507876 + ], + [ + 30.08730087300873, + 1.0618106262245277 + ], + [ + 29.874898748987505, + 0.5980495689115628 + ], + [ + 29.8208982089821, + -0.2059157676711436 + ], + [ + 29.586895868958692, + -0.5867414534208564 + ], + [ + 29.579695796957964, + -1.3416225905069297 + ], + [ + 29.29169291692918, + -1.6208947600567143 + ], + [ + 29.255692556925567, + -2.2149828298262406 + ], + [ + 29.118891188911903, + -2.2928405255795212 + ], + [ + 29.02529025290255, + -2.8395369544557525 + ], + [ + 29.277292772927723, + -3.2931426601487317 + ], + [ + 29.338493384933855, + -4.49993694432446 + ], + [ + 29.51849518495186, + -5.420688824537081 + ], + [ + 29.421294212942144, + -5.940304315760002 + ], + [ + 29.61929619296194, + -6.520851916702881 + ], + [ + 30.1989019890199, + -7.07939625580245 + ], + [ + 30.738907389073887, + -8.340352415284798 + ], + [ + 30.346503465034658, + -8.23879889908487 + ], + [ + 29.003690036900366, + -8.40636220081474 + ], + [ + 28.733687336873373, + -8.526533861651316 + ], + [ + 28.449284492844924, + -9.16462845510749 + ], + [ + 28.67248672486727, + -9.606386250577145 + ], + [ + 28.49608496084963, + -10.789484714306212 + ], + [ + 28.373683736837364, + -11.793171966082099 + ], + [ + 28.643686436864385, + -11.970890619431955 + ], + [ + 29.34209342093422, + -12.360179098198316 + ], + [ + 29.615696156961576, + -12.179075327641797 + ], + [ + 29.698496984969864, + -13.257235157964288 + ], + [ + 28.935289352893534, + -13.248772364947627 + ], + [ + 28.524885248852485, + -12.69869081886472 + ], + [ + 28.15408154081541, + -12.27216605082505 + ], + [ + 27.387273872738746, + -12.133376245351826 + ], + [ + 27.1640716407164, + -11.608683078318904 + ], + [ + 26.55206552065522, + -11.925191537141998 + ], + [ + 25.752857528575305, + -11.784709173065437 + ], + [ + 25.418054180541816, + -11.331103467372458 + ], + [ + 24.78444784447845, + -11.238012744189191 + ], + [ + 24.312843128431297, + -11.263401123239177 + ], + [ + 24.258842588425892, + -10.951970340226083 + ], + [ + 23.91323913239134, + -10.926581961176112 + ], + [ + 23.456034560345614, + -10.867342410059493 + ], + [ + 22.836828368283676, + -11.01798012575604 + ], + [ + 22.401224012240135, + -10.992591746706054 + ], + [ + 22.156421564215663, + -11.083989911285983 + ], + [ + 22.21042210422104, + -9.894121213143578 + ], + [ + 21.875618756187578, + -9.523450879013865 + ], + [ + 21.800018000180017, + -8.909052106004353 + ], + [ + 21.947619476194774, + -8.30650124321815 + ], + [ + 21.746017460174613, + -7.920597881658452 + ], + [ + 21.72801728017282, + -7.290966081218954 + ], + [ + 20.514805148051494, + -7.299428874235602 + ], + [ + 20.601206012060118, + -6.938913891725889 + ], + [ + 20.090000900009017, + -6.942299008932551 + ], + [ + 20.036000360003612, + -7.1166325450757455 + ], + [ + 19.416794167941674, + -7.155561392952393 + ], + [ + 19.168391683916838, + -7.7378015524985955 + ], + [ + 19.017190171901717, + -7.988300225791733 + ], + [ + 18.462784627846275, + -7.8478178617151855 + ], + [ + 18.135181351813515, + -7.988300225791733 + ], + [ + 17.472774727747293, + -8.067850480148337 + ], + [ + 17.091170911709128, + -7.544849871718753 + ], + [ + 16.860768607686083, + -7.2215711784823355 + ], + [ + 16.57276572765727, + -6.622405432902809 + ], + [ + 16.327963279632797, + -5.877679647436722 + ], + [ + 13.375933759337613, + -5.86413917861006 + ], + [ + 13.023130231302332, + -5.9843108394466356 + ], + [ + 12.735127351273519, + -5.965692694809988 + ], + [ + 12.321123211232106, + -6.099404824473211 + ], + [ + 12.180721807218077, + -5.789666600063455 + ], + [ + 12.436324363243642, + -5.684727966656865 + ], + [ + 12.46872468724689, + -5.24804784699721 + ], + [ + 12.630726307263075, + -4.990778939290749 + ], + [ + 12.994329943299448, + -4.780901672477569 + ], + [ + 13.257132571325712, + -4.882455188677497 + ], + [ + 13.59913599135993, + -4.49993694432446 + ], + [ + 14.146341463414643, + -4.510092295944446 + ], + [ + 14.207542075420747, + -4.792749582700893 + ], + [ + 14.581945819458213, + -4.970468236050763 + ], + [ + 15.172351723517238, + -4.344221552817913 + ], + [ + 15.7519575195752, + -3.855072116454963 + ], + [ + 16.007560075600765, + -3.535178540425221 + ], + [ + 15.971559715597152, + -2.712595059205853 + ], + [ + 16.40716407164072, + -1.7410664208932758 + ], + [ + 16.864368643686447, + -1.226528605480354 + ], + [ + 17.523175231752333, + -0.7441494035307272 + ], + [ + 17.63837638376384, + -0.42425582750097135 + ], + [ + 17.66357663576636, + -0.05866316918125847 + ], + [ + 17.825578255782574, + 0.28831134450179263 + ], + [ + 17.775177751777534, + 0.8553184766180237 + ], + [ + 17.89757897578977, + 1.7422191847639965 + ], + [ + 18.095580955809567, + 2.3650807507901703 + ], + [ + 18.394383943839443, + 2.899929269443092 + ], + [ + 18.45198451984521, + 3.5041726908326183 + ], + [ + 18.5419854198542, + 4.201506835405411 + ], + [ + 18.930789307893093, + 4.709274416405009 + ], + [ + 19.467194671946714, + 5.030860551038089 + ], + [ + 20.291602916029177, + 4.692348830371685 + ], + [ + 20.92880928809288, + 4.32337105484531 + ], + [ + 21.65961659616596, + 4.22351009724872 + ], + [ + 22.4048240482405, + 4.02886585786554 + ], + [ + 22.703627036270376, + 4.633109279255066 + ], + [ + 22.84042840428404, + 4.710966975008347 + ], + [ + 23.297632976329766, + 4.609413458808419 + ], + [ + 24.410044100441013, + 5.108718246791369 + ], + [ + 24.806048060480606, + 4.897148421374865 + ], + [ + 25.130051300513003, + 4.927614476234837 + ], + [ + 25.27765277652776, + 5.169650356511312 + ], + [ + 25.652056520565225, + 5.255970845281254 + ], + [ + 26.404464044640463, + 5.151032211874664 + ], + [ + 27.04527045270453, + 5.127336391428017 + ], + [ + 27.37287372873729, + 5.233967583437931 + ], + [ + 27.981279812798135, + 4.407998985011915 + ], + [ + 28.42768427684277, + 4.287827324175339 + ], + [ + 28.69768697686979, + 4.45539062590521 + ], + [ + 29.15849158491585, + 4.389380840375267 + ], + [ + 29.716497164971656, + 4.600950665791757 + ], + [ + 29.95409954099543, + 4.174425897752101 + ], + [ + 30.832508325083268, + 3.5092503666426182 + ] + ] + ] + }, + "countryRef": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 1800, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 485, + "child_mortality": 91070, + "fertility": 5.99, + "life_expect": 31.6, + "population": 5163819 + }, + "x": 485, + "y": 31.6, + "size": 5163819, + "color": "Africa", + "map_id": 180 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 1800, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 485, + "child_mortality": 91070, + "fertility": 5.99, + "life_expect": 31.6, + "population": 5163819 + }, + "x": 485, + "y": 31.6, + "size": 5163819, + "color": "Africa", + "map_id": 180 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.08104370811618922, + "skewed": 0.2737310162060034, + "clumpy": 0.4177768889070934, + "sparse": 0.05677393247896623, + "striated": 0.31994889975793206, + "convex": 0.4727379893066248, + "skinny": 0.2336691739966601, + "stringy": 0.5275733973093115, + "monotonic": 0.16130621475978857, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Afghanistan", + "count": 216, + "this": { + "country": "Afghanistan", + "year": 1800, + "map_id": 4, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 603, + "child_mortality": 73982, + "fertility": 7, + "life_expect": 28.211, + "population": 3280000 + }, + "x": 603, + "y": 28.211, + "size": 3280000, + "color": "Asia", + "map_id": 4 + }, + { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 1800, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 485, + "child_mortality": 91070, + "fertility": 5.99, + "life_expect": 31.6, + "population": 5163819 + }, + "x": 485, + "y": 31.6, + "size": 5163819, + "color": "Africa", + "map_id": 180 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 20.05352282957881, + -88.88222239980192 + ], + "drag": [ + 20.05352282957881, + -88.88222239980192 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 299 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Senegal (1 Countries)", + "timestamp": 1522412595203, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 686, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -16.713167131671298, + 13.595207083898075 + ], + [ + -17.12717127171271, + 14.373784041430795 + ], + [ + -17.623976239762385, + 14.729221348130523 + ], + [ + -17.18477184771848, + 14.918787911703703 + ], + [ + -16.702367023670234, + 15.621199732086481 + ], + [ + -16.46476464764646, + 16.135737547499417 + ], + [ + -16.11916119161191, + 16.455631123529173 + ], + [ + -15.622356223562235, + 16.36931063475923 + ], + [ + -15.136351363513626, + 16.587650694589072 + ], + [ + -14.57834578345782, + 16.597806046209058 + ], + [ + -14.099540995409939, + 16.304993407832626 + ], + [ + -13.437134371343717, + 16.03926170710949 + ], + [ + -12.832328323283235, + 15.302998714660063 + ], + [ + -12.169921699216985, + 14.617512480310609 + ], + [ + -12.12312123121231, + 13.99465091428442 + ], + [ + -11.928719287192877, + 13.422566106358204 + ], + [ + -11.55431554315544, + 13.141601378205095 + ], + [ + -11.467914679146787, + 12.754005458042059 + ], + [ + -11.514715147151463, + 12.442574675028965 + ], + [ + -11.658716587165856, + 12.386720241119008 + ], + [ + -12.202322023220233, + 12.466270495475612 + ], + [ + -12.277922779227794, + 12.354561627655713 + ], + [ + -12.497524975249746, + 12.332558365812389 + ], + [ + -13.217532175321736, + 12.576286804692202 + ], + [ + -13.699936999369982, + 12.586442156312188 + ], + [ + -15.546755467554675, + 12.628756121395497 + ], + [ + -15.816758167581668, + 12.515354694972245 + ], + [ + -16.147961479614793, + 12.547513308435555 + ], + [ + -16.677166771667714, + 12.385027682515684 + ], + [ + -16.842768427684263, + 13.151756729825081 + ], + [ + -15.931959319593176, + 13.129753467981772 + ], + [ + -15.690756907569067, + 13.270235832058319 + ], + [ + -15.510755107551063, + 13.27869862507498 + ], + [ + -15.13995139951399, + 13.508886595128132 + ], + [ + -14.711547115471149, + 13.299009328314966 + ], + [ + -14.27594275942758, + 13.280391183678319 + ], + [ + -13.843938439384374, + 13.50550147792147 + ], + [ + -14.045540455404534, + 13.793236440487917 + ], + [ + -14.37674376743766, + 13.625673138758046 + ], + [ + -14.686346863468628, + 13.630750814568046 + ], + [ + -15.082350823508222, + 13.876171812051183 + ], + [ + -15.399153991539919, + 13.860938784621197 + ], + [ + -15.6259562595626, + 13.623980580154708 + ], + [ + -16.713167131671298, + 13.595207083898075 + ] + ] + ] + }, + "countryRef": { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.2991083571985882, + "skewed": 0.021896486724113373, + "clumpy": 0.7164991614059366, + "sparse": 0.14869743033016958, + "striated": 0.45359351153031, + "convex": 0.8659034982453935, + "skinny": 0.7984883868300943, + "stringy": 0.5963334526122317, + "monotonic": 0.15376965404028975, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -14.896902673401405, + -88.46072119716634 + ], + "drag": [ + -14.896902673401405, + -88.46072119716634 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 300 + }, + { + "attrs": { + "name": "Selected Senegal (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.3\",\"payload\":{\"numVal\":0.2991083571985882},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.02\",\"payload\":{\"numVal\":0.021896486724113373},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.72\",\"payload\":{\"numVal\":0.7164991614059366},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.15\",\"payload\":{\"numVal\":0.14869743033016958},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.45\",\"payload\":{\"numVal\":0.45359351153031},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.87\",\"payload\":{\"numVal\":0.8659034982453935},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.8\",\"payload\":{\"numVal\":0.7984883868300943},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.6\",\"payload\":{\"numVal\":0.5963334526122317},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.15\",\"payload\":{\"numVal\":0.15376965404028975},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Senegal\",\"text\":\"Senegal\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 301 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Senegal (1 Countries)", + "timestamp": 1522412595203, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Congo, Dem. Rep.", + "count": 216, + "this": { + "country": "Congo, Dem. Rep.", + "year": 1800, + "map_id": 180, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 485, + "child_mortality": 91070, + "fertility": 5.99, + "life_expect": 31.6, + "population": 5163819 + }, + "x": 485, + "y": 31.6, + "size": 5163819, + "color": "Africa", + "map_id": 180 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.1797321641855354, + "skewed": 0.30675609240514157, + "clumpy": 0.6259127206656185, + "sparse": 0.3331173242302885, + "striated": 0.8916485871590953, + "convex": 0.6361264584740025, + "skinny": 0.9950064744725551, + "stringy": 0.040337873580341244, + "monotonic": 0.542754506430229, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 76.2033867523995, + -89.5676978865428 + ], + "drag": [ + 76.2033867523995, + -89.5676978865428 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 302 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Ghana (2 Countries)", + "timestamp": 1522412598691, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 288, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0602106021060251, + 5.929609169407385 + ], + [ + -0.5094050940509476, + 5.343983892654521 + ], + [ + -1.0638106381063608, + 5.000394496178117 + ], + [ + -1.9638196381963837, + 4.710966975008347 + ], + [ + -2.85662856628565, + 4.995316820368117 + ], + [ + -2.809828098280974, + 5.389682974944478 + ], + [ + -3.2454324543245434, + 6.251195304040479 + ], + [ + -2.9826298262982505, + 7.380131892462927 + ], + [ + -2.5614256142561374, + 8.219640959715605 + ], + [ + -2.827828278282766, + 9.643082745117823 + ], + [ + -2.9646296462964585, + 10.394578764997235 + ], + [ + -2.9394293942939385, + 10.96327845571679 + ], + [ + -1.2042120421204174, + 11.00897753800676 + ], + [ + -0.7614076140761483, + 10.93619751806348 + ], + [ + -0.437404374043723, + 11.09868314398335 + ], + [ + 0.02340023400233804, + 11.019132889626746 + ], + [ + -0.04860048600485811, + 10.707702106613652 + ], + [ + 0.36900369003691935, + 10.191471732597392 + ], + [ + 0.3654036540365553, + 9.465364091767967 + ], + [ + 0.4626046260462715, + 8.676631782615246 + ], + [ + 0.7110071100711082, + 8.312731682898857 + ], + [ + 0.49140491404915565, + 7.4122905059262365 + ], + [ + 0.5706057060570799, + 6.914678276546624 + ], + [ + 0.8370083700837085, + 6.279968800297112 + ], + [ + 1.0602106021060251, + 5.929609169407385 + ] + ] + ] + }, + "countryRef": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.33654593267941846, + "skewed": 0.9200597686305063, + "clumpy": 0.34281550285185336, + "sparse": 0.4357343222692529, + "striated": 0.855259378179974, + "convex": 0.9465826174725924, + "skinny": 0.08328237614053258, + "stringy": 0.3627546687623098, + "monotonic": 0.6245304449645301, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + }, + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.1459155902616465, + -88.59319116117973 + ], + "drag": [ + -1.1459155902616465, + -88.59319116117973 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 303 + }, + { + "attrs": { + "name": "Selected Ghana (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.34\",\"payload\":{\"numVal\":0.33654593267941846},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.92\",\"payload\":{\"numVal\":0.9200597686305063},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.34\",\"payload\":{\"numVal\":0.34281550285185336},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.44\",\"payload\":{\"numVal\":0.4357343222692529},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.86\",\"payload\":{\"numVal\":0.855259378179974},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.95\",\"payload\":{\"numVal\":0.9465826174725924},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.08\",\"payload\":{\"numVal\":0.08328237614053258},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.36\",\"payload\":{\"numVal\":0.3627546687623098},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.62\",\"payload\":{\"numVal\":0.6245304449645301},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Senegal\",\"text\":\"Senegal\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Ghana\",\"text\":\"Ghana\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 304 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Ghana (2 Countries)", + "timestamp": 1522412598691, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 686, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + -16.713167131671298, + 13.595207083898075 + ], + [ + -17.12717127171271, + 14.373784041430795 + ], + [ + -17.623976239762385, + 14.729221348130523 + ], + [ + -17.18477184771848, + 14.918787911703703 + ], + [ + -16.702367023670234, + 15.621199732086481 + ], + [ + -16.46476464764646, + 16.135737547499417 + ], + [ + -16.11916119161191, + 16.455631123529173 + ], + [ + -15.622356223562235, + 16.36931063475923 + ], + [ + -15.136351363513626, + 16.587650694589072 + ], + [ + -14.57834578345782, + 16.597806046209058 + ], + [ + -14.099540995409939, + 16.304993407832626 + ], + [ + -13.437134371343717, + 16.03926170710949 + ], + [ + -12.832328323283235, + 15.302998714660063 + ], + [ + -12.169921699216985, + 14.617512480310609 + ], + [ + -12.12312123121231, + 13.99465091428442 + ], + [ + -11.928719287192877, + 13.422566106358204 + ], + [ + -11.55431554315544, + 13.141601378205095 + ], + [ + -11.467914679146787, + 12.754005458042059 + ], + [ + -11.514715147151463, + 12.442574675028965 + ], + [ + -11.658716587165856, + 12.386720241119008 + ], + [ + -12.202322023220233, + 12.466270495475612 + ], + [ + -12.277922779227794, + 12.354561627655713 + ], + [ + -12.497524975249746, + 12.332558365812389 + ], + [ + -13.217532175321736, + 12.576286804692202 + ], + [ + -13.699936999369982, + 12.586442156312188 + ], + [ + -15.546755467554675, + 12.628756121395497 + ], + [ + -15.816758167581668, + 12.515354694972245 + ], + [ + -16.147961479614793, + 12.547513308435555 + ], + [ + -16.677166771667714, + 12.385027682515684 + ], + [ + -16.842768427684263, + 13.151756729825081 + ], + [ + -15.931959319593176, + 13.129753467981772 + ], + [ + -15.690756907569067, + 13.270235832058319 + ], + [ + -15.510755107551063, + 13.27869862507498 + ], + [ + -15.13995139951399, + 13.508886595128132 + ], + [ + -14.711547115471149, + 13.299009328314966 + ], + [ + -14.27594275942758, + 13.280391183678319 + ], + [ + -13.843938439384374, + 13.50550147792147 + ], + [ + -14.045540455404534, + 13.793236440487917 + ], + [ + -14.37674376743766, + 13.625673138758046 + ], + [ + -14.686346863468628, + 13.630750814568046 + ], + [ + -15.082350823508222, + 13.876171812051183 + ], + [ + -15.399153991539919, + 13.860938784621197 + ], + [ + -15.6259562595626, + 13.623980580154708 + ], + [ + -16.713167131671298, + 13.595207083898075 + ] + ] + ] + }, + "countryRef": { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.2991083571985882, + "skewed": 0.021896486724113373, + "clumpy": 0.7164991614059366, + "sparse": 0.14869743033016958, + "striated": 0.45359351153031, + "convex": 0.8659034982453935, + "skinny": 0.7984883868300943, + "stringy": 0.5963334526122317, + "monotonic": 0.15376965404028975, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -14.896902673401405, + -88.46072119716634 + ], + "drag": [ + -14.896902673401405, + -88.46072119716634 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 305 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1963", + "timestamp": 1522412614474, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 1963, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.16925348456475908, + "skewed": 0.11607822594544803, + "clumpy": 0.10067631585196568, + "sparse": 0.6960951889068574, + "striated": 0.4444747638145905, + "convex": 0.38114068964165093, + "skinny": 0.19407603387386163, + "stringy": 0.15371681332685672, + "monotonic": 0.8463745047903672, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + }, + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.1459155902616465, + -88.59319116117973 + ], + "drag": [ + -1.1459155902616465, + -88.59319116117973 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 306 + }, + { + "attrs": { + "name": "Selected Year 1963", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1963\",\"payload\":{\"numVal\":1963},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.17\",\"payload\":{\"numVal\":0.16925348456475908},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.12\",\"payload\":{\"numVal\":0.11607822594544803},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.1\",\"payload\":{\"numVal\":0.10067631585196568},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.7\",\"payload\":{\"numVal\":0.6960951889068574},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.44\",\"payload\":{\"numVal\":0.4444747638145905},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.38\",\"payload\":{\"numVal\":0.38114068964165093},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.19\",\"payload\":{\"numVal\":0.19407603387386163},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.15\",\"payload\":{\"numVal\":0.15371681332685672},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.85\",\"payload\":{\"numVal\":0.8463745047903672},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Senegal\",\"text\":\"Senegal\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Ghana\",\"text\":\"Ghana\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 307 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1963", + "timestamp": 1522412614474, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 288, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 1.0602106021060251, + 5.929609169407385 + ], + [ + -0.5094050940509476, + 5.343983892654521 + ], + [ + -1.0638106381063608, + 5.000394496178117 + ], + [ + -1.9638196381963837, + 4.710966975008347 + ], + [ + -2.85662856628565, + 4.995316820368117 + ], + [ + -2.809828098280974, + 5.389682974944478 + ], + [ + -3.2454324543245434, + 6.251195304040479 + ], + [ + -2.9826298262982505, + 7.380131892462927 + ], + [ + -2.5614256142561374, + 8.219640959715605 + ], + [ + -2.827828278282766, + 9.643082745117823 + ], + [ + -2.9646296462964585, + 10.394578764997235 + ], + [ + -2.9394293942939385, + 10.96327845571679 + ], + [ + -1.2042120421204174, + 11.00897753800676 + ], + [ + -0.7614076140761483, + 10.93619751806348 + ], + [ + -0.437404374043723, + 11.09868314398335 + ], + [ + 0.02340023400233804, + 11.019132889626746 + ], + [ + -0.04860048600485811, + 10.707702106613652 + ], + [ + 0.36900369003691935, + 10.191471732597392 + ], + [ + 0.3654036540365553, + 9.465364091767967 + ], + [ + 0.4626046260462715, + 8.676631782615246 + ], + [ + 0.7110071100711082, + 8.312731682898857 + ], + [ + 0.49140491404915565, + 7.4122905059262365 + ], + [ + 0.5706057060570799, + 6.914678276546624 + ], + [ + 0.8370083700837085, + 6.279968800297112 + ], + [ + 1.0602106021060251, + 5.929609169407385 + ] + ] + ] + }, + "countryRef": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.33654593267941846, + "skewed": 0.9200597686305063, + "clumpy": 0.34281550285185336, + "sparse": 0.4357343222692529, + "striated": 0.855259378179974, + "convex": 0.9465826174725924, + "skinny": 0.08328237614053258, + "stringy": 0.3627546687623098, + "monotonic": 0.6245304449645301, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + }, + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.1459155902616465, + -88.59319116117973 + ], + "drag": [ + -1.1459155902616465, + -88.59319116117973 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 308 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2010", + "timestamp": 1522412618637, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.4317462701420689, + "skewed": 0.826348129788389, + "clumpy": 0.0408635575708749, + "sparse": 0.5292507688838417, + "striated": 0.8164302659040381, + "convex": 0.6786240993738606, + "skinny": 0.8117447362746262, + "stringy": 0.268782858901522, + "monotonic": 0.1717759035429245, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + }, + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.1459155902616465, + -88.59319116117973 + ], + "drag": [ + -1.1459155902616465, + -88.59319116117973 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 309 + }, + { + "attrs": { + "name": "Selected Year 2010", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.43\",\"payload\":{\"numVal\":0.4317462701420689},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.83\",\"payload\":{\"numVal\":0.826348129788389},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.04\",\"payload\":{\"numVal\":0.0408635575708749},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.53\",\"payload\":{\"numVal\":0.5292507688838417},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.82\",\"payload\":{\"numVal\":0.8164302659040381},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.68\",\"payload\":{\"numVal\":0.6786240993738606},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.81\",\"payload\":{\"numVal\":0.8117447362746262},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.27\",\"payload\":{\"numVal\":0.268782858901522},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.17\",\"payload\":{\"numVal\":0.1717759035429245},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Senegal\",\"text\":\"Senegal\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Ghana\",\"text\":\"Ghana\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 310 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2010", + "timestamp": 1522412618637, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 1963, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.16925348456475908, + "skewed": 0.11607822594544803, + "clumpy": 0.10067631585196568, + "sparse": 0.6960951889068574, + "striated": 0.4444747638145905, + "convex": 0.38114068964165093, + "skinny": 0.19407603387386163, + "stringy": 0.15371681332685672, + "monotonic": 0.8463745047903672, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + }, + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.1459155902616465, + -88.59319116117973 + ], + "drag": [ + -1.1459155902616465, + -88.59319116117973 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 311 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522412622055, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.652152478930454, + "skewed": 0.8434298028899379, + "clumpy": 0.7771060991018699, + "sparse": 0.6707953172729753, + "striated": 0.06669535222365841, + "convex": 0.956255168504144, + "skinny": 0.5283992120350902, + "stringy": 0.24902599027517014, + "monotonic": 0.7227199470019459, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 68.18197762056796, + -89.30832424753186 + ], + "drag": [ + 68.18197762056796, + -89.30832424753186 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 312 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.65\",\"payload\":{\"numVal\":0.652152478930454},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.84\",\"payload\":{\"numVal\":0.8434298028899379},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.78\",\"payload\":{\"numVal\":0.7771060991018699},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.67\",\"payload\":{\"numVal\":0.6707953172729753},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.07\",\"payload\":{\"numVal\":0.06669535222365841},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.96\",\"payload\":{\"numVal\":0.956255168504144},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.53\",\"payload\":{\"numVal\":0.5283992120350902},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.25\",\"payload\":{\"numVal\":0.24902599027517014},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.72\",\"payload\":{\"numVal\":0.7227199470019459},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 313 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522412622055, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.4317462701420689, + "skewed": 0.826348129788389, + "clumpy": 0.0408635575708749, + "sparse": 0.5292507688838417, + "striated": 0.8164302659040381, + "convex": 0.6786240993738606, + "skinny": 0.8117447362746262, + "stringy": 0.268782858901522, + "monotonic": 0.1717759035429245, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Senegal", + "count": 216, + "this": { + "country": "Senegal", + "year": 1800, + "map_id": 686, + "continent": "Africa", + "main_religion": "Muslim", + "gdp": 497, + "child_mortality": 20640, + "fertility": 5.7, + "life_expect": 25.2, + "population": 1009886 + }, + "x": 497, + "y": 25.2, + "size": 1009886, + "color": "Africa", + "map_id": 686 + }, + { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + -1.1459155902616465, + -88.59319116117973 + ], + "drag": [ + -1.1459155902616465, + -88.59319116117973 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 314 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Qatar (1 Countries)", + "timestamp": 1522412636301, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 634, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 50.80910809108093, + 24.754245955666022 + ], + [ + 50.74430744307443, + 25.482046155098786 + ], + [ + 51.014310143101426, + 26.006739322131708 + ], + [ + 51.28791287912881, + 26.11506307274496 + ], + [ + 51.59031590315905, + 25.801939731128527 + ], + [ + 51.608316083160844, + 25.216314454375663 + ], + [ + 51.38871388713889, + 24.627304060416122 + ], + [ + 51.11151111511117, + 24.55621659907618 + ], + [ + 50.80910809108093, + 24.754245955666022 + ] + ] + ] + }, + "countryRef": { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.6507455199122463, + "skewed": 0.8405528903299333, + "clumpy": 0.5675737580723295, + "sparse": 0.9176884882374627, + "striated": 0.06244675353866902, + "convex": 0.4884314871722928, + "skinny": 0.19120566549222628, + "stringy": 0.9076996529866477, + "monotonic": 0.03145553916099475, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 51.56620156177409, + -88.0627317349873 + ], + "drag": [ + 51.56620156177409, + -88.0627317349873 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 315 + }, + { + "attrs": { + "name": "Selected Qatar (1 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.65\",\"payload\":{\"numVal\":0.6507455199122463},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.84\",\"payload\":{\"numVal\":0.8405528903299333},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.57\",\"payload\":{\"numVal\":0.5675737580723295},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.92\",\"payload\":{\"numVal\":0.9176884882374627},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.06\",\"payload\":{\"numVal\":0.06244675353866902},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.49\",\"payload\":{\"numVal\":0.4884314871722928},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.19\",\"payload\":{\"numVal\":0.19120566549222628},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.91\",\"payload\":{\"numVal\":0.9076996529866477},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.03\",\"payload\":{\"numVal\":0.03145553916099475},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Qatar\",\"text\":\"Qatar\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 316 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Qatar (1 Countries)", + "timestamp": 1522412636301, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Ghana", + "count": 216, + "this": { + "country": "Ghana", + "year": 1800, + "map_id": 288, + "continent": "Africa", + "main_religion": "Christian", + "gdp": 696, + "child_mortality": 42308, + "fertility": 6.43, + "life_expect": 28, + "population": 2016034 + }, + "x": 696, + "y": 28, + "size": 2016034, + "color": "Africa", + "map_id": 288 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.652152478930454, + "skewed": 0.8434298028899379, + "clumpy": 0.7771060991018699, + "sparse": 0.6707953172729753, + "striated": 0.06669535222365841, + "convex": 0.956255168504144, + "skinny": 0.5283992120350902, + "stringy": 0.24902599027517014, + "monotonic": 0.7227199470019459, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 68.18197762056796, + -89.30832424753186 + ], + "drag": [ + 68.18197762056796, + -89.30832424753186 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 317 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Bangladesh (2 Countries)", + "timestamp": 1522412648095, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 50, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 92.67392673926742, + 22.04107451452481 + ], + [ + 92.65232652326523, + 21.32342966671203 + ], + [ + 92.30312303123031, + 21.475759941011916 + ], + [ + 92.36792367923681, + 20.67010204582587 + ], + [ + 92.08352083520839, + 21.19141009565213 + ], + [ + 92.02592025920262, + 21.700870235255067 + ], + [ + 91.8351183511835, + 22.183249437204694 + ], + [ + 91.41751417514178, + 22.76548959675091 + ], + [ + 90.4959049590496, + 22.804418444627544 + ], + [ + 90.58590585905858, + 22.39312670401786 + ], + [ + 90.27270272702725, + 21.83627492352163 + ], + [ + 89.8478984789848, + 22.03938195592147 + ], + [ + 89.70029700297005, + 21.856585626761614 + ], + [ + 89.41949419494193, + 21.966601935978204 + ], + [ + 89.03069030690307, + 22.056307541954794 + ], + [ + 88.87588875888758, + 22.87889102317415 + ], + [ + 88.53028530285303, + 23.63038704305356 + ], + [ + 88.69948699486997, + 24.232937905839762 + ], + [ + 88.0838808388084, + 24.502054723769547 + ], + [ + 88.30708307083074, + 24.865954823485936 + ], + [ + 88.92988929889299, + 25.238317716218972 + ], + [ + 88.20988209882097, + 25.768088559061894 + ], + [ + 88.56268562685625, + 26.446804558998025 + ], + [ + 89.3546935469355, + 26.01520211514837 + ], + [ + 89.83349833498335, + 25.964425357048412 + ], + [ + 89.91989919899203, + 25.270476329682282 + ], + [ + 90.87390873908743, + 25.133379082812397 + ], + [ + 91.79911799117991, + 25.146919551639044 + ], + [ + 92.37512375123754, + 24.97597113270251 + ], + [ + 91.91431914319145, + 24.12969183103651 + ], + [ + 91.46791467914682, + 24.072144838523215 + ], + [ + 91.15831158311585, + 23.50344514780366 + ], + [ + 91.70551705517056, + 22.985522215184062 + ], + [ + 91.87111871118714, + 23.623616808640236 + ], + [ + 92.14472144721447, + 23.627001925846898 + ], + [ + 92.67392673926742, + 22.04107451452481 + ] + ] + ] + }, + "countryRef": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.29149069027304697, + "skewed": 0.8980732702292111, + "clumpy": 0.24551611567694498, + "sparse": 0.08344541695666896, + "striated": 0.45655972343538864, + "convex": 0.14623403613449448, + "skinny": 0.41509864822128395, + "stringy": 0.31411836349135447, + "monotonic": 0.34725411087366753, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 91.1002894258009, + -88.15719671701233 + ], + "drag": [ + 91.1002894258009, + -88.15719671701233 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 318 + }, + { + "attrs": { + "name": "Selected Bangladesh (2 Countries)", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.29\",\"payload\":{\"numVal\":0.29149069027304697},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.9\",\"payload\":{\"numVal\":0.8980732702292111},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.25\",\"payload\":{\"numVal\":0.24551611567694498},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.08\",\"payload\":{\"numVal\":0.08344541695666896},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.46\",\"payload\":{\"numVal\":0.45655972343538864},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.15\",\"payload\":{\"numVal\":0.14623403613449448},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.42\",\"payload\":{\"numVal\":0.41509864822128395},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.31\",\"payload\":{\"numVal\":0.31411836349135447},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.35\",\"payload\":{\"numVal\":0.34725411087366753},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Qatar\",\"text\":\"Qatar\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Bangladesh\",\"text\":\"Bangladesh\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 319 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "Selected Bangladesh (2 Countries)", + "timestamp": 1522412648095, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 634, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 50.80910809108093, + 24.754245955666022 + ], + [ + 50.74430744307443, + 25.482046155098786 + ], + [ + 51.014310143101426, + 26.006739322131708 + ], + [ + 51.28791287912881, + 26.11506307274496 + ], + [ + 51.59031590315905, + 25.801939731128527 + ], + [ + 51.608316083160844, + 25.216314454375663 + ], + [ + 51.38871388713889, + 24.627304060416122 + ], + [ + 51.11151111511117, + 24.55621659907618 + ], + [ + 50.80910809108093, + 24.754245955666022 + ] + ] + ] + }, + "countryRef": { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": false, + "clicked": { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.6507455199122463, + "skewed": 0.8405528903299333, + "clumpy": 0.5675737580723295, + "sparse": 0.9176884882374627, + "striated": 0.06244675353866902, + "convex": 0.4884314871722928, + "skinny": 0.19120566549222628, + "stringy": 0.9076996529866477, + "monotonic": 0.03145553916099475, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 51.56620156177409, + -88.0627317349873 + ], + "drag": [ + 51.56620156177409, + -88.0627317349873 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 320 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1971", + "timestamp": 1522412665326, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + }, + "currentYear": 1971, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.9611542406600944, + "skewed": 0.10779234132825688, + "clumpy": 0.6857351030207015, + "sparse": 0.40741877982070296, + "striated": 0.6824105687873352, + "convex": 0.053957362927604446, + "skinny": 0.5689140764139564, + "stringy": 0.5864365237572897, + "monotonic": 0.4462732305552759, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 91.1002894258009, + -88.15719671701233 + ], + "drag": [ + 91.1002894258009, + -88.15719671701233 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 321 + }, + { + "attrs": { + "name": "Selected Year 1971", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"1971\",\"payload\":{\"numVal\":1971},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.96\",\"payload\":{\"numVal\":0.9611542406600944},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.11\",\"payload\":{\"numVal\":0.10779234132825688},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.69\",\"payload\":{\"numVal\":0.6857351030207015},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.41\",\"payload\":{\"numVal\":0.40741877982070296},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.68\",\"payload\":{\"numVal\":0.6824105687873352},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.05\",\"payload\":{\"numVal\":0.053957362927604446},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.57\",\"payload\":{\"numVal\":0.5689140764139564},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.59\",\"payload\":{\"numVal\":0.5864365237572897},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.45\",\"payload\":{\"numVal\":0.4462732305552759},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Qatar\",\"text\":\"Qatar\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Bangladesh\",\"text\":\"Bangladesh\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 322 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 1971", + "timestamp": 1522412665326, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": { + "type": "Feature", + "id": 50, + "properties": {}, + "geometry": { + "type": "Polygon", + "coordinates": [ + [ + [ + 92.67392673926742, + 22.04107451452481 + ], + [ + 92.65232652326523, + 21.32342966671203 + ], + [ + 92.30312303123031, + 21.475759941011916 + ], + [ + 92.36792367923681, + 20.67010204582587 + ], + [ + 92.08352083520839, + 21.19141009565213 + ], + [ + 92.02592025920262, + 21.700870235255067 + ], + [ + 91.8351183511835, + 22.183249437204694 + ], + [ + 91.41751417514178, + 22.76548959675091 + ], + [ + 90.4959049590496, + 22.804418444627544 + ], + [ + 90.58590585905858, + 22.39312670401786 + ], + [ + 90.27270272702725, + 21.83627492352163 + ], + [ + 89.8478984789848, + 22.03938195592147 + ], + [ + 89.70029700297005, + 21.856585626761614 + ], + [ + 89.41949419494193, + 21.966601935978204 + ], + [ + 89.03069030690307, + 22.056307541954794 + ], + [ + 88.87588875888758, + 22.87889102317415 + ], + [ + 88.53028530285303, + 23.63038704305356 + ], + [ + 88.69948699486997, + 24.232937905839762 + ], + [ + 88.0838808388084, + 24.502054723769547 + ], + [ + 88.30708307083074, + 24.865954823485936 + ], + [ + 88.92988929889299, + 25.238317716218972 + ], + [ + 88.20988209882097, + 25.768088559061894 + ], + [ + 88.56268562685625, + 26.446804558998025 + ], + [ + 89.3546935469355, + 26.01520211514837 + ], + [ + 89.83349833498335, + 25.964425357048412 + ], + [ + 89.91989919899203, + 25.270476329682282 + ], + [ + 90.87390873908743, + 25.133379082812397 + ], + [ + 91.79911799117991, + 25.146919551639044 + ], + [ + 92.37512375123754, + 24.97597113270251 + ], + [ + 91.91431914319145, + 24.12969183103651 + ], + [ + 91.46791467914682, + 24.072144838523215 + ], + [ + 91.15831158311585, + 23.50344514780366 + ], + [ + 91.70551705517056, + 22.985522215184062 + ], + [ + 91.87111871118714, + 23.623616808640236 + ], + [ + 92.14472144721447, + 23.627001925846898 + ], + [ + 92.67392673926742, + 22.04107451452481 + ] + ] + ] + }, + "countryRef": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + }, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.29149069027304697, + "skewed": 0.8980732702292111, + "clumpy": 0.24551611567694498, + "sparse": 0.08344541695666896, + "striated": 0.45655972343538864, + "convex": 0.14623403613449448, + "skinny": 0.41509864822128395, + "stringy": 0.31411836349135447, + "monotonic": 0.34725411087366753, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 91.1002894258009, + -88.15719671701233 + ], + "drag": [ + 91.1002894258009, + -88.15719671701233 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 323 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2010", + "timestamp": 1522412673400, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.6123240501565761, + "skewed": 0.14559027695891147, + "clumpy": 0.01860844294416708, + "sparse": 0.9974182459039287, + "striated": 0.6583079977829676, + "convex": 0.7260350633749542, + "skinny": 0.08734330164332627, + "stringy": 0.3415388439610396, + "monotonic": 0.07460982064237465, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 91.1002894258009, + -88.15719671701233 + ], + "drag": [ + 91.1002894258009, + -88.15719671701233 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 324 + }, + { + "attrs": { + "name": "Selected Year 2010", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.61\",\"payload\":{\"numVal\":0.6123240501565761},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.15\",\"payload\":{\"numVal\":0.14559027695891147},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.02\",\"payload\":{\"numVal\":0.01860844294416708},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 1\",\"payload\":{\"numVal\":0.9974182459039287},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.66\",\"payload\":{\"numVal\":0.6583079977829676},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.73\",\"payload\":{\"numVal\":0.7260350633749542},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.09\",\"payload\":{\"numVal\":0.08734330164332627},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.34\",\"payload\":{\"numVal\":0.3415388439610396},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.07\",\"payload\":{\"numVal\":0.07460982064237465},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"},{\"type\":2,\"id\":\"selectedCountries = Qatar\",\"text\":\"Qatar\",\"group\":\"Selected Countries\"},{\"type\":2,\"id\":\"selectedCountries = Bangladesh\",\"text\":\"Bangladesh\",\"group\":\"Selected Countries\"}]" + }, + "type": "state", + "id": 325 + }, + { + "attrs": { + "meta": { + "category": "data", + "operation": "update", + "name": "Selected Year 2010", + "timestamp": 1522412673400, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + }, + "currentYear": 1971, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.9611542406600944, + "skewed": 0.10779234132825688, + "clumpy": 0.6857351030207015, + "sparse": 0.40741877982070296, + "striated": 0.6824105687873352, + "convex": 0.053957362927604446, + "skinny": 0.5689140764139564, + "stringy": 0.5864365237572897, + "monotonic": 0.4462732305552759, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 91.1002894258009, + -88.15719671701233 + ], + "drag": [ + 91.1002894258009, + -88.15719671701233 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 326 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522412676056, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.8821775210401093, + "skewed": 0.024653162242738613, + "clumpy": 0.1539031236801076, + "sparse": 0.5931638685235758, + "striated": 0.7272454125232217, + "convex": 0.1353913539386673, + "skinny": 0.3067859254196368, + "stringy": 0.1943516163233825, + "monotonic": 0.5340812578429679, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 75.63042895726866, + -89.32202002222618 + ], + "drag": [ + 75.63042895726866, + -89.32202002222618 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 327 + }, + { + "attrs": { + "name": "No Countries Selected", + "description": "", + "visState": "[{\"type\":0,\"id\":\"currentYear\",\"text\":\"2010\",\"payload\":{\"numVal\":2010},\"group\":\"Selected Year\"},{\"type\":1,\"id\":\"gdp\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"life_expect\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"population\",\"group\":\"Attributes\"},{\"type\":1,\"id\":\"main_religion\",\"group\":\"Attributes\"},{\"type\":0,\"id\":\"outlying\",\"text\":\"outlying = 0.88\",\"payload\":{\"numVal\":0.8821775210401093},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skewed\",\"text\":\"skewed = 0.02\",\"payload\":{\"numVal\":0.024653162242738613},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"clumpy\",\"text\":\"clumpy = 0.15\",\"payload\":{\"numVal\":0.1539031236801076},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"sparse\",\"text\":\"sparse = 0.59\",\"payload\":{\"numVal\":0.5931638685235758},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"striated\",\"text\":\"striated = 0.73\",\"payload\":{\"numVal\":0.7272454125232217},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"convex\",\"text\":\"convex = 0.14\",\"payload\":{\"numVal\":0.1353913539386673},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"skinny\",\"text\":\"skinny = 0.31\",\"payload\":{\"numVal\":0.3067859254196368},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"stringy\",\"text\":\"stringy = 0.19\",\"payload\":{\"numVal\":0.1943516163233825},\"group\":\"Scatterplot Statistics\"},{\"type\":0,\"id\":\"monotonic\",\"text\":\"monotonic = 0.53\",\"payload\":{\"numVal\":0.5340812578429679},\"group\":\"Scatterplot Statistics\"},{\"type\":1,\"id\":\"mercator\",\"group\":\"Selected Map Projection\"}]" + }, + "type": "state", + "id": 328 + }, + { + "attrs": { + "meta": { + "category": "selection", + "operation": "update", + "name": "No Countries Selected", + "timestamp": 1522412676056, + "user": "anonymous" + }, + "f_id": "vegaSetState", + "parameter": { + "name": "", + "state": { + "signals": { + "width": 0, + "height": 0, + "padding": { + "top": 5, + "bottom": 5, + "left": 5, + "right": 5 + }, + "autosize": { + "type": "pad" + }, + "gapminderWidth": 600, + "gapminderHeight": 400, + "mapWidth": 600, + "mapHeight": 400, + "hoverMapCountry": {}, + "hoverGapminderCountry": {}, + "selectedCountries": null, + "clear": true, + "shift": true, + "clicked": { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + }, + "currentYear": 2010, + "xField": "gdp", + "yField": "life_expect", + "sizeField": "population", + "colorField": "main_religion", + "updateStatistics": null, + "outlying": 0.6123240501565761, + "skewed": 0.14559027695891147, + "clumpy": 0.01860844294416708, + "sparse": 0.9974182459039287, + "striated": 0.6583079977829676, + "convex": 0.7260350633749542, + "skinny": 0.08734330164332627, + "stringy": 0.3415388439610396, + "monotonic": 0.07460982064237465, + "groupLabelStatistics": "Scatterplot Statistics", + "groupLabelAttributes": "Attributes", + "groupLabelCountries": "Selected Countries", + "groupLabelYear": "Selected Year", + "groupLabelProjection": "Selected Map Projection", + "projectionType": "mercator", + "cursor": { + "user": "default", + "item": null + } + }, + "data": { + "selectedCountries": [ + { + "country": "Qatar", + "count": 216, + "this": { + "country": "Qatar", + "year": 1800, + "map_id": 634, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 1097, + "child_mortality": 293, + "fertility": 6.97, + "life_expect": 30.8, + "population": 14092 + }, + "x": 1097, + "y": 30.8, + "size": 14092, + "color": "Asia", + "map_id": 634 + }, + { + "country": "Bangladesh", + "count": 216, + "this": { + "country": "Bangladesh", + "year": 1800, + "map_id": 50, + "continent": "Asia", + "main_religion": "Muslim", + "gdp": 876, + "child_mortality": 451469, + "fertility": 6.7, + "life_expect": 25.5, + "population": 19227358 + }, + "x": 876, + "y": 25.5, + "size": 19227358, + "color": "Asia", + "map_id": 50 + } + ] + }, + "subcontext": [ + { + "signals": { + "width": 600, + "height": 400 + }, + "data": {} + }, + { + "signals": {}, + "data": {} + }, + { + "signals": { + "width": 600, + "height": 400, + "translate": [ + 300, + 200 + ], + "scale": 100, + "angles": [ + 0, + 0 + ], + "start": [ + 91.1002894258009, + -88.15719671701233 + ], + "drag": [ + 91.1002894258009, + -88.15719671701233 + ], + "delta": [ + 0, + 0 + ], + "rotateX": 0, + "centerY": 0 + }, + "data": {} + } + ] + } + }, + "onceExecuted": true + }, + "type": "action", + "id": 329 + } + ], + "edges": [ + { + "type": "consistsOf", + "id": 0, + "source": 0, + "target": 1 + }, + { + "type": "consistsOf", + "id": 1, + "source": 0, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 2, + "source": 3, + "target": 2 + }, + { + "type": "next", + "id": 3, + "source": 0, + "target": 3 + }, + { + "type": "resultsIn", + "id": 4, + "source": 3, + "target": 4 + }, + { + "type": "consistsOf", + "id": 5, + "source": 4, + "target": 1 + }, + { + "type": "consistsOf", + "id": 6, + "source": 4, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 7, + "source": 5, + "target": 2 + }, + { + "type": "inverses", + "id": 8, + "source": 5, + "target": 3 + }, + { + "type": "next", + "id": 9, + "source": 4, + "target": 5 + }, + { + "type": "resultsIn", + "id": 10, + "source": 5, + "target": 0 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 11, + "source": 6, + "target": 2 + }, + { + "type": "next", + "id": 12, + "source": 4, + "target": 6 + }, + { + "type": "resultsIn", + "id": 13, + "source": 6, + "target": 7 + }, + { + "type": "consistsOf", + "id": 14, + "source": 7, + "target": 1 + }, + { + "type": "consistsOf", + "id": 15, + "source": 7, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 16, + "source": 8, + "target": 2 + }, + { + "type": "inverses", + "id": 17, + "source": 8, + "target": 6 + }, + { + "type": "next", + "id": 18, + "source": 7, + "target": 8 + }, + { + "type": "resultsIn", + "id": 19, + "source": 8, + "target": 4 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 20, + "source": 9, + "target": 2 + }, + { + "type": "next", + "id": 21, + "source": 7, + "target": 9 + }, + { + "type": "resultsIn", + "id": 22, + "source": 9, + "target": 10 + }, + { + "type": "consistsOf", + "id": 23, + "source": 10, + "target": 1 + }, + { + "type": "consistsOf", + "id": 24, + "source": 10, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 25, + "source": 11, + "target": 2 + }, + { + "type": "inverses", + "id": 26, + "source": 11, + "target": 9 + }, + { + "type": "next", + "id": 27, + "source": 10, + "target": 11 + }, + { + "type": "resultsIn", + "id": 28, + "source": 11, + "target": 7 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 29, + "source": 12, + "target": 2 + }, + { + "type": "next", + "id": 30, + "source": 10, + "target": 12 + }, + { + "type": "resultsIn", + "id": 31, + "source": 12, + "target": 13 + }, + { + "type": "consistsOf", + "id": 32, + "source": 13, + "target": 1 + }, + { + "type": "consistsOf", + "id": 33, + "source": 13, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 34, + "source": 14, + "target": 2 + }, + { + "type": "inverses", + "id": 35, + "source": 14, + "target": 12 + }, + { + "type": "next", + "id": 36, + "source": 13, + "target": 14 + }, + { + "type": "resultsIn", + "id": 37, + "source": 14, + "target": 10 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 38, + "source": 15, + "target": 2 + }, + { + "type": "next", + "id": 39, + "source": 13, + "target": 15 + }, + { + "type": "resultsIn", + "id": 40, + "source": 15, + "target": 16 + }, + { + "type": "consistsOf", + "id": 41, + "source": 16, + "target": 1 + }, + { + "type": "consistsOf", + "id": 42, + "source": 16, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 43, + "source": 17, + "target": 2 + }, + { + "type": "inverses", + "id": 44, + "source": 17, + "target": 15 + }, + { + "type": "next", + "id": 45, + "source": 16, + "target": 17 + }, + { + "type": "resultsIn", + "id": 46, + "source": 17, + "target": 13 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 47, + "source": 18, + "target": 2 + }, + { + "type": "next", + "id": 48, + "source": 16, + "target": 18 + }, + { + "type": "resultsIn", + "id": 49, + "source": 18, + "target": 19 + }, + { + "type": "consistsOf", + "id": 50, + "source": 19, + "target": 1 + }, + { + "type": "consistsOf", + "id": 51, + "source": 19, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 52, + "source": 20, + "target": 2 + }, + { + "type": "inverses", + "id": 53, + "source": 20, + "target": 18 + }, + { + "type": "next", + "id": 54, + "source": 19, + "target": 20 + }, + { + "type": "resultsIn", + "id": 55, + "source": 20, + "target": 16 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 56, + "source": 21, + "target": 2 + }, + { + "type": "next", + "id": 57, + "source": 19, + "target": 21 + }, + { + "type": "resultsIn", + "id": 58, + "source": 21, + "target": 22 + }, + { + "type": "consistsOf", + "id": 59, + "source": 22, + "target": 1 + }, + { + "type": "consistsOf", + "id": 60, + "source": 22, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 61, + "source": 23, + "target": 2 + }, + { + "type": "inverses", + "id": 62, + "source": 23, + "target": 21 + }, + { + "type": "next", + "id": 63, + "source": 22, + "target": 23 + }, + { + "type": "resultsIn", + "id": 64, + "source": 23, + "target": 19 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 65, + "source": 24, + "target": 2 + }, + { + "type": "next", + "id": 66, + "source": 22, + "target": 24 + }, + { + "type": "resultsIn", + "id": 67, + "source": 24, + "target": 25 + }, + { + "type": "consistsOf", + "id": 68, + "source": 25, + "target": 1 + }, + { + "type": "consistsOf", + "id": 69, + "source": 25, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 70, + "source": 26, + "target": 2 + }, + { + "type": "inverses", + "id": 71, + "source": 26, + "target": 24 + }, + { + "type": "next", + "id": 72, + "source": 25, + "target": 26 + }, + { + "type": "resultsIn", + "id": 73, + "source": 26, + "target": 22 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 74, + "source": 27, + "target": 2 + }, + { + "type": "next", + "id": 75, + "source": 25, + "target": 27 + }, + { + "type": "resultsIn", + "id": 76, + "source": 27, + "target": 28 + }, + { + "type": "consistsOf", + "id": 77, + "source": 28, + "target": 1 + }, + { + "type": "consistsOf", + "id": 78, + "source": 28, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 79, + "source": 29, + "target": 2 + }, + { + "type": "inverses", + "id": 80, + "source": 29, + "target": 27 + }, + { + "type": "next", + "id": 81, + "source": 28, + "target": 29 + }, + { + "type": "resultsIn", + "id": 82, + "source": 29, + "target": 25 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 83, + "source": 30, + "target": 2 + }, + { + "type": "next", + "id": 84, + "source": 28, + "target": 30 + }, + { + "type": "resultsIn", + "id": 85, + "source": 30, + "target": 31 + }, + { + "type": "consistsOf", + "id": 86, + "source": 31, + "target": 1 + }, + { + "type": "consistsOf", + "id": 87, + "source": 31, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 88, + "source": 32, + "target": 2 + }, + { + "type": "inverses", + "id": 89, + "source": 32, + "target": 30 + }, + { + "type": "next", + "id": 90, + "source": 31, + "target": 32 + }, + { + "type": "resultsIn", + "id": 91, + "source": 32, + "target": 28 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 92, + "source": 33, + "target": 2 + }, + { + "type": "next", + "id": 93, + "source": 31, + "target": 33 + }, + { + "type": "resultsIn", + "id": 94, + "source": 33, + "target": 34 + }, + { + "type": "consistsOf", + "id": 95, + "source": 34, + "target": 1 + }, + { + "type": "consistsOf", + "id": 96, + "source": 34, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 97, + "source": 35, + "target": 2 + }, + { + "type": "inverses", + "id": 98, + "source": 35, + "target": 33 + }, + { + "type": "next", + "id": 99, + "source": 34, + "target": 35 + }, + { + "type": "resultsIn", + "id": 100, + "source": 35, + "target": 31 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 101, + "source": 36, + "target": 2 + }, + { + "type": "next", + "id": 102, + "source": 34, + "target": 36 + }, + { + "type": "resultsIn", + "id": 103, + "source": 36, + "target": 37 + }, + { + "type": "consistsOf", + "id": 104, + "source": 37, + "target": 1 + }, + { + "type": "consistsOf", + "id": 105, + "source": 37, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 106, + "source": 38, + "target": 2 + }, + { + "type": "inverses", + "id": 107, + "source": 38, + "target": 36 + }, + { + "type": "next", + "id": 108, + "source": 37, + "target": 38 + }, + { + "type": "resultsIn", + "id": 109, + "source": 38, + "target": 34 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 110, + "source": 39, + "target": 2 + }, + { + "type": "next", + "id": 111, + "source": 37, + "target": 39 + }, + { + "type": "resultsIn", + "id": 112, + "source": 39, + "target": 40 + }, + { + "type": "consistsOf", + "id": 113, + "source": 40, + "target": 1 + }, + { + "type": "consistsOf", + "id": 114, + "source": 40, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 115, + "source": 41, + "target": 2 + }, + { + "type": "inverses", + "id": 116, + "source": 41, + "target": 39 + }, + { + "type": "next", + "id": 117, + "source": 40, + "target": 41 + }, + { + "type": "resultsIn", + "id": 118, + "source": 41, + "target": 37 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 119, + "source": 42, + "target": 2 + }, + { + "type": "next", + "id": 120, + "source": 40, + "target": 42 + }, + { + "type": "resultsIn", + "id": 121, + "source": 42, + "target": 43 + }, + { + "type": "consistsOf", + "id": 122, + "source": 43, + "target": 1 + }, + { + "type": "consistsOf", + "id": 123, + "source": 43, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 124, + "source": 44, + "target": 2 + }, + { + "type": "inverses", + "id": 125, + "source": 44, + "target": 42 + }, + { + "type": "next", + "id": 126, + "source": 43, + "target": 44 + }, + { + "type": "resultsIn", + "id": 127, + "source": 44, + "target": 40 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 128, + "source": 45, + "target": 2 + }, + { + "type": "next", + "id": 129, + "source": 43, + "target": 45 + }, + { + "type": "resultsIn", + "id": 130, + "source": 45, + "target": 46 + }, + { + "type": "consistsOf", + "id": 131, + "source": 46, + "target": 1 + }, + { + "type": "consistsOf", + "id": 132, + "source": 46, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 133, + "source": 47, + "target": 2 + }, + { + "type": "inverses", + "id": 134, + "source": 47, + "target": 45 + }, + { + "type": "next", + "id": 135, + "source": 46, + "target": 47 + }, + { + "type": "resultsIn", + "id": 136, + "source": 47, + "target": 43 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 137, + "source": 48, + "target": 2 + }, + { + "type": "next", + "id": 138, + "source": 46, + "target": 48 + }, + { + "type": "resultsIn", + "id": 139, + "source": 48, + "target": 49 + }, + { + "type": "consistsOf", + "id": 140, + "source": 49, + "target": 1 + }, + { + "type": "consistsOf", + "id": 141, + "source": 49, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 142, + "source": 50, + "target": 2 + }, + { + "type": "inverses", + "id": 143, + "source": 50, + "target": 48 + }, + { + "type": "next", + "id": 144, + "source": 49, + "target": 50 + }, + { + "type": "resultsIn", + "id": 145, + "source": 50, + "target": 46 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 146, + "source": 51, + "target": 2 + }, + { + "type": "next", + "id": 147, + "source": 49, + "target": 51 + }, + { + "type": "resultsIn", + "id": 148, + "source": 51, + "target": 52 + }, + { + "type": "consistsOf", + "id": 149, + "source": 52, + "target": 1 + }, + { + "type": "consistsOf", + "id": 150, + "source": 52, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 151, + "source": 53, + "target": 2 + }, + { + "type": "inverses", + "id": 152, + "source": 53, + "target": 51 + }, + { + "type": "next", + "id": 153, + "source": 52, + "target": 53 + }, + { + "type": "resultsIn", + "id": 154, + "source": 53, + "target": 49 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 155, + "source": 54, + "target": 2 + }, + { + "type": "next", + "id": 156, + "source": 52, + "target": 54 + }, + { + "type": "resultsIn", + "id": 157, + "source": 54, + "target": 55 + }, + { + "type": "consistsOf", + "id": 158, + "source": 55, + "target": 1 + }, + { + "type": "consistsOf", + "id": 159, + "source": 55, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 160, + "source": 56, + "target": 2 + }, + { + "type": "inverses", + "id": 161, + "source": 56, + "target": 54 + }, + { + "type": "next", + "id": 162, + "source": 55, + "target": 56 + }, + { + "type": "resultsIn", + "id": 163, + "source": 56, + "target": 52 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 164, + "source": 57, + "target": 2 + }, + { + "type": "next", + "id": 165, + "source": 55, + "target": 57 + }, + { + "type": "resultsIn", + "id": 166, + "source": 57, + "target": 58 + }, + { + "type": "consistsOf", + "id": 167, + "source": 58, + "target": 1 + }, + { + "type": "consistsOf", + "id": 168, + "source": 58, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 169, + "source": 59, + "target": 2 + }, + { + "type": "inverses", + "id": 170, + "source": 59, + "target": 57 + }, + { + "type": "next", + "id": 171, + "source": 58, + "target": 59 + }, + { + "type": "resultsIn", + "id": 172, + "source": 59, + "target": 55 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 173, + "source": 60, + "target": 2 + }, + { + "type": "next", + "id": 174, + "source": 58, + "target": 60 + }, + { + "type": "resultsIn", + "id": 175, + "source": 60, + "target": 61 + }, + { + "type": "consistsOf", + "id": 176, + "source": 61, + "target": 1 + }, + { + "type": "consistsOf", + "id": 177, + "source": 61, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 178, + "source": 62, + "target": 2 + }, + { + "type": "inverses", + "id": 179, + "source": 62, + "target": 60 + }, + { + "type": "next", + "id": 180, + "source": 61, + "target": 62 + }, + { + "type": "resultsIn", + "id": 181, + "source": 62, + "target": 58 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 182, + "source": 63, + "target": 2 + }, + { + "type": "next", + "id": 183, + "source": 61, + "target": 63 + }, + { + "type": "resultsIn", + "id": 184, + "source": 63, + "target": 64 + }, + { + "type": "consistsOf", + "id": 185, + "source": 64, + "target": 1 + }, + { + "type": "consistsOf", + "id": 186, + "source": 64, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 187, + "source": 65, + "target": 2 + }, + { + "type": "inverses", + "id": 188, + "source": 65, + "target": 63 + }, + { + "type": "next", + "id": 189, + "source": 64, + "target": 65 + }, + { + "type": "resultsIn", + "id": 190, + "source": 65, + "target": 61 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 191, + "source": 66, + "target": 2 + }, + { + "type": "next", + "id": 192, + "source": 64, + "target": 66 + }, + { + "type": "resultsIn", + "id": 193, + "source": 66, + "target": 67 + }, + { + "type": "consistsOf", + "id": 194, + "source": 67, + "target": 1 + }, + { + "type": "consistsOf", + "id": 195, + "source": 67, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 196, + "source": 68, + "target": 2 + }, + { + "type": "inverses", + "id": 197, + "source": 68, + "target": 66 + }, + { + "type": "next", + "id": 198, + "source": 67, + "target": 68 + }, + { + "type": "resultsIn", + "id": 199, + "source": 68, + "target": 64 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 200, + "source": 69, + "target": 2 + }, + { + "type": "next", + "id": 201, + "source": 67, + "target": 69 + }, + { + "type": "resultsIn", + "id": 202, + "source": 69, + "target": 70 + }, + { + "type": "consistsOf", + "id": 203, + "source": 70, + "target": 1 + }, + { + "type": "consistsOf", + "id": 204, + "source": 70, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 205, + "source": 71, + "target": 2 + }, + { + "type": "inverses", + "id": 206, + "source": 71, + "target": 69 + }, + { + "type": "next", + "id": 207, + "source": 70, + "target": 71 + }, + { + "type": "resultsIn", + "id": 208, + "source": 71, + "target": 67 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 209, + "source": 72, + "target": 2 + }, + { + "type": "next", + "id": 210, + "source": 70, + "target": 72 + }, + { + "type": "resultsIn", + "id": 211, + "source": 72, + "target": 73 + }, + { + "type": "consistsOf", + "id": 212, + "source": 73, + "target": 1 + }, + { + "type": "consistsOf", + "id": 213, + "source": 73, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 214, + "source": 74, + "target": 2 + }, + { + "type": "inverses", + "id": 215, + "source": 74, + "target": 72 + }, + { + "type": "next", + "id": 216, + "source": 73, + "target": 74 + }, + { + "type": "resultsIn", + "id": 217, + "source": 74, + "target": 70 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 218, + "source": 75, + "target": 2 + }, + { + "type": "next", + "id": 219, + "source": 73, + "target": 75 + }, + { + "type": "resultsIn", + "id": 220, + "source": 75, + "target": 76 + }, + { + "type": "consistsOf", + "id": 221, + "source": 76, + "target": 1 + }, + { + "type": "consistsOf", + "id": 222, + "source": 76, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 223, + "source": 77, + "target": 2 + }, + { + "type": "inverses", + "id": 224, + "source": 77, + "target": 75 + }, + { + "type": "next", + "id": 225, + "source": 76, + "target": 77 + }, + { + "type": "resultsIn", + "id": 226, + "source": 77, + "target": 73 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 227, + "source": 78, + "target": 2 + }, + { + "type": "next", + "id": 228, + "source": 76, + "target": 78 + }, + { + "type": "resultsIn", + "id": 229, + "source": 78, + "target": 79 + }, + { + "type": "consistsOf", + "id": 230, + "source": 79, + "target": 1 + }, + { + "type": "consistsOf", + "id": 231, + "source": 79, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 232, + "source": 80, + "target": 2 + }, + { + "type": "inverses", + "id": 233, + "source": 80, + "target": 78 + }, + { + "type": "next", + "id": 234, + "source": 79, + "target": 80 + }, + { + "type": "resultsIn", + "id": 235, + "source": 80, + "target": 76 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 236, + "source": 81, + "target": 2 + }, + { + "type": "next", + "id": 237, + "source": 79, + "target": 81 + }, + { + "type": "resultsIn", + "id": 238, + "source": 81, + "target": 82 + }, + { + "type": "consistsOf", + "id": 239, + "source": 82, + "target": 1 + }, + { + "type": "consistsOf", + "id": 240, + "source": 82, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 241, + "source": 83, + "target": 2 + }, + { + "type": "inverses", + "id": 242, + "source": 83, + "target": 81 + }, + { + "type": "next", + "id": 243, + "source": 82, + "target": 83 + }, + { + "type": "resultsIn", + "id": 244, + "source": 83, + "target": 79 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 245, + "source": 84, + "target": 2 + }, + { + "type": "next", + "id": 246, + "source": 82, + "target": 84 + }, + { + "type": "resultsIn", + "id": 247, + "source": 84, + "target": 85 + }, + { + "type": "consistsOf", + "id": 248, + "source": 85, + "target": 1 + }, + { + "type": "consistsOf", + "id": 249, + "source": 85, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 250, + "source": 86, + "target": 2 + }, + { + "type": "inverses", + "id": 251, + "source": 86, + "target": 84 + }, + { + "type": "next", + "id": 252, + "source": 85, + "target": 86 + }, + { + "type": "resultsIn", + "id": 253, + "source": 86, + "target": 82 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 254, + "source": 87, + "target": 2 + }, + { + "type": "next", + "id": 255, + "source": 85, + "target": 87 + }, + { + "type": "resultsIn", + "id": 256, + "source": 87, + "target": 88 + }, + { + "type": "consistsOf", + "id": 257, + "source": 88, + "target": 1 + }, + { + "type": "consistsOf", + "id": 258, + "source": 88, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 259, + "source": 89, + "target": 2 + }, + { + "type": "inverses", + "id": 260, + "source": 89, + "target": 87 + }, + { + "type": "next", + "id": 261, + "source": 88, + "target": 89 + }, + { + "type": "resultsIn", + "id": 262, + "source": 89, + "target": 85 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 263, + "source": 90, + "target": 2 + }, + { + "type": "next", + "id": 264, + "source": 88, + "target": 90 + }, + { + "type": "resultsIn", + "id": 265, + "source": 90, + "target": 91 + }, + { + "type": "consistsOf", + "id": 266, + "source": 91, + "target": 1 + }, + { + "type": "consistsOf", + "id": 267, + "source": 91, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 268, + "source": 92, + "target": 2 + }, + { + "type": "inverses", + "id": 269, + "source": 92, + "target": 90 + }, + { + "type": "next", + "id": 270, + "source": 91, + "target": 92 + }, + { + "type": "resultsIn", + "id": 271, + "source": 92, + "target": 88 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 272, + "source": 93, + "target": 2 + }, + { + "type": "next", + "id": 273, + "source": 91, + "target": 93 + }, + { + "type": "resultsIn", + "id": 274, + "source": 93, + "target": 94 + }, + { + "type": "consistsOf", + "id": 275, + "source": 94, + "target": 1 + }, + { + "type": "consistsOf", + "id": 276, + "source": 94, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 277, + "source": 95, + "target": 2 + }, + { + "type": "inverses", + "id": 278, + "source": 95, + "target": 93 + }, + { + "type": "next", + "id": 279, + "source": 94, + "target": 95 + }, + { + "type": "resultsIn", + "id": 280, + "source": 95, + "target": 91 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 281, + "source": 96, + "target": 2 + }, + { + "type": "next", + "id": 282, + "source": 94, + "target": 96 + }, + { + "type": "resultsIn", + "id": 283, + "source": 96, + "target": 97 + }, + { + "type": "consistsOf", + "id": 284, + "source": 97, + "target": 1 + }, + { + "type": "consistsOf", + "id": 285, + "source": 97, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 286, + "source": 98, + "target": 2 + }, + { + "type": "inverses", + "id": 287, + "source": 98, + "target": 96 + }, + { + "type": "next", + "id": 288, + "source": 97, + "target": 98 + }, + { + "type": "resultsIn", + "id": 289, + "source": 98, + "target": 94 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 290, + "source": 99, + "target": 2 + }, + { + "type": "next", + "id": 291, + "source": 97, + "target": 99 + }, + { + "type": "resultsIn", + "id": 292, + "source": 99, + "target": 100 + }, + { + "type": "consistsOf", + "id": 293, + "source": 100, + "target": 1 + }, + { + "type": "consistsOf", + "id": 294, + "source": 100, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 295, + "source": 101, + "target": 2 + }, + { + "type": "inverses", + "id": 296, + "source": 101, + "target": 99 + }, + { + "type": "next", + "id": 297, + "source": 100, + "target": 101 + }, + { + "type": "resultsIn", + "id": 298, + "source": 101, + "target": 97 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 299, + "source": 102, + "target": 2 + }, + { + "type": "next", + "id": 300, + "source": 100, + "target": 102 + }, + { + "type": "resultsIn", + "id": 301, + "source": 102, + "target": 103 + }, + { + "type": "consistsOf", + "id": 302, + "source": 103, + "target": 1 + }, + { + "type": "consistsOf", + "id": 303, + "source": 103, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 304, + "source": 104, + "target": 2 + }, + { + "type": "inverses", + "id": 305, + "source": 104, + "target": 102 + }, + { + "type": "next", + "id": 306, + "source": 103, + "target": 104 + }, + { + "type": "resultsIn", + "id": 307, + "source": 104, + "target": 100 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 308, + "source": 105, + "target": 2 + }, + { + "type": "next", + "id": 309, + "source": 103, + "target": 105 + }, + { + "type": "resultsIn", + "id": 310, + "source": 105, + "target": 106 + }, + { + "type": "consistsOf", + "id": 311, + "source": 106, + "target": 1 + }, + { + "type": "consistsOf", + "id": 312, + "source": 106, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 313, + "source": 107, + "target": 2 + }, + { + "type": "inverses", + "id": 314, + "source": 107, + "target": 105 + }, + { + "type": "next", + "id": 315, + "source": 106, + "target": 107 + }, + { + "type": "resultsIn", + "id": 316, + "source": 107, + "target": 103 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 317, + "source": 108, + "target": 2 + }, + { + "type": "next", + "id": 318, + "source": 106, + "target": 108 + }, + { + "type": "resultsIn", + "id": 319, + "source": 108, + "target": 109 + }, + { + "type": "consistsOf", + "id": 320, + "source": 109, + "target": 1 + }, + { + "type": "consistsOf", + "id": 321, + "source": 109, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 322, + "source": 110, + "target": 2 + }, + { + "type": "inverses", + "id": 323, + "source": 110, + "target": 108 + }, + { + "type": "next", + "id": 324, + "source": 109, + "target": 110 + }, + { + "type": "resultsIn", + "id": 325, + "source": 110, + "target": 106 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 326, + "source": 111, + "target": 2 + }, + { + "type": "next", + "id": 327, + "source": 109, + "target": 111 + }, + { + "type": "resultsIn", + "id": 328, + "source": 111, + "target": 112 + }, + { + "type": "consistsOf", + "id": 329, + "source": 112, + "target": 1 + }, + { + "type": "consistsOf", + "id": 330, + "source": 112, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 331, + "source": 113, + "target": 2 + }, + { + "type": "inverses", + "id": 332, + "source": 113, + "target": 111 + }, + { + "type": "next", + "id": 333, + "source": 112, + "target": 113 + }, + { + "type": "resultsIn", + "id": 334, + "source": 113, + "target": 109 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 335, + "source": 114, + "target": 2 + }, + { + "type": "next", + "id": 336, + "source": 112, + "target": 114 + }, + { + "type": "resultsIn", + "id": 337, + "source": 114, + "target": 115 + }, + { + "type": "consistsOf", + "id": 338, + "source": 115, + "target": 1 + }, + { + "type": "consistsOf", + "id": 339, + "source": 115, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 340, + "source": 116, + "target": 2 + }, + { + "type": "inverses", + "id": 341, + "source": 116, + "target": 114 + }, + { + "type": "next", + "id": 342, + "source": 115, + "target": 116 + }, + { + "type": "resultsIn", + "id": 343, + "source": 116, + "target": 112 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 344, + "source": 117, + "target": 2 + }, + { + "type": "next", + "id": 345, + "source": 115, + "target": 117 + }, + { + "type": "resultsIn", + "id": 346, + "source": 117, + "target": 118 + }, + { + "type": "consistsOf", + "id": 347, + "source": 118, + "target": 1 + }, + { + "type": "consistsOf", + "id": 348, + "source": 118, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 349, + "source": 119, + "target": 2 + }, + { + "type": "inverses", + "id": 350, + "source": 119, + "target": 117 + }, + { + "type": "next", + "id": 351, + "source": 118, + "target": 119 + }, + { + "type": "resultsIn", + "id": 352, + "source": 119, + "target": 115 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 353, + "source": 120, + "target": 2 + }, + { + "type": "next", + "id": 354, + "source": 0, + "target": 120 + }, + { + "type": "resultsIn", + "id": 355, + "source": 120, + "target": 121 + }, + { + "type": "consistsOf", + "id": 356, + "source": 121, + "target": 1 + }, + { + "type": "consistsOf", + "id": 357, + "source": 121, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 358, + "source": 122, + "target": 2 + }, + { + "type": "inverses", + "id": 359, + "source": 122, + "target": 120 + }, + { + "type": "next", + "id": 360, + "source": 121, + "target": 122 + }, + { + "type": "resultsIn", + "id": 361, + "source": 122, + "target": 0 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 362, + "source": 123, + "target": 2 + }, + { + "type": "next", + "id": 363, + "source": 121, + "target": 123 + }, + { + "type": "resultsIn", + "id": 364, + "source": 123, + "target": 124 + }, + { + "type": "consistsOf", + "id": 365, + "source": 124, + "target": 1 + }, + { + "type": "consistsOf", + "id": 366, + "source": 124, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 367, + "source": 125, + "target": 2 + }, + { + "type": "inverses", + "id": 368, + "source": 125, + "target": 123 + }, + { + "type": "next", + "id": 369, + "source": 124, + "target": 125 + }, + { + "type": "resultsIn", + "id": 370, + "source": 125, + "target": 121 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 371, + "source": 126, + "target": 2 + }, + { + "type": "next", + "id": 372, + "source": 124, + "target": 126 + }, + { + "type": "resultsIn", + "id": 373, + "source": 126, + "target": 127 + }, + { + "type": "consistsOf", + "id": 374, + "source": 127, + "target": 1 + }, + { + "type": "consistsOf", + "id": 375, + "source": 127, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 376, + "source": 128, + "target": 2 + }, + { + "type": "inverses", + "id": 377, + "source": 128, + "target": 126 + }, + { + "type": "next", + "id": 378, + "source": 127, + "target": 128 + }, + { + "type": "resultsIn", + "id": 379, + "source": 128, + "target": 124 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 380, + "source": 129, + "target": 2 + }, + { + "type": "next", + "id": 381, + "source": 127, + "target": 129 + }, + { + "type": "resultsIn", + "id": 382, + "source": 129, + "target": 130 + }, + { + "type": "consistsOf", + "id": 383, + "source": 130, + "target": 1 + }, + { + "type": "consistsOf", + "id": 384, + "source": 130, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 385, + "source": 131, + "target": 2 + }, + { + "type": "inverses", + "id": 386, + "source": 131, + "target": 129 + }, + { + "type": "next", + "id": 387, + "source": 130, + "target": 131 + }, + { + "type": "resultsIn", + "id": 388, + "source": 131, + "target": 127 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 389, + "source": 132, + "target": 2 + }, + { + "type": "next", + "id": 390, + "source": 130, + "target": 132 + }, + { + "type": "resultsIn", + "id": 391, + "source": 132, + "target": 133 + }, + { + "type": "consistsOf", + "id": 392, + "source": 133, + "target": 1 + }, + { + "type": "consistsOf", + "id": 393, + "source": 133, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 394, + "source": 134, + "target": 2 + }, + { + "type": "inverses", + "id": 395, + "source": 134, + "target": 132 + }, + { + "type": "next", + "id": 396, + "source": 133, + "target": 134 + }, + { + "type": "resultsIn", + "id": 397, + "source": 134, + "target": 130 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 398, + "source": 135, + "target": 2 + }, + { + "type": "next", + "id": 399, + "source": 133, + "target": 135 + }, + { + "type": "resultsIn", + "id": 400, + "source": 135, + "target": 136 + }, + { + "type": "consistsOf", + "id": 401, + "source": 136, + "target": 1 + }, + { + "type": "consistsOf", + "id": 402, + "source": 136, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 403, + "source": 137, + "target": 2 + }, + { + "type": "inverses", + "id": 404, + "source": 137, + "target": 135 + }, + { + "type": "next", + "id": 405, + "source": 136, + "target": 137 + }, + { + "type": "resultsIn", + "id": 406, + "source": 137, + "target": 133 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 407, + "source": 138, + "target": 2 + }, + { + "type": "next", + "id": 408, + "source": 136, + "target": 138 + }, + { + "type": "resultsIn", + "id": 409, + "source": 138, + "target": 139 + }, + { + "type": "consistsOf", + "id": 410, + "source": 139, + "target": 1 + }, + { + "type": "consistsOf", + "id": 411, + "source": 139, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 412, + "source": 140, + "target": 2 + }, + { + "type": "inverses", + "id": 413, + "source": 140, + "target": 138 + }, + { + "type": "next", + "id": 414, + "source": 139, + "target": 140 + }, + { + "type": "resultsIn", + "id": 415, + "source": 140, + "target": 136 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 416, + "source": 141, + "target": 2 + }, + { + "type": "next", + "id": 417, + "source": 139, + "target": 141 + }, + { + "type": "resultsIn", + "id": 418, + "source": 141, + "target": 142 + }, + { + "type": "consistsOf", + "id": 419, + "source": 142, + "target": 1 + }, + { + "type": "consistsOf", + "id": 420, + "source": 142, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 421, + "source": 143, + "target": 2 + }, + { + "type": "inverses", + "id": 422, + "source": 143, + "target": 141 + }, + { + "type": "next", + "id": 423, + "source": 142, + "target": 143 + }, + { + "type": "resultsIn", + "id": 424, + "source": 143, + "target": 139 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 425, + "source": 144, + "target": 2 + }, + { + "type": "next", + "id": 426, + "source": 142, + "target": 144 + }, + { + "type": "resultsIn", + "id": 427, + "source": 144, + "target": 145 + }, + { + "type": "consistsOf", + "id": 428, + "source": 145, + "target": 1 + }, + { + "type": "consistsOf", + "id": 429, + "source": 145, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 430, + "source": 146, + "target": 2 + }, + { + "type": "inverses", + "id": 431, + "source": 146, + "target": 144 + }, + { + "type": "next", + "id": 432, + "source": 145, + "target": 146 + }, + { + "type": "resultsIn", + "id": 433, + "source": 146, + "target": 142 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 434, + "source": 147, + "target": 2 + }, + { + "type": "next", + "id": 435, + "source": 145, + "target": 147 + }, + { + "type": "resultsIn", + "id": 436, + "source": 147, + "target": 148 + }, + { + "type": "consistsOf", + "id": 437, + "source": 148, + "target": 1 + }, + { + "type": "consistsOf", + "id": 438, + "source": 148, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 439, + "source": 149, + "target": 2 + }, + { + "type": "inverses", + "id": 440, + "source": 149, + "target": 147 + }, + { + "type": "next", + "id": 441, + "source": 148, + "target": 149 + }, + { + "type": "resultsIn", + "id": 442, + "source": 149, + "target": 145 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 443, + "source": 150, + "target": 2 + }, + { + "type": "next", + "id": 444, + "source": 148, + "target": 150 + }, + { + "type": "resultsIn", + "id": 445, + "source": 150, + "target": 151 + }, + { + "type": "consistsOf", + "id": 446, + "source": 151, + "target": 1 + }, + { + "type": "consistsOf", + "id": 447, + "source": 151, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 448, + "source": 152, + "target": 2 + }, + { + "type": "inverses", + "id": 449, + "source": 152, + "target": 150 + }, + { + "type": "next", + "id": 450, + "source": 151, + "target": 152 + }, + { + "type": "resultsIn", + "id": 451, + "source": 152, + "target": 148 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 452, + "source": 153, + "target": 2 + }, + { + "type": "next", + "id": 453, + "source": 151, + "target": 153 + }, + { + "type": "resultsIn", + "id": 454, + "source": 153, + "target": 154 + }, + { + "type": "consistsOf", + "id": 455, + "source": 154, + "target": 1 + }, + { + "type": "consistsOf", + "id": 456, + "source": 154, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 457, + "source": 155, + "target": 2 + }, + { + "type": "inverses", + "id": 458, + "source": 155, + "target": 153 + }, + { + "type": "next", + "id": 459, + "source": 154, + "target": 155 + }, + { + "type": "resultsIn", + "id": 460, + "source": 155, + "target": 151 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 461, + "source": 156, + "target": 2 + }, + { + "type": "next", + "id": 462, + "source": 154, + "target": 156 + }, + { + "type": "resultsIn", + "id": 463, + "source": 156, + "target": 157 + }, + { + "type": "consistsOf", + "id": 464, + "source": 157, + "target": 1 + }, + { + "type": "consistsOf", + "id": 465, + "source": 157, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 466, + "source": 158, + "target": 2 + }, + { + "type": "inverses", + "id": 467, + "source": 158, + "target": 156 + }, + { + "type": "next", + "id": 468, + "source": 157, + "target": 158 + }, + { + "type": "resultsIn", + "id": 469, + "source": 158, + "target": 154 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 470, + "source": 159, + "target": 2 + }, + { + "type": "next", + "id": 471, + "source": 157, + "target": 159 + }, + { + "type": "resultsIn", + "id": 472, + "source": 159, + "target": 160 + }, + { + "type": "consistsOf", + "id": 473, + "source": 160, + "target": 1 + }, + { + "type": "consistsOf", + "id": 474, + "source": 160, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 475, + "source": 161, + "target": 2 + }, + { + "type": "inverses", + "id": 476, + "source": 161, + "target": 159 + }, + { + "type": "next", + "id": 477, + "source": 160, + "target": 161 + }, + { + "type": "resultsIn", + "id": 478, + "source": 161, + "target": 157 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 479, + "source": 162, + "target": 2 + }, + { + "type": "next", + "id": 480, + "source": 160, + "target": 162 + }, + { + "type": "resultsIn", + "id": 481, + "source": 162, + "target": 163 + }, + { + "type": "consistsOf", + "id": 482, + "source": 163, + "target": 1 + }, + { + "type": "consistsOf", + "id": 483, + "source": 163, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 484, + "source": 164, + "target": 2 + }, + { + "type": "inverses", + "id": 485, + "source": 164, + "target": 162 + }, + { + "type": "next", + "id": 486, + "source": 163, + "target": 164 + }, + { + "type": "resultsIn", + "id": 487, + "source": 164, + "target": 160 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 488, + "source": 165, + "target": 2 + }, + { + "type": "next", + "id": 489, + "source": 163, + "target": 165 + }, + { + "type": "resultsIn", + "id": 490, + "source": 165, + "target": 166 + }, + { + "type": "consistsOf", + "id": 491, + "source": 166, + "target": 1 + }, + { + "type": "consistsOf", + "id": 492, + "source": 166, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 493, + "source": 167, + "target": 2 + }, + { + "type": "inverses", + "id": 494, + "source": 167, + "target": 165 + }, + { + "type": "next", + "id": 495, + "source": 166, + "target": 167 + }, + { + "type": "resultsIn", + "id": 496, + "source": 167, + "target": 163 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 497, + "source": 168, + "target": 2 + }, + { + "type": "next", + "id": 498, + "source": 166, + "target": 168 + }, + { + "type": "resultsIn", + "id": 499, + "source": 168, + "target": 169 + }, + { + "type": "consistsOf", + "id": 500, + "source": 169, + "target": 1 + }, + { + "type": "consistsOf", + "id": 501, + "source": 169, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 502, + "source": 170, + "target": 2 + }, + { + "type": "inverses", + "id": 503, + "source": 170, + "target": 168 + }, + { + "type": "next", + "id": 504, + "source": 169, + "target": 170 + }, + { + "type": "resultsIn", + "id": 505, + "source": 170, + "target": 166 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 506, + "source": 171, + "target": 2 + }, + { + "type": "next", + "id": 507, + "source": 169, + "target": 171 + }, + { + "type": "resultsIn", + "id": 508, + "source": 171, + "target": 172 + }, + { + "type": "consistsOf", + "id": 509, + "source": 172, + "target": 1 + }, + { + "type": "consistsOf", + "id": 510, + "source": 172, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 511, + "source": 173, + "target": 2 + }, + { + "type": "inverses", + "id": 512, + "source": 173, + "target": 171 + }, + { + "type": "next", + "id": 513, + "source": 172, + "target": 173 + }, + { + "type": "resultsIn", + "id": 514, + "source": 173, + "target": 169 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 515, + "source": 174, + "target": 2 + }, + { + "type": "next", + "id": 516, + "source": 172, + "target": 174 + }, + { + "type": "resultsIn", + "id": 517, + "source": 174, + "target": 175 + }, + { + "type": "consistsOf", + "id": 518, + "source": 175, + "target": 1 + }, + { + "type": "consistsOf", + "id": 519, + "source": 175, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 520, + "source": 176, + "target": 2 + }, + { + "type": "inverses", + "id": 521, + "source": 176, + "target": 174 + }, + { + "type": "next", + "id": 522, + "source": 175, + "target": 176 + }, + { + "type": "resultsIn", + "id": 523, + "source": 176, + "target": 172 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 524, + "source": 177, + "target": 2 + }, + { + "type": "next", + "id": 525, + "source": 175, + "target": 177 + }, + { + "type": "resultsIn", + "id": 526, + "source": 177, + "target": 178 + }, + { + "type": "consistsOf", + "id": 527, + "source": 178, + "target": 1 + }, + { + "type": "consistsOf", + "id": 528, + "source": 178, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 529, + "source": 179, + "target": 2 + }, + { + "type": "inverses", + "id": 530, + "source": 179, + "target": 177 + }, + { + "type": "next", + "id": 531, + "source": 178, + "target": 179 + }, + { + "type": "resultsIn", + "id": 532, + "source": 179, + "target": 175 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 533, + "source": 180, + "target": 2 + }, + { + "type": "next", + "id": 534, + "source": 178, + "target": 180 + }, + { + "type": "resultsIn", + "id": 535, + "source": 180, + "target": 181 + }, + { + "type": "consistsOf", + "id": 536, + "source": 181, + "target": 1 + }, + { + "type": "consistsOf", + "id": 537, + "source": 181, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 538, + "source": 182, + "target": 2 + }, + { + "type": "inverses", + "id": 539, + "source": 182, + "target": 180 + }, + { + "type": "next", + "id": 540, + "source": 181, + "target": 182 + }, + { + "type": "resultsIn", + "id": 541, + "source": 182, + "target": 178 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 542, + "source": 183, + "target": 2 + }, + { + "type": "next", + "id": 543, + "source": 181, + "target": 183 + }, + { + "type": "resultsIn", + "id": 544, + "source": 183, + "target": 184 + }, + { + "type": "consistsOf", + "id": 545, + "source": 184, + "target": 1 + }, + { + "type": "consistsOf", + "id": 546, + "source": 184, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 547, + "source": 185, + "target": 2 + }, + { + "type": "inverses", + "id": 548, + "source": 185, + "target": 183 + }, + { + "type": "next", + "id": 549, + "source": 184, + "target": 185 + }, + { + "type": "resultsIn", + "id": 550, + "source": 185, + "target": 181 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 551, + "source": 186, + "target": 2 + }, + { + "type": "next", + "id": 552, + "source": 184, + "target": 186 + }, + { + "type": "resultsIn", + "id": 553, + "source": 186, + "target": 187 + }, + { + "type": "consistsOf", + "id": 554, + "source": 187, + "target": 1 + }, + { + "type": "consistsOf", + "id": 555, + "source": 187, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 556, + "source": 188, + "target": 2 + }, + { + "type": "inverses", + "id": 557, + "source": 188, + "target": 186 + }, + { + "type": "next", + "id": 558, + "source": 187, + "target": 188 + }, + { + "type": "resultsIn", + "id": 559, + "source": 188, + "target": 184 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 560, + "source": 189, + "target": 2 + }, + { + "type": "next", + "id": 561, + "source": 187, + "target": 189 + }, + { + "type": "resultsIn", + "id": 562, + "source": 189, + "target": 190 + }, + { + "type": "consistsOf", + "id": 563, + "source": 190, + "target": 1 + }, + { + "type": "consistsOf", + "id": 564, + "source": 190, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 565, + "source": 191, + "target": 2 + }, + { + "type": "inverses", + "id": 566, + "source": 191, + "target": 189 + }, + { + "type": "next", + "id": 567, + "source": 190, + "target": 191 + }, + { + "type": "resultsIn", + "id": 568, + "source": 191, + "target": 187 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 569, + "source": 192, + "target": 2 + }, + { + "type": "next", + "id": 570, + "source": 190, + "target": 192 + }, + { + "type": "resultsIn", + "id": 571, + "source": 192, + "target": 193 + }, + { + "type": "consistsOf", + "id": 572, + "source": 193, + "target": 1 + }, + { + "type": "consistsOf", + "id": 573, + "source": 193, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 574, + "source": 194, + "target": 2 + }, + { + "type": "inverses", + "id": 575, + "source": 194, + "target": 192 + }, + { + "type": "next", + "id": 576, + "source": 193, + "target": 194 + }, + { + "type": "resultsIn", + "id": 577, + "source": 194, + "target": 190 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 578, + "source": 195, + "target": 2 + }, + { + "type": "next", + "id": 579, + "source": 193, + "target": 195 + }, + { + "type": "resultsIn", + "id": 580, + "source": 195, + "target": 196 + }, + { + "type": "consistsOf", + "id": 581, + "source": 196, + "target": 1 + }, + { + "type": "consistsOf", + "id": 582, + "source": 196, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 583, + "source": 197, + "target": 2 + }, + { + "type": "inverses", + "id": 584, + "source": 197, + "target": 195 + }, + { + "type": "next", + "id": 585, + "source": 196, + "target": 197 + }, + { + "type": "resultsIn", + "id": 586, + "source": 197, + "target": 193 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 587, + "source": 198, + "target": 2 + }, + { + "type": "next", + "id": 588, + "source": 196, + "target": 198 + }, + { + "type": "resultsIn", + "id": 589, + "source": 198, + "target": 199 + }, + { + "type": "consistsOf", + "id": 590, + "source": 199, + "target": 1 + }, + { + "type": "consistsOf", + "id": 591, + "source": 199, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 592, + "source": 200, + "target": 2 + }, + { + "type": "inverses", + "id": 593, + "source": 200, + "target": 198 + }, + { + "type": "next", + "id": 594, + "source": 199, + "target": 200 + }, + { + "type": "resultsIn", + "id": 595, + "source": 200, + "target": 196 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 596, + "source": 201, + "target": 2 + }, + { + "type": "next", + "id": 597, + "source": 199, + "target": 201 + }, + { + "type": "resultsIn", + "id": 598, + "source": 201, + "target": 202 + }, + { + "type": "consistsOf", + "id": 599, + "source": 202, + "target": 1 + }, + { + "type": "consistsOf", + "id": 600, + "source": 202, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 601, + "source": 203, + "target": 2 + }, + { + "type": "inverses", + "id": 602, + "source": 203, + "target": 201 + }, + { + "type": "next", + "id": 603, + "source": 202, + "target": 203 + }, + { + "type": "resultsIn", + "id": 604, + "source": 203, + "target": 199 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 605, + "source": 204, + "target": 2 + }, + { + "type": "next", + "id": 606, + "source": 202, + "target": 204 + }, + { + "type": "resultsIn", + "id": 607, + "source": 204, + "target": 205 + }, + { + "type": "consistsOf", + "id": 608, + "source": 205, + "target": 1 + }, + { + "type": "consistsOf", + "id": 609, + "source": 205, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 610, + "source": 206, + "target": 2 + }, + { + "type": "inverses", + "id": 611, + "source": 206, + "target": 204 + }, + { + "type": "next", + "id": 612, + "source": 205, + "target": 206 + }, + { + "type": "resultsIn", + "id": 613, + "source": 206, + "target": 202 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 614, + "source": 207, + "target": 2 + }, + { + "type": "next", + "id": 615, + "source": 205, + "target": 207 + }, + { + "type": "resultsIn", + "id": 616, + "source": 207, + "target": 208 + }, + { + "type": "consistsOf", + "id": 617, + "source": 208, + "target": 1 + }, + { + "type": "consistsOf", + "id": 618, + "source": 208, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 619, + "source": 209, + "target": 2 + }, + { + "type": "inverses", + "id": 620, + "source": 209, + "target": 207 + }, + { + "type": "next", + "id": 621, + "source": 208, + "target": 209 + }, + { + "type": "resultsIn", + "id": 622, + "source": 209, + "target": 205 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 623, + "source": 210, + "target": 2 + }, + { + "type": "next", + "id": 624, + "source": 208, + "target": 210 + }, + { + "type": "resultsIn", + "id": 625, + "source": 210, + "target": 211 + }, + { + "type": "consistsOf", + "id": 626, + "source": 211, + "target": 1 + }, + { + "type": "consistsOf", + "id": 627, + "source": 211, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 628, + "source": 212, + "target": 2 + }, + { + "type": "inverses", + "id": 629, + "source": 212, + "target": 210 + }, + { + "type": "next", + "id": 630, + "source": 211, + "target": 212 + }, + { + "type": "resultsIn", + "id": 631, + "source": 212, + "target": 208 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 632, + "source": 213, + "target": 2 + }, + { + "type": "next", + "id": 633, + "source": 211, + "target": 213 + }, + { + "type": "resultsIn", + "id": 634, + "source": 213, + "target": 214 + }, + { + "type": "consistsOf", + "id": 635, + "source": 214, + "target": 1 + }, + { + "type": "consistsOf", + "id": 636, + "source": 214, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 637, + "source": 215, + "target": 2 + }, + { + "type": "inverses", + "id": 638, + "source": 215, + "target": 213 + }, + { + "type": "next", + "id": 639, + "source": 214, + "target": 215 + }, + { + "type": "resultsIn", + "id": 640, + "source": 215, + "target": 211 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 641, + "source": 216, + "target": 2 + }, + { + "type": "next", + "id": 642, + "source": 214, + "target": 216 + }, + { + "type": "resultsIn", + "id": 643, + "source": 216, + "target": 217 + }, + { + "type": "consistsOf", + "id": 644, + "source": 217, + "target": 1 + }, + { + "type": "consistsOf", + "id": 645, + "source": 217, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 646, + "source": 218, + "target": 2 + }, + { + "type": "inverses", + "id": 647, + "source": 218, + "target": 216 + }, + { + "type": "next", + "id": 648, + "source": 217, + "target": 218 + }, + { + "type": "resultsIn", + "id": 649, + "source": 218, + "target": 214 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 650, + "source": 219, + "target": 2 + }, + { + "type": "next", + "id": 651, + "source": 217, + "target": 219 + }, + { + "type": "resultsIn", + "id": 652, + "source": 219, + "target": 220 + }, + { + "type": "consistsOf", + "id": 653, + "source": 220, + "target": 1 + }, + { + "type": "consistsOf", + "id": 654, + "source": 220, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 655, + "source": 221, + "target": 2 + }, + { + "type": "inverses", + "id": 656, + "source": 221, + "target": 219 + }, + { + "type": "next", + "id": 657, + "source": 220, + "target": 221 + }, + { + "type": "resultsIn", + "id": 658, + "source": 221, + "target": 217 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 659, + "source": 222, + "target": 2 + }, + { + "type": "next", + "id": 660, + "source": 220, + "target": 222 + }, + { + "type": "resultsIn", + "id": 661, + "source": 222, + "target": 223 + }, + { + "type": "consistsOf", + "id": 662, + "source": 223, + "target": 1 + }, + { + "type": "consistsOf", + "id": 663, + "source": 223, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 664, + "source": 224, + "target": 2 + }, + { + "type": "inverses", + "id": 665, + "source": 224, + "target": 222 + }, + { + "type": "next", + "id": 666, + "source": 223, + "target": 224 + }, + { + "type": "resultsIn", + "id": 667, + "source": 224, + "target": 220 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 668, + "source": 225, + "target": 2 + }, + { + "type": "next", + "id": 669, + "source": 223, + "target": 225 + }, + { + "type": "resultsIn", + "id": 670, + "source": 225, + "target": 226 + }, + { + "type": "consistsOf", + "id": 671, + "source": 226, + "target": 1 + }, + { + "type": "consistsOf", + "id": 672, + "source": 226, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 673, + "source": 227, + "target": 2 + }, + { + "type": "inverses", + "id": 674, + "source": 227, + "target": 225 + }, + { + "type": "next", + "id": 675, + "source": 226, + "target": 227 + }, + { + "type": "resultsIn", + "id": 676, + "source": 227, + "target": 223 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 677, + "source": 228, + "target": 2 + }, + { + "type": "next", + "id": 678, + "source": 226, + "target": 228 + }, + { + "type": "resultsIn", + "id": 679, + "source": 228, + "target": 229 + }, + { + "type": "consistsOf", + "id": 680, + "source": 229, + "target": 1 + }, + { + "type": "consistsOf", + "id": 681, + "source": 229, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 682, + "source": 230, + "target": 2 + }, + { + "type": "inverses", + "id": 683, + "source": 230, + "target": 228 + }, + { + "type": "next", + "id": 684, + "source": 229, + "target": 230 + }, + { + "type": "resultsIn", + "id": 685, + "source": 230, + "target": 226 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 686, + "source": 231, + "target": 2 + }, + { + "type": "next", + "id": 687, + "source": 229, + "target": 231 + }, + { + "type": "resultsIn", + "id": 688, + "source": 231, + "target": 232 + }, + { + "type": "consistsOf", + "id": 689, + "source": 232, + "target": 1 + }, + { + "type": "consistsOf", + "id": 690, + "source": 232, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 691, + "source": 233, + "target": 2 + }, + { + "type": "inverses", + "id": 692, + "source": 233, + "target": 231 + }, + { + "type": "next", + "id": 693, + "source": 232, + "target": 233 + }, + { + "type": "resultsIn", + "id": 694, + "source": 233, + "target": 229 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 695, + "source": 234, + "target": 2 + }, + { + "type": "next", + "id": 696, + "source": 232, + "target": 234 + }, + { + "type": "resultsIn", + "id": 697, + "source": 234, + "target": 235 + }, + { + "type": "consistsOf", + "id": 698, + "source": 235, + "target": 1 + }, + { + "type": "consistsOf", + "id": 699, + "source": 235, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 700, + "source": 236, + "target": 2 + }, + { + "type": "inverses", + "id": 701, + "source": 236, + "target": 234 + }, + { + "type": "next", + "id": 702, + "source": 235, + "target": 236 + }, + { + "type": "resultsIn", + "id": 703, + "source": 236, + "target": 232 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 704, + "source": 237, + "target": 2 + }, + { + "type": "next", + "id": 705, + "source": 0, + "target": 237 + }, + { + "type": "resultsIn", + "id": 706, + "source": 237, + "target": 238 + }, + { + "type": "consistsOf", + "id": 707, + "source": 238, + "target": 1 + }, + { + "type": "consistsOf", + "id": 708, + "source": 238, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 709, + "source": 239, + "target": 2 + }, + { + "type": "inverses", + "id": 710, + "source": 239, + "target": 237 + }, + { + "type": "next", + "id": 711, + "source": 238, + "target": 239 + }, + { + "type": "resultsIn", + "id": 712, + "source": 239, + "target": 0 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 713, + "source": 240, + "target": 2 + }, + { + "type": "next", + "id": 714, + "source": 238, + "target": 240 + }, + { + "type": "resultsIn", + "id": 715, + "source": 240, + "target": 241 + }, + { + "type": "consistsOf", + "id": 716, + "source": 241, + "target": 1 + }, + { + "type": "consistsOf", + "id": 717, + "source": 241, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 718, + "source": 242, + "target": 2 + }, + { + "type": "inverses", + "id": 719, + "source": 242, + "target": 240 + }, + { + "type": "next", + "id": 720, + "source": 241, + "target": 242 + }, + { + "type": "resultsIn", + "id": 721, + "source": 242, + "target": 238 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 722, + "source": 243, + "target": 2 + }, + { + "type": "next", + "id": 723, + "source": 241, + "target": 243 + }, + { + "type": "resultsIn", + "id": 724, + "source": 243, + "target": 244 + }, + { + "type": "consistsOf", + "id": 725, + "source": 244, + "target": 1 + }, + { + "type": "consistsOf", + "id": 726, + "source": 244, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 727, + "source": 245, + "target": 2 + }, + { + "type": "inverses", + "id": 728, + "source": 245, + "target": 243 + }, + { + "type": "next", + "id": 729, + "source": 244, + "target": 245 + }, + { + "type": "resultsIn", + "id": 730, + "source": 245, + "target": 241 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 731, + "source": 246, + "target": 2 + }, + { + "type": "next", + "id": 732, + "source": 244, + "target": 246 + }, + { + "type": "resultsIn", + "id": 733, + "source": 246, + "target": 247 + }, + { + "type": "consistsOf", + "id": 734, + "source": 247, + "target": 1 + }, + { + "type": "consistsOf", + "id": 735, + "source": 247, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 736, + "source": 248, + "target": 2 + }, + { + "type": "inverses", + "id": 737, + "source": 248, + "target": 246 + }, + { + "type": "next", + "id": 738, + "source": 247, + "target": 248 + }, + { + "type": "resultsIn", + "id": 739, + "source": 248, + "target": 244 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 740, + "source": 249, + "target": 2 + }, + { + "type": "next", + "id": 741, + "source": 247, + "target": 249 + }, + { + "type": "resultsIn", + "id": 742, + "source": 249, + "target": 250 + }, + { + "type": "consistsOf", + "id": 743, + "source": 250, + "target": 1 + }, + { + "type": "consistsOf", + "id": 744, + "source": 250, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 745, + "source": 251, + "target": 2 + }, + { + "type": "inverses", + "id": 746, + "source": 251, + "target": 249 + }, + { + "type": "next", + "id": 747, + "source": 250, + "target": 251 + }, + { + "type": "resultsIn", + "id": 748, + "source": 251, + "target": 247 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 749, + "source": 252, + "target": 2 + }, + { + "type": "next", + "id": 750, + "source": 250, + "target": 252 + }, + { + "type": "resultsIn", + "id": 751, + "source": 252, + "target": 253 + }, + { + "type": "consistsOf", + "id": 752, + "source": 253, + "target": 1 + }, + { + "type": "consistsOf", + "id": 753, + "source": 253, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 754, + "source": 254, + "target": 2 + }, + { + "type": "inverses", + "id": 755, + "source": 254, + "target": 252 + }, + { + "type": "next", + "id": 756, + "source": 253, + "target": 254 + }, + { + "type": "resultsIn", + "id": 757, + "source": 254, + "target": 250 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 758, + "source": 255, + "target": 2 + }, + { + "type": "next", + "id": 759, + "source": 253, + "target": 255 + }, + { + "type": "resultsIn", + "id": 760, + "source": 255, + "target": 256 + }, + { + "type": "consistsOf", + "id": 761, + "source": 256, + "target": 1 + }, + { + "type": "consistsOf", + "id": 762, + "source": 256, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 763, + "source": 257, + "target": 2 + }, + { + "type": "inverses", + "id": 764, + "source": 257, + "target": 255 + }, + { + "type": "next", + "id": 765, + "source": 256, + "target": 257 + }, + { + "type": "resultsIn", + "id": 766, + "source": 257, + "target": 253 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 767, + "source": 258, + "target": 2 + }, + { + "type": "next", + "id": 768, + "source": 256, + "target": 258 + }, + { + "type": "resultsIn", + "id": 769, + "source": 258, + "target": 259 + }, + { + "type": "consistsOf", + "id": 770, + "source": 259, + "target": 1 + }, + { + "type": "consistsOf", + "id": 771, + "source": 259, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 772, + "source": 260, + "target": 2 + }, + { + "type": "inverses", + "id": 773, + "source": 260, + "target": 258 + }, + { + "type": "next", + "id": 774, + "source": 259, + "target": 260 + }, + { + "type": "resultsIn", + "id": 775, + "source": 260, + "target": 256 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 776, + "source": 261, + "target": 2 + }, + { + "type": "next", + "id": 777, + "source": 259, + "target": 261 + }, + { + "type": "resultsIn", + "id": 778, + "source": 261, + "target": 262 + }, + { + "type": "consistsOf", + "id": 779, + "source": 262, + "target": 1 + }, + { + "type": "consistsOf", + "id": 780, + "source": 262, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 781, + "source": 263, + "target": 2 + }, + { + "type": "inverses", + "id": 782, + "source": 263, + "target": 261 + }, + { + "type": "next", + "id": 783, + "source": 262, + "target": 263 + }, + { + "type": "resultsIn", + "id": 784, + "source": 263, + "target": 259 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 785, + "source": 264, + "target": 2 + }, + { + "type": "next", + "id": 786, + "source": 262, + "target": 264 + }, + { + "type": "resultsIn", + "id": 787, + "source": 264, + "target": 265 + }, + { + "type": "consistsOf", + "id": 788, + "source": 265, + "target": 1 + }, + { + "type": "consistsOf", + "id": 789, + "source": 265, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 790, + "source": 266, + "target": 2 + }, + { + "type": "inverses", + "id": 791, + "source": 266, + "target": 264 + }, + { + "type": "next", + "id": 792, + "source": 265, + "target": 266 + }, + { + "type": "resultsIn", + "id": 793, + "source": 266, + "target": 262 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 794, + "source": 267, + "target": 2 + }, + { + "type": "next", + "id": 795, + "source": 265, + "target": 267 + }, + { + "type": "resultsIn", + "id": 796, + "source": 267, + "target": 268 + }, + { + "type": "consistsOf", + "id": 797, + "source": 268, + "target": 1 + }, + { + "type": "consistsOf", + "id": 798, + "source": 268, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 799, + "source": 269, + "target": 2 + }, + { + "type": "inverses", + "id": 800, + "source": 269, + "target": 267 + }, + { + "type": "next", + "id": 801, + "source": 268, + "target": 269 + }, + { + "type": "resultsIn", + "id": 802, + "source": 269, + "target": 265 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 803, + "source": 270, + "target": 2 + }, + { + "type": "next", + "id": 804, + "source": 268, + "target": 270 + }, + { + "type": "resultsIn", + "id": 805, + "source": 270, + "target": 271 + }, + { + "type": "consistsOf", + "id": 806, + "source": 271, + "target": 1 + }, + { + "type": "consistsOf", + "id": 807, + "source": 271, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 808, + "source": 272, + "target": 2 + }, + { + "type": "inverses", + "id": 809, + "source": 272, + "target": 270 + }, + { + "type": "next", + "id": 810, + "source": 271, + "target": 272 + }, + { + "type": "resultsIn", + "id": 811, + "source": 272, + "target": 268 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 812, + "source": 273, + "target": 2 + }, + { + "type": "next", + "id": 813, + "source": 271, + "target": 273 + }, + { + "type": "resultsIn", + "id": 814, + "source": 273, + "target": 274 + }, + { + "type": "consistsOf", + "id": 815, + "source": 274, + "target": 1 + }, + { + "type": "consistsOf", + "id": 816, + "source": 274, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 817, + "source": 275, + "target": 2 + }, + { + "type": "inverses", + "id": 818, + "source": 275, + "target": 273 + }, + { + "type": "next", + "id": 819, + "source": 274, + "target": 275 + }, + { + "type": "resultsIn", + "id": 820, + "source": 275, + "target": 271 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 821, + "source": 276, + "target": 2 + }, + { + "type": "next", + "id": 822, + "source": 274, + "target": 276 + }, + { + "type": "resultsIn", + "id": 823, + "source": 276, + "target": 277 + }, + { + "type": "consistsOf", + "id": 824, + "source": 277, + "target": 1 + }, + { + "type": "consistsOf", + "id": 825, + "source": 277, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 826, + "source": 278, + "target": 2 + }, + { + "type": "inverses", + "id": 827, + "source": 278, + "target": 276 + }, + { + "type": "next", + "id": 828, + "source": 277, + "target": 278 + }, + { + "type": "resultsIn", + "id": 829, + "source": 278, + "target": 274 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 830, + "source": 279, + "target": 2 + }, + { + "type": "next", + "id": 831, + "source": 277, + "target": 279 + }, + { + "type": "resultsIn", + "id": 832, + "source": 279, + "target": 280 + }, + { + "type": "consistsOf", + "id": 833, + "source": 280, + "target": 1 + }, + { + "type": "consistsOf", + "id": 834, + "source": 280, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 835, + "source": 281, + "target": 2 + }, + { + "type": "inverses", + "id": 836, + "source": 281, + "target": 279 + }, + { + "type": "next", + "id": 837, + "source": 280, + "target": 281 + }, + { + "type": "resultsIn", + "id": 838, + "source": 281, + "target": 277 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 839, + "source": 282, + "target": 2 + }, + { + "type": "next", + "id": 840, + "source": 280, + "target": 282 + }, + { + "type": "resultsIn", + "id": 841, + "source": 282, + "target": 283 + }, + { + "type": "consistsOf", + "id": 842, + "source": 283, + "target": 1 + }, + { + "type": "consistsOf", + "id": 843, + "source": 283, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 844, + "source": 284, + "target": 2 + }, + { + "type": "inverses", + "id": 845, + "source": 284, + "target": 282 + }, + { + "type": "next", + "id": 846, + "source": 283, + "target": 284 + }, + { + "type": "resultsIn", + "id": 847, + "source": 284, + "target": 280 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 848, + "source": 285, + "target": 2 + }, + { + "type": "next", + "id": 849, + "source": 283, + "target": 285 + }, + { + "type": "resultsIn", + "id": 850, + "source": 285, + "target": 286 + }, + { + "type": "consistsOf", + "id": 851, + "source": 286, + "target": 1 + }, + { + "type": "consistsOf", + "id": 852, + "source": 286, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 853, + "source": 287, + "target": 2 + }, + { + "type": "inverses", + "id": 854, + "source": 287, + "target": 285 + }, + { + "type": "next", + "id": 855, + "source": 286, + "target": 287 + }, + { + "type": "resultsIn", + "id": 856, + "source": 287, + "target": 283 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 857, + "source": 288, + "target": 2 + }, + { + "type": "next", + "id": 858, + "source": 286, + "target": 288 + }, + { + "type": "resultsIn", + "id": 859, + "source": 288, + "target": 289 + }, + { + "type": "consistsOf", + "id": 860, + "source": 289, + "target": 1 + }, + { + "type": "consistsOf", + "id": 861, + "source": 289, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 862, + "source": 290, + "target": 2 + }, + { + "type": "inverses", + "id": 863, + "source": 290, + "target": 288 + }, + { + "type": "next", + "id": 864, + "source": 289, + "target": 290 + }, + { + "type": "resultsIn", + "id": 865, + "source": 290, + "target": 286 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 866, + "source": 291, + "target": 2 + }, + { + "type": "next", + "id": 867, + "source": 289, + "target": 291 + }, + { + "type": "resultsIn", + "id": 868, + "source": 291, + "target": 292 + }, + { + "type": "consistsOf", + "id": 869, + "source": 292, + "target": 1 + }, + { + "type": "consistsOf", + "id": 870, + "source": 292, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 871, + "source": 293, + "target": 2 + }, + { + "type": "inverses", + "id": 872, + "source": 293, + "target": 291 + }, + { + "type": "next", + "id": 873, + "source": 292, + "target": 293 + }, + { + "type": "resultsIn", + "id": 874, + "source": 293, + "target": 289 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 875, + "source": 294, + "target": 2 + }, + { + "type": "next", + "id": 876, + "source": 292, + "target": 294 + }, + { + "type": "resultsIn", + "id": 877, + "source": 294, + "target": 295 + }, + { + "type": "consistsOf", + "id": 878, + "source": 295, + "target": 1 + }, + { + "type": "consistsOf", + "id": 879, + "source": 295, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 880, + "source": 296, + "target": 2 + }, + { + "type": "inverses", + "id": 881, + "source": 296, + "target": 294 + }, + { + "type": "next", + "id": 882, + "source": 295, + "target": 296 + }, + { + "type": "resultsIn", + "id": 883, + "source": 296, + "target": 292 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 884, + "source": 297, + "target": 2 + }, + { + "type": "next", + "id": 885, + "source": 295, + "target": 297 + }, + { + "type": "resultsIn", + "id": 886, + "source": 297, + "target": 298 + }, + { + "type": "consistsOf", + "id": 887, + "source": 298, + "target": 1 + }, + { + "type": "consistsOf", + "id": 888, + "source": 298, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 889, + "source": 299, + "target": 2 + }, + { + "type": "inverses", + "id": 890, + "source": 299, + "target": 297 + }, + { + "type": "next", + "id": 891, + "source": 298, + "target": 299 + }, + { + "type": "resultsIn", + "id": 892, + "source": 299, + "target": 295 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 893, + "source": 300, + "target": 2 + }, + { + "type": "next", + "id": 894, + "source": 298, + "target": 300 + }, + { + "type": "resultsIn", + "id": 895, + "source": 300, + "target": 301 + }, + { + "type": "consistsOf", + "id": 896, + "source": 301, + "target": 1 + }, + { + "type": "consistsOf", + "id": 897, + "source": 301, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 898, + "source": 302, + "target": 2 + }, + { + "type": "inverses", + "id": 899, + "source": 302, + "target": 300 + }, + { + "type": "next", + "id": 900, + "source": 301, + "target": 302 + }, + { + "type": "resultsIn", + "id": 901, + "source": 302, + "target": 298 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 902, + "source": 303, + "target": 2 + }, + { + "type": "next", + "id": 903, + "source": 301, + "target": 303 + }, + { + "type": "resultsIn", + "id": 904, + "source": 303, + "target": 304 + }, + { + "type": "consistsOf", + "id": 905, + "source": 304, + "target": 1 + }, + { + "type": "consistsOf", + "id": 906, + "source": 304, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 907, + "source": 305, + "target": 2 + }, + { + "type": "inverses", + "id": 908, + "source": 305, + "target": 303 + }, + { + "type": "next", + "id": 909, + "source": 304, + "target": 305 + }, + { + "type": "resultsIn", + "id": 910, + "source": 305, + "target": 301 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 911, + "source": 306, + "target": 2 + }, + { + "type": "next", + "id": 912, + "source": 304, + "target": 306 + }, + { + "type": "resultsIn", + "id": 913, + "source": 306, + "target": 307 + }, + { + "type": "consistsOf", + "id": 914, + "source": 307, + "target": 1 + }, + { + "type": "consistsOf", + "id": 915, + "source": 307, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 916, + "source": 308, + "target": 2 + }, + { + "type": "inverses", + "id": 917, + "source": 308, + "target": 306 + }, + { + "type": "next", + "id": 918, + "source": 307, + "target": 308 + }, + { + "type": "resultsIn", + "id": 919, + "source": 308, + "target": 304 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 920, + "source": 309, + "target": 2 + }, + { + "type": "next", + "id": 921, + "source": 307, + "target": 309 + }, + { + "type": "resultsIn", + "id": 922, + "source": 309, + "target": 310 + }, + { + "type": "consistsOf", + "id": 923, + "source": 310, + "target": 1 + }, + { + "type": "consistsOf", + "id": 924, + "source": 310, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 925, + "source": 311, + "target": 2 + }, + { + "type": "inverses", + "id": 926, + "source": 311, + "target": 309 + }, + { + "type": "next", + "id": 927, + "source": 310, + "target": 311 + }, + { + "type": "resultsIn", + "id": 928, + "source": 311, + "target": 307 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 929, + "source": 312, + "target": 2 + }, + { + "type": "next", + "id": 930, + "source": 310, + "target": 312 + }, + { + "type": "resultsIn", + "id": 931, + "source": 312, + "target": 313 + }, + { + "type": "consistsOf", + "id": 932, + "source": 313, + "target": 1 + }, + { + "type": "consistsOf", + "id": 933, + "source": 313, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 934, + "source": 314, + "target": 2 + }, + { + "type": "inverses", + "id": 935, + "source": 314, + "target": 312 + }, + { + "type": "next", + "id": 936, + "source": 313, + "target": 314 + }, + { + "type": "resultsIn", + "id": 937, + "source": 314, + "target": 310 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 938, + "source": 315, + "target": 2 + }, + { + "type": "next", + "id": 939, + "source": 313, + "target": 315 + }, + { + "type": "resultsIn", + "id": 940, + "source": 315, + "target": 316 + }, + { + "type": "consistsOf", + "id": 941, + "source": 316, + "target": 1 + }, + { + "type": "consistsOf", + "id": 942, + "source": 316, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 943, + "source": 317, + "target": 2 + }, + { + "type": "inverses", + "id": 944, + "source": 317, + "target": 315 + }, + { + "type": "next", + "id": 945, + "source": 316, + "target": 317 + }, + { + "type": "resultsIn", + "id": 946, + "source": 317, + "target": 313 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 947, + "source": 318, + "target": 2 + }, + { + "type": "next", + "id": 948, + "source": 316, + "target": 318 + }, + { + "type": "resultsIn", + "id": 949, + "source": 318, + "target": 319 + }, + { + "type": "consistsOf", + "id": 950, + "source": 319, + "target": 1 + }, + { + "type": "consistsOf", + "id": 951, + "source": 319, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 952, + "source": 320, + "target": 2 + }, + { + "type": "inverses", + "id": 953, + "source": 320, + "target": 318 + }, + { + "type": "next", + "id": 954, + "source": 319, + "target": 320 + }, + { + "type": "resultsIn", + "id": 955, + "source": 320, + "target": 316 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 956, + "source": 321, + "target": 2 + }, + { + "type": "next", + "id": 957, + "source": 319, + "target": 321 + }, + { + "type": "resultsIn", + "id": 958, + "source": 321, + "target": 322 + }, + { + "type": "consistsOf", + "id": 959, + "source": 322, + "target": 1 + }, + { + "type": "consistsOf", + "id": 960, + "source": 322, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 961, + "source": 323, + "target": 2 + }, + { + "type": "inverses", + "id": 962, + "source": 323, + "target": 321 + }, + { + "type": "next", + "id": 963, + "source": 322, + "target": 323 + }, + { + "type": "resultsIn", + "id": 964, + "source": 323, + "target": 319 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 965, + "source": 324, + "target": 2 + }, + { + "type": "next", + "id": 966, + "source": 322, + "target": 324 + }, + { + "type": "resultsIn", + "id": 967, + "source": 324, + "target": 325 + }, + { + "type": "consistsOf", + "id": 968, + "source": 325, + "target": 1 + }, + { + "type": "consistsOf", + "id": 969, + "source": 325, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 970, + "source": 326, + "target": 2 + }, + { + "type": "inverses", + "id": 971, + "source": 326, + "target": 324 + }, + { + "type": "next", + "id": 972, + "source": 325, + "target": 326 + }, + { + "type": "resultsIn", + "id": 973, + "source": 326, + "target": 322 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 974, + "source": 327, + "target": 2 + }, + { + "type": "next", + "id": 975, + "source": 325, + "target": 327 + }, + { + "type": "resultsIn", + "id": 976, + "source": 327, + "target": 328 + }, + { + "type": "consistsOf", + "id": 977, + "source": 328, + "target": 1 + }, + { + "type": "consistsOf", + "id": 978, + "source": 328, + "target": 2 + }, + { + "attrs": { + "index": 0 + }, + "type": "requires", + "id": 979, + "source": 329, + "target": 2 + }, + { + "type": "inverses", + "id": 980, + "source": 329, + "target": 327 + }, + { + "type": "next", + "id": 981, + "source": 328, + "target": 329 + }, + { + "type": "resultsIn", + "id": 982, + "source": 329, + "target": 325 + } + ], + "act": 0, + "lastAction": 239 +} \ No newline at end of file diff --git a/src/data/gapminder/totalPop_interpolated.txt b/src/data/gapminder/totalPop_interpolated.txt new file mode 100644 index 0000000..eb48b25 --- /dev/null +++ b/src/data/gapminder/totalPop_interpolated.txt @@ -0,0 +1,174 @@ +country 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 +Afghanistan 3280000 3280000 3280000 3280000 3280000 3280000 3280000 3280000 3280000 3280000 3280000 3284352 3288704 3293056 3297408 3301760 3306111 3310463 3314815 3319167 3323519 3336065 3348612 3361158 3373704 3386250 3398797 3411343 3423889 3436436 3448982 3466586 3484190 3501794 3519398 3537002 3554606 3572210 3589814 3607418 3625022 3643524 3662027 3680530 3699032 3717534 3736037 3754540 3773042 3791544 3810047 3826439 3842831 3859223 3875615 3892008 3908400 3924792 3941184 3957576 3973968 3993540 4013112 4032685 4052257 4071829 4091401 4110973 4130546 4150118 4169690 4194690 4219691 4244692 4269692 4294692 4319693 4344694 4369694 4394694 4419695 4448743 4477790 4506838 4535885 4564933 4593981 4623028 4652076 4681123 4710171 4741278 4772385 4803492 4834599 4865706 4896813 4927920 4959027 4990134 5021241 5054258 5087275 5120293 5153310 5186327 5219344 5252361 5285379 5318396 5351413 5397653 5443893 5490133 5536373 5582614 5628854 5675094 5721334 5767574 5813814 5871923 5930033 5988142 6046252 6104361 6162470 6220580 6278689 6336799 6394908 6458825 6522743 6586660 6650577 6714494 6778412 6842329 6906246 6970164 7034081 7105885 7177688 7249492 7321296 7393100 7464903 7536707 7608511 7680314 7752118 7760849 7769580 7778310 7787041 7795772 7804503 7813234 7821964 7830695 7839426 7848963 7858500 7868038 7877575 7887112 7896649 7906186 7915724 7925261 7934798 7945149 7955501 7965852 7976204 7986555 7996906 8007258 8017609 8027961 8038312 8049484 8060657 8071830 8083002 8094174 8105347 8116520 8127692 8138864 8150037 8162036 8174034 8186033 8198032 8210030 8222029 8234028 8246027 8258025 8270024 8282852 8295681 8308510 8321338 8334166 8346995 8359824 8372652 8385480 8398309 13223960 18049610 22875261 27700911 32526562 +Albania 410445 411760 413074 414389 415703 417018 418333 419647 420962 422276 423591 425099 426607 428115 429623 431131 432639 434147 435655 437163 438671 440527 442384 444240 446096 447952 449809 451665 453521 455378 457234 459333 461433 463532 465631 467730 469830 471929 474028 476128 478227 481093 483959 486826 489692 492558 495424 498290 501157 504023 506889 511480 516071 520662 525253 529844 534436 539027 543618 548209 552800 558524 564247 569971 575694 581418 587142 592865 598589 604312 610036 616287 622538 628788 635039 641290 647541 653792 660042 666293 672544 679458 686373 693287 700202 707116 714030 720945 727859 734774 741688 749514 757340 765167 772993 780819 788645 796471 804298 812124 819950 828067 836184 844302 852419 860536 868653 876770 884888 893005 901122 907405 913689 919972 926256 932539 938822 945106 951389 957673 963956 969160 974363 979566 984770 989974 995177 1000380 1005584 1010788 1015991 1026713 1037435 1048157 1058879 1069600 1080322 1091044 1101766 1112488 1123210 1137206 1151202 1165198 1179194 1193190 1207187 1221183 1235179 1249175 1263171 1265604 1268037 1270469 1272902 1275335 1277768 1280201 1282633 1285066 1287499 1290358 1293216 1296075 1298934 1301792 1304651 1307510 1310369 1313227 1316086 1319287 1322488 1325689 1328890 1332092 1335293 1338494 1341695 1344896 1348097 1351575 1355054 1358532 1362011 1365489 1368967 1372446 1375924 1379403 1382881 1386590 1390299 1394007 1397716 1401425 1405134 1408843 1412551 1416260 1419969 1423881 1427793 1431705 1435617 1439529 1443441 1447353 1451265 1455177 1459089 1746607 2034125 2321643 2609161 2896679 +Algeria 2503218 2512402 2521586 2530769 2539953 2549137 2558321 2567505 2576688 2585872 2595056 2606858 2618661 2630463 2642265 2654068 2665870 2677672 2689474 2701277 2713079 2729807 2746534 2763262 2779989 2796717 2813445 2830172 2846900 2863627 2880355 2900592 2920828 2941065 2961301 2981538 3001775 3022011 3042248 3062484 3082721 3104379 3126038 3147696 3169355 3191013 3212671 3234330 3255988 3277647 3299305 3323021 3346738 3370454 3394170 3417886 3441603 3465319 3489035 3512752 3536468 3563924 3591380 3618836 3646292 3673748 3701204 3728660 3756116 3783572 3811028 3844242 3877455 3910668 3943882 3977096 4010309 4043522 4076736 4109950 4143163 4181416 4219669 4257921 4296174 4334427 4372680 4410933 4449185 4487438 4525691 4567738 4609786 4651834 4693881 4735928 4777976 4820024 4862071 4904118 4946166 4991954 5037742 5083530 5129318 5175106 5220893 5266681 5312469 5358257 5404045 5470020 5535996 5601972 5667947 5733922 5799898 5865874 5931849 5997824 6063800 6145039 6226278 6307517 6388756 6469995 6551234 6632473 6713712 6794951 6876190 6968313 7060436 7152558 7244681 7336804 7428927 7521050 7613172 7705295 7797418 7904901 8012384 8119867 8227350 8334832 8442315 8549798 8657281 8764764 8872247 8889014 8905780 8922547 8939313 8956080 8972847 8989613 9006380 9023146 9039913 9057561 9075209 9092858 9110506 9128154 9145802 9163450 9181099 9198747 9216395 9235300 9254205 9273110 9292015 9310920 9329825 9348730 9367635 9386540 9405445 9425851 9446257 9466664 9487070 9507476 9527882 9548288 9568695 9589101 9609507 9631528 9653549 9675570 9697591 9719612 9741633 9763654 9785675 9807696 9829717 9853328 9876939 9900551 9924162 9947773 9971384 9994995 10018607 10042218 10065829 15985967 21906105 27826243 33746381 39666519 +Angola 1567028 1567028 1567028 1567028 1567028 1567028 1567028 1567028 1567028 1567028 1567028 1570078 1573128 1576179 1579229 1582279 1585329 1588379 1591430 1594480 1597530 1606416 1615302 1624188 1633074 1641960 1650846 1659732 1668618 1677504 1686390 1699061 1711732 1724403 1737074 1749745 1762416 1775087 1787758 1800429 1813100 1826723 1840346 1853969 1867592 1881214 1894837 1908460 1922083 1935706 1949329 1965471 1981613 1997754 2013896 2030038 2046180 2062322 2078463 2094605 2110747 2128214 2145681 2163148 2180615 2198082 2215549 2233016 2250483 2267950 2285417 2304235 2323053 2341871 2360689 2379507 2398325 2417143 2435961 2454779 2473597 2493942 2514287 2534632 2554977 2575322 2595667 2616012 2636357 2656702 2677047 2699158 2721269 2743379 2765490 2787601 2809712 2831823 2853933 2876044 2898155 2922011 2945868 2969724 2993580 3017436 3041293 3065149 3089005 3112862 3136718 3161812 3186907 3212002 3237096 3262190 3287285 3312380 3337474 3362568 3387663 3413117 3438570 3464024 3489478 3514932 3540385 3565839 3591293 3616746 3642200 3669981 3697762 3725543 3753324 3781106 3808887 3836668 3864449 3892230 3920011 3963498 4006985 4050472 4093959 4137446 4180934 4224421 4267908 4311395 4354882 4363364 4371847 4380329 4388811 4397294 4405776 4414258 4422740 4431223 4439705 4448673 4457640 4466608 4475575 4484543 4493511 4502478 4511446 4520413 4529381 4538612 4547843 4557074 4566305 4575536 4584767 4593998 4603229 4612460 4621691 4631019 4640347 4649675 4659003 4668330 4677658 4686986 4696314 4705642 4714970 4724284 4733599 4742913 4752228 4761542 4770856 4780171 4789485 4798800 4808114 4817362 4826610 4835858 4845106 4854354 4863602 4872850 4882098 4891346 4900594 8924870 12949146 16973422 20997698 25021974 +Antigua and Barbuda 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 37000 36953 36906 36860 36813 36766 36719 36672 36626 36579 36532 36433 36335 36236 36138 36039 35940 35842 35743 35645 35546 35514 35481 35449 35416 35384 35352 35319 35287 35254 35222 35328 35435 35541 35648 35754 35860 35967 36073 36180 36286 36150 36014 35878 35742 35606 35469 35333 35197 35061 34925 34644 34364 34083 33803 33522 33241 32961 32680 32400 32119 31907 31695 31483 31271 31060 30848 30636 30424 30212 30000 30365 30729 31094 31459 31824 32188 32553 32918 33282 33647 34132 34617 35101 35586 36071 36556 37041 37525 38010 38495 39276 40056 40837 41617 42398 43179 43959 44740 45520 46301 46502 46702 46902 47103 47304 47504 47704 47905 48106 48306 48464 48622 48780 48938 49096 49255 49413 49571 49729 49887 50008 50128 50248 50369 50490 50610 50730 50851 50972 51092 51181 51269 51358 51447 51536 51624 51713 51802 51890 51979 52042 52105 52169 52232 52295 52358 52421 52485 52548 52611 52656 52701 52746 52791 52836 52882 52927 52972 53017 53062 60813 68564 76316 84067 91818 +Argentina 534000 534000 534000 534000 534000 534000 534000 534000 534000 534000 534000 537672 541344 545016 548688 552360 556031 559703 563375 567047 570719 582317 593916 605514 617113 628711 640309 651908 663506 675105 686703 705407 724112 742816 761521 780225 798929 817634 836338 855043 873747 897691 921635 945580 969524 993468 1017412 1041356 1065301 1089245 1113189 1144003 1174818 1205632 1236447 1267261 1298075 1328890 1359704 1390519 1421333 1464888 1508444 1551999 1595554 1639110 1682665 1726220 1769775 1813331 1856886 1920513 1984140 2047767 2111394 2175021 2238648 2302275 2365902 2429529 2493156 2584068 2674979 2765891 2856803 2947714 3038626 3129538 3220450 3311361 3402273 3537709 3673145 3808582 3944018 4079454 4214890 4350326 4485763 4621199 4756635 4966238 5175842 5385445 5595048 5804652 6014255 6223858 6433461 6643065 6852668 7055891 7259113 7462336 7665558 7868781 8072004 8275226 8478449 8681671 8884894 9186230 9487565 9788900 10090236 10391572 10692907 10994242 11295578 11596914 11898249 12128505 12358762 12589018 12819275 13049531 13279787 13510044 13740300 13970557 14200813 14495765 14790717 15085670 15380622 15675574 15970526 16265478 16560431 16855383 17150335 17186015 17221694 17257374 17293054 17328734 17364413 17400093 17435773 17471452 17507132 17543028 17578925 17614822 17650718 17686614 17722511 17758408 17794304 17830200 17866097 17901902 17937708 17973513 18009318 18045124 18080929 18116734 18152539 18188345 18224150 18259639 18295128 18330617 18366106 18401596 18437085 18472574 18508063 18543552 18579041 18614072 18649103 18684134 18719165 18754196 18789226 18824257 18859288 18894319 18929350 18963868 18998385 19032903 19067420 19101938 19136456 19170973 19205491 19240008 19274526 24102972 28931418 33759863 38588309 43416755 +Armenia 413326 413326 413326 413326 413326 413326 413326 413326 413326 413326 413326 414346 415366 416386 417406 418426 419447 420467 421487 422507 423527 426525 429523 432521 435519 438517 441515 444513 447511 450509 453507 457840 462173 466505 470838 475171 479504 483837 488169 492502 496835 501582 506328 511075 515822 520568 525315 530062 534809 539555 544302 549465 554627 559790 564952 570115 575278 580440 585603 590765 595928 601580 607232 612885 618537 624189 629841 635493 641146 646798 652450 658601 664751 670902 677053 683204 689354 695505 701656 707806 713957 720683 727409 734135 740861 747588 754314 761040 767766 774492 781218 788628 796037 803446 810856 818266 825675 833084 840494 847904 855313 863394 871475 879556 887637 895718 903800 911881 919962 928043 936124 945019 953913 962808 971702 980597 989492 998386 1007281 1016175 1025070 1034864 1044657 1054451 1064244 1074038 1083832 1093625 1103419 1113212 1123006 1133735 1144464 1155194 1165923 1176652 1187381 1198110 1208840 1219569 1230298 1242619 1254940 1267260 1279581 1291902 1304223 1316544 1328864 1341185 1353506 1356454 1359401 1362349 1365296 1368244 1371192 1374139 1377087 1380034 1382982 1386675 1390368 1394061 1397754 1401448 1405141 1408834 1412527 1416220 1419913 1424223 1428534 1432844 1437155 1441465 1445775 1450086 1454396 1458707 1463017 1467834 1472651 1477468 1482285 1487102 1491920 1496737 1501554 1506371 1511188 1516420 1521652 1526884 1532116 1537348 1542580 1547812 1553044 1558276 1563508 1569081 1574655 1580228 1585802 1591375 1596948 1602522 1608095 1613669 1619242 1898936 2178630 2458324 2738018 3017712 +Australia 351014 350157 349299 348442 347584 346727 345870 345012 344155 343297 342440 341596 340752 339909 339065 338221 337377 336533 335690 334846 334002 335416 336830 338244 339658 341072 342487 343901 345315 346729 348143 356738 365333 373929 382524 391119 399714 408309 416905 425500 434095 464947 495800 526652 557505 588357 619209 650062 680914 711767 742619 793962 845305 896648 947991 999334 1050676 1102019 1153362 1204705 1256048 1302864 1349681 1396498 1443314 1490130 1536947 1583764 1630580 1677396 1724213 1777092 1829972 1882851 1935731 1988610 2041489 2094369 2147248 2200128 2253007 2336587 2420167 2503747 2587327 2670908 2754488 2838068 2921648 3005228 3088808 3154298 3219788 3285278 3350768 3416258 3481748 3547238 3612728 3678218 3743708 3810158 3876608 3943058 4009508 4075958 4142409 4208859 4275309 4341759 4408209 4501931 4595653 4689375 4783097 4876818 4970540 5064262 5157984 5251706 5345428 5458266 5571103 5683940 5796778 5909616 6022453 6135290 6248128 6360966 6473803 6531624 6589445 6647266 6705087 6762908 6820728 6878549 6936370 6994191 7052012 7164545 7277078 7389612 7502145 7614678 7727211 7839744 7952278 8064811 8177344 8201374 8225403 8249433 8273462 8297492 8321522 8345551 8369581 8393610 8417640 8438581 8459522 8480464 8501405 8522346 8543287 8564228 8585170 8606111 8627052 8646541 8666029 8685518 8705006 8724495 8743984 8763472 8782961 8802449 8821938 8841195 8860452 8879709 8898966 8918223 8937480 8956737 8975994 8995251 9014508 9034340 9054171 9074003 9093834 9113666 9133498 9153329 9173161 9192992 9212824 9233602 9254380 9275157 9295935 9316713 9337491 9358269 9379046 9399824 9420602 12330276 15239950 18149625 21059299 23968973 +Austria 3205587 3213693 3221800 3229906 3238012 3246118 3254225 3262331 3270437 3278544 3286650 3297106 3307561 3318017 3328472 3338928 3349384 3359839 3370295 3380750 3391206 3405914 3420622 3435330 3450038 3464746 3479454 3494162 3508870 3523578 3538286 3557296 3576305 3595314 3614324 3633334 3652343 3671352 3690362 3709372 3728381 3751805 3775229 3798652 3822076 3845500 3868924 3892348 3915771 3939195 3962619 3989950 4017280 4044611 4071942 4099272 4126603 4153934 4181265 4208595 4235926 4267999 4300072 4332146 4364219 4396292 4428365 4460438 4492512 4524585 4556658 4595695 4634732 4673768 4712805 4751842 4790879 4829916 4868952 4907989 4947026 4993174 5039321 5085469 5131617 5177764 5223912 5270060 5316208 5362355 5408503 5465625 5522747 5579870 5636992 5694114 5751236 5808358 5865481 5922603 5979725 6042568 6105411 6168254 6231097 6293940 6356783 6419626 6482469 6545312 6608155 6593280 6578404 6563529 6548653 6533778 6518903 6504027 6489152 6474276 6459401 6481867 6504332 6526798 6549264 6571730 6594195 6616661 6639127 6661592 6684058 6685725 6687391 6689058 6690724 6692391 6694058 6695724 6697391 6699057 6700724 6724296 6747868 6771440 6795012 6818584 6842157 6865729 6889301 6912873 6936445 6935835 6935226 6934616 6934006 6933396 6932787 6932177 6931567 6930958 6930348 6930242 6930136 6930030 6929924 6929818 6929713 6929607 6929501 6929395 6929289 6929603 6929917 6930230 6930544 6930858 6931172 6931486 6931799 6932113 6932427 6933107 6933788 6934468 6935148 6935828 6936509 6937189 6937869 6938550 6939230 6940255 6941280 6942306 6943331 6944356 6945381 6946406 6947432 6948457 6949482 6950864 6952245 6953627 6955008 6956390 6957772 6959153 6960535 6961916 6963298 7279556 7595813 7912071 8228328 8544586 +Azerbaijan 879960 879960 879960 879960 879960 879960 879960 879960 879960 879960 879960 882141 884322 886504 888685 890866 893047 895228 897410 899591 901772 908184 914595 921006 927418 933830 940241 946652 953064 959476 965887 975156 984424 993693 1002962 1012230 1021499 1030768 1040037 1049305 1058574 1068732 1078890 1089049 1099207 1109365 1119523 1129681 1139840 1149998 1160156 1171196 1182236 1193276 1204316 1215356 1226396 1237436 1248476 1259516 1270556 1282646 1294737 1306827 1318918 1331008 1343098 1355189 1367279 1379370 1391460 1404620 1417780 1430940 1444100 1457260 1470420 1483580 1496740 1509900 1523060 1537455 1551850 1566245 1580640 1595036 1609431 1623826 1638221 1652616 1667011 1682874 1698737 1714599 1730462 1746325 1762188 1778051 1793913 1809776 1825639 1842944 1860249 1877554 1894859 1912164 1929470 1946775 1964080 1981385 1998690 2017750 2036810 2055870 2074930 2093990 2113051 2132111 2151171 2170231 2189291 2210300 2231308 2252317 2273325 2294334 2315343 2336351 2357360 2378368 2399377 2422402 2445426 2468451 2491475 2514500 2537525 2560549 2583574 2606598 2629623 2656260 2682898 2709535 2736173 2762810 2789447 2816085 2842722 2869360 2895997 2902931 2909865 2916799 2923733 2930668 2937602 2944536 2951470 2958404 2965338 2973347 2981356 2989365 2997374 3005384 3013393 3021402 3029411 3037420 3045429 3054256 3063084 3071911 3080739 3089566 3098393 3107221 3116048 3124876 3133703 3143156 3152609 3162062 3171515 3180968 3190421 3199874 3209327 3218780 3228233 3238183 3248133 3258083 3268033 3277983 3287933 3297883 3307833 3317783 3327733 3338119 3348506 3358892 3369279 3379665 3390051 3400438 3410824 3421211 3431597 4696071 5960545 7225020 8489494 9753968 +Bahamas 27350 27350 27350 27350 27350 27350 27350 27350 27350 27350 27350 27355 27361 27366 27372 27377 27382 27388 27393 27399 27404 27419 27435 27450 27466 27481 27496 27512 27527 27543 27558 27579 27600 27621 27642 27663 27684 27705 27726 27747 27768 27928 28089 28249 28410 28570 28730 28891 29051 29212 29372 29797 30223 30648 31073 31498 31924 32349 32774 33200 33625 34141 34657 35174 35690 36206 36722 37238 37755 38271 38787 39243 39698 40154 40610 41066 41521 41977 42433 42888 43344 43791 44239 44686 45133 45580 46028 46475 46922 47370 47817 48346 48874 49402 49931 50460 50988 51516 52045 52574 53102 53375 53647 53920 54193 54466 54738 55011 55284 55556 55829 55590 55350 55111 54872 54632 54393 54154 53915 53675 53436 54035 54633 55232 55830 56429 57028 57626 58225 58823 59422 60161 60900 61639 62378 63117 63856 64595 65334 66073 66812 68040 69267 70495 71722 72950 74178 75405 76633 77860 79088 79178 79267 79357 79446 79536 79626 79715 79805 79894 79984 80128 80273 80417 80562 80706 80850 80995 81139 81284 81428 81622 81817 82011 82205 82400 82594 82788 82982 83177 83371 83612 83852 84092 84333 84574 84814 85054 85295 85536 85776 86060 86345 86629 86913 87198 87482 87766 88050 88335 88619 88946 89274 89601 89929 90256 90583 90911 91238 91566 91893 151118 210343 269569 328794 388019 +Bahrain 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64474 64473 64472 64472 64472 64471 64470 64470 64470 64469 64564 64660 64755 64850 64946 65041 65136 65231 65327 65422 65697 65972 66246 66521 66796 67071 67346 67620 67895 68170 68558 68945 69332 69720 70108 70495 70882 71270 71658 72045 72456 72868 73279 73690 74102 74513 74924 75335 75747 76158 76592 77025 77459 77893 78326 78760 79194 79628 80061 80495 81182 81869 82556 83243 83930 84616 85303 85990 86677 87364 88218 89071 89925 90779 91632 92486 93340 94194 95047 95901 96838 97775 98712 99649 100586 101524 102461 103398 104335 105272 106306 107340 108375 109409 110443 111477 112511 113546 114580 115614 115744 115875 116006 116136 116266 116397 116528 116658 116788 116919 117196 117473 117750 118027 118304 118581 118858 119135 119412 119689 120079 120470 120860 121251 121641 122031 122422 122812 123203 123593 124067 124541 125015 125489 125963 126437 126911 127385 127859 128333 128865 129397 129929 130461 130993 131525 132057 132589 133121 133653 134221 134789 135357 135925 136492 137060 137628 138196 138764 139332 386913 634494 882075 1129656 1377237 +Bangladesh 19227358 19265749 19304140 19342531 19380922 19419314 19457705 19496096 19534487 19572878 19611269 19662429 19713588 19764748 19815907 19867067 19918227 19969386 20020546 20071705 20122865 20197856 20272847 20347839 20422830 20497821 20572812 20647803 20722795 20797786 20872777 20963146 21053515 21143884 21234253 21324622 21414992 21505361 21595730 21686099 21776468 21870750 21965031 22059313 22153594 22247876 22342158 22436439 22530721 22625002 22719284 22813879 22908475 23003070 23097665 23192260 23286856 23381451 23476046 23570642 23665237 23774513 23883788 23993064 24102340 24211616 24320891 24430167 24539443 24648718 24757994 24891688 25025381 25159075 25292769 25426462 25560156 25693850 25827544 25961237 26094931 26246946 26398961 26550975 26702990 26855005 27007020 27159035 27311049 27463064 27615079 27776641 27938203 28099765 28261327 28422889 28584451 28746013 28907575 29069137 29230699 29401282 29571866 29742449 29913032 30083616 30254199 30424782 30595365 30765949 30936532 31099574 31262616 31425658 31588700 31751742 31914783 32077825 32240867 32403909 32566951 32745997 32925043 33104089 33283135 33462182 33641228 33820274 33999320 34178366 34357412 34666238 34975063 35283888 35592714 35901540 36210365 36519190 36828016 37136842 37445667 37490568 37535470 37580371 37625272 37670174 37715075 37759976 37804877 37849779 37894680 37975905 38057129 38138354 38219579 38300804 38382028 38463253 38544478 38625702 38706927 38785567 38864207 38942847 39021487 39100126 39178766 39257406 39336046 39414686 39493326 39574220 39655114 39736008 39816902 39897796 39978690 40059584 40140478 40221372 40302266 40389070 40475874 40562678 40649482 40736286 40823090 40909894 40996698 41083502 41170306 41265492 41360679 41455866 41551052 41646238 41741425 41836612 41931798 42026984 42122171 42226980 42331789 42436598 42541407 42646216 42751025 42855834 42960643 43065452 43170261 66735337 90300413 113865490 137430566 160995642 +Barbados 81729 81729 81729 81729 81729 81729 81729 81729 81729 81729 81729 82102 82474 82847 83220 83592 83965 84338 84711 85083 85456 86590 87724 88859 89993 91127 92261 93395 94530 95664 96798 98526 100254 101983 103711 105439 107167 108895 110624 112352 114080 115968 117857 119746 121634 123522 125411 127300 129188 131076 132965 134614 136262 137911 139560 141208 142857 144506 146155 147803 149452 150627 151803 152978 154154 155329 156504 157680 158855 160031 161206 162193 163179 164166 165152 166139 167126 168112 169099 170085 171072 172161 173251 174340 175430 176519 177608 178698 179787 180877 181966 182882 183797 184712 185628 186544 187459 188374 189290 190206 191121 189444 187767 186090 184413 182736 181060 179383 177706 176029 174352 172754 171156 169557 167959 166361 164763 163165 161566 159968 158370 159468 160567 161665 162763 163862 164960 166058 167156 168255 169353 170849 172345 173841 175337 176832 178328 179824 181320 182816 184312 186980 189649 192317 194985 197654 200322 202990 205658 208327 210995 211466 211937 212408 212879 213350 213820 214291 214762 215233 215704 216097 216490 216884 217277 217670 218063 218456 218850 219243 219636 219953 220270 220588 220905 221222 221539 221856 222174 222491 222808 223054 223299 223544 223790 224036 224281 224526 224772 225018 225263 225444 225626 225807 225988 226170 226351 226532 226713 226895 227076 227203 227331 227458 227585 227712 227840 227967 228094 228222 228349 239522 250695 261869 273042 284215 +Belarus 2355081 2355081 2355081 2355081 2355081 2355081 2355081 2355081 2355081 2355081 2355081 2360915 2366749 2372583 2378417 2384250 2390084 2395918 2401752 2407586 2413420 2430568 2447716 2464864 2482012 2499160 2516308 2533456 2550604 2567752 2584900 2609689 2634478 2659267 2684056 2708844 2733633 2758422 2783211 2808000 2832789 2859955 2887121 2914287 2941453 2968620 2995786 3022952 3050118 3077284 3104450 3134437 3164425 3194412 3224399 3254386 3284374 3314361 3344348 3374336 3404323 3437207 3470091 3502974 3535858 3568742 3601626 3634510 3667393 3700277 3733161 3769004 3804846 3840689 3876532 3912374 3948217 3984060 4019903 4055745 4091588 4130847 4170105 4209364 4248623 4287882 4327140 4366399 4405658 4444916 4484175 4527489 4570803 4614117 4657431 4700744 4744058 4787372 4830686 4874000 4917314 4964631 5011947 5059264 5106581 5153898 5201214 5248531 5295848 5343164 5390481 5442391 5494301 5546211 5598121 5650032 5701942 5753852 5805762 5857672 5909582 5966254 6022926 6079599 6136271 6192943 6249615 6306287 6362960 6419632 6476304 6538411 6600518 6662625 6724732 6786839 6848946 6911053 6973160 7035267 7097374 7162137 7226900 7291663 7356426 7421188 7485951 7550714 7615477 7680240 7745003 7742274 7739544 7736814 7734085 7731356 7728626 7725896 7723167 7720438 7717708 7717040 7716372 7715704 7715036 7714368 7713699 7713031 7712363 7711695 7711027 7712335 7713643 7714951 7716259 7717568 7718876 7720184 7721492 7722800 7724108 7727255 7730402 7733548 7736695 7739842 7742989 7746136 7749282 7752429 7755576 7760372 7765168 7769964 7774760 7779556 7784353 7789149 7793945 7798741 7803537 7809737 7815938 7822138 7828338 7834538 7840739 7846939 7853139 7859340 7865540 8191597 8517654 8843712 9169769 9495826 +Belgium 3138137 3152719 3167301 3181884 3196466 3211048 3225630 3240212 3254795 3269377 3283959 3303141 3322324 3341506 3360688 3379870 3399053 3418235 3437417 3456600 3475782 3503361 3530940 3558519 3586098 3613676 3641255 3668834 3696413 3723992 3751571 3785157 3818743 3852328 3885914 3919500 3953086 3986672 4020257 4053843 4087429 4121286 4155143 4189000 4222857 4256714 4290572 4324429 4358286 4392143 4426000 4458709 4491418 4524126 4556835 4589544 4622253 4654962 4687670 4720379 4753088 4788868 4824649 4860429 4896209 4931990 4967770 5003550 5039330 5075111 5110891 5157023 5203154 5249286 5295418 5341550 5387681 5433813 5479945 5526076 5572208 5627528 5682848 5738167 5793487 5848807 5904127 5959447 6014766 6070086 6125406 6189038 6252670 6316301 6379933 6443565 6507197 6570829 6634460 6698092 6761724 6834839 6907954 6981068 7054183 7127298 7200413 7273528 7346642 7419757 7492872 7499054 7505236 7511418 7517600 7523782 7529963 7536145 7542327 7548509 7554691 7606312 7657934 7709555 7761176 7812798 7864419 7916040 7967661 8019283 8070904 8096881 8122858 8148836 8174813 8200790 8226767 8252744 8278722 8304699 8330676 8360457 8390239 8420020 8449801 8479582 8509364 8539145 8568926 8598708 8628489 8633009 8637529 8642050 8646570 8651090 8655610 8660130 8664651 8669171 8673691 8678441 8683191 8687941 8692691 8697442 8702192 8706942 8711692 8716442 8721192 8726092 8730993 8735893 8740794 8745694 8750594 8755495 8760395 8765296 8770196 8775192 8780189 8785186 8790182 8795178 8800175 8805172 8810168 8815164 8820161 8825224 8830287 8835350 8840413 8845476 8850540 8855603 8860666 8865729 8870792 8875920 8881047 8886175 8891303 8896430 8901558 8906686 8911814 8916941 8922069 9397494 9872918 10348343 10823767 11299192 +Belize 25526 25526 25526 25526 25526 25526 25526 25526 25526 25526 25526 25529 25532 25535 25538 25541 25544 25547 25550 25553 25556 25564 25573 25582 25590 25598 25607 25616 25624 25632 25641 25652 25664 25676 25687 25698 25710 25722 25733 25744 25756 25768 25779 25791 25802 25814 25826 25837 25849 25860 25872 25860 25849 25837 25825 25814 25802 25790 25778 25767 25755 25754 25753 25752 25751 25750 25749 25748 25747 25746 25745 25883 26021 26158 26296 26434 26572 26710 26847 26985 27123 27486 27849 28212 28575 28938 29302 29665 30028 30391 30754 31290 31826 32362 32898 33434 33970 34506 35042 35578 36114 36482 36850 37218 37586 37954 38321 38689 39057 39425 39793 40270 40747 41223 41700 42177 42654 43131 43607 44084 44561 45151 45742 46332 46923 47513 48103 48694 49284 49875 50465 50995 51526 52056 52586 53116 53647 54177 54707 55238 55768 57083 58398 59713 61028 62343 63658 64973 66288 67603 68918 69150 69383 69616 69848 70080 70313 70546 70778 71010 71243 71462 71680 71898 72117 72336 72554 72772 72991 73210 73428 73641 73853 74066 74278 74491 74704 74916 75129 75341 75554 75767 75980 76194 76407 76620 76833 77046 77260 77473 77686 77905 78123 78342 78560 78779 78998 79216 79435 79653 79872 80099 80326 80552 80779 81006 81233 81460 81686 81913 82140 137569 192999 248428 303858 359287 +Benin 636559 636559 636559 636559 636559 636559 636559 636559 636559 636559 636559 638238 639917 641596 643275 644954 646632 648311 649990 651669 653348 658296 663244 668192 673140 678088 683037 687985 692933 697881 702829 710012 717194 724376 731559 738742 745924 753106 760289 767472 774654 782570 790487 798403 806320 814236 822152 830069 837985 845902 853818 862583 871348 880113 888878 897644 906409 915174 923939 932704 941469 951134 960799 970464 980129 989794 999458 1009123 1018788 1028453 1038118 1048706 1059295 1069884 1080472 1091060 1101649 1112238 1122826 1133414 1144003 1155664 1167324 1178984 1190645 1202306 1213966 1225626 1237287 1248948 1260608 1273549 1286490 1299431 1312372 1325313 1338254 1351195 1364136 1377077 1390018 1404230 1418441 1432652 1446864 1461076 1475287 1489498 1503710 1517922 1532133 1547827 1563521 1579215 1594909 1610603 1626297 1641991 1657685 1673379 1689073 1706334 1723595 1740857 1758118 1775379 1792640 1809901 1827163 1844424 1861685 1880710 1899735 1918761 1937786 1956811 1975836 1994861 2013887 2032912 2051937 2072265 2092594 2112922 2133251 2153579 2173907 2194236 2214564 2234893 2255221 2255504 2255787 2256069 2256352 2256635 2256918 2257201 2257483 2257766 2258049 2258682 2259315 2259948 2260581 2261214 2261846 2262479 2263112 2263745 2264378 2265353 2266328 2267304 2268279 2269254 2270229 2271204 2272180 2273155 2274130 2275440 2276749 2278058 2279368 2280678 2281987 2283296 2284606 2285916 2287225 2288861 2290497 2292133 2293769 2295405 2297041 2298677 2300313 2301949 2303585 2305540 2307494 2309449 2311403 2313358 2315313 2317267 2319222 2321176 2323131 4034471 5745810 7457150 9168489 10879829 +Bhutan 89989 89989 89989 89989 89989 89989 89989 89989 89989 89989 89989 90104 90220 90336 90451 90566 90682 90798 90913 91028 91144 91477 91810 92142 92475 92808 93141 93474 93806 94139 94472 94938 95405 95872 96338 96804 97271 97738 98204 98670 99137 99626 100116 100606 101095 101584 102074 102564 103053 103542 104032 104610 105188 105766 106344 106922 107499 108077 108655 109233 109811 110421 111030 111640 112250 112860 113469 114079 114689 115298 115908 116549 117191 117832 118473 119114 119756 120397 121038 121680 122321 122997 123673 124349 125025 125702 126378 127054 127730 128406 129082 129797 130513 131228 131943 132658 133374 134089 134804 135520 136235 136988 137741 138494 139247 140000 140754 141507 142260 143013 143766 144533 145300 146066 146833 147600 148367 149134 149900 150667 151434 152182 152929 153677 154425 155172 155920 156668 157416 158163 158911 159696 160480 161265 162049 162834 163619 164403 165188 165972 166757 167761 168765 169768 170772 171776 172780 173784 174787 175791 176795 177264 177734 178203 178673 179142 179611 180081 180550 181020 181489 181956 182423 182890 183357 183824 184292 184759 185226 185693 186160 186625 187090 187555 188020 188485 188950 189415 189880 190345 190810 191274 191738 192202 192666 193130 193593 194057 194521 194985 195449 195913 196377 196841 197305 197769 198233 198697 199161 199625 200089 200555 201021 201487 201953 202418 202884 203350 203816 204282 204748 318764 432781 546797 660814 774830 +Bolivia 1100000 1100000 1100000 1100000 1100000 1100000 1100000 1100000 1100000 1100000 1100000 1102192 1104385 1106577 1108770 1110962 1113154 1115347 1117539 1119732 1121924 1128316 1134708 1141101 1147493 1153885 1160277 1166669 1173062 1179454 1185846 1194972 1204098 1213223 1222349 1231475 1240601 1249727 1258852 1267978 1277104 1285735 1294366 1302996 1311627 1320258 1328889 1337520 1346150 1354781 1363412 1372481 1381550 1390618 1399687 1408756 1417825 1426894 1435962 1445031 1454100 1462490 1470880 1479270 1487660 1496050 1504441 1512831 1521221 1529611 1538001 1546814 1555627 1564440 1573253 1582066 1590880 1599693 1608506 1617319 1626132 1635409 1644687 1653964 1663242 1672519 1681796 1691074 1700351 1709629 1718906 1729659 1740411 1751164 1761916 1772669 1783422 1794174 1804927 1815679 1826432 1843156 1859881 1876605 1893330 1910054 1926778 1943503 1960227 1976952 1993676 2027704 2061732 2095760 2129788 2163816 2197843 2231871 2265899 2299927 2333955 2363043 2392130 2421218 2450306 2479394 2508481 2537569 2566657 2595744 2624832 2656876 2688920 2720964 2753008 2785052 2817096 2849140 2881184 2913228 2945272 2959710 2974147 2988585 3003023 3017460 3031898 3046336 3060774 3075211 3089649 3094718 3099788 3104857 3109926 3114996 3120065 3125134 3130203 3135273 3140342 3145636 3150931 3156226 3161520 3166814 3172109 3177404 3182698 3187992 3193287 3198804 3204322 3209840 3215357 3220874 3226392 3231910 3237427 3242944 3248462 3254199 3259937 3265674 3271411 3277148 3282886 3288623 3294360 3300098 3305835 3311788 3317741 3323693 3329646 3335599 3341552 3347505 3353457 3359410 3365363 3371527 3377690 3383854 3390017 3396181 3402345 3408508 3414672 3420835 3426999 4886540 6346081 7805623 9265164 10724705 +Bosnia and Herzegovina 851806 851806 851806 851806 851806 851806 851806 851806 851806 851806 851806 853822 855839 857855 859872 861888 863904 865921 867937 869954 871970 877886 883802 889718 895634 901550 907465 913381 919297 925213 931129 939657 948185 956712 965240 973768 982296 990824 999351 1007879 1016407 1025716 1035025 1044333 1053642 1062951 1072260 1081569 1090877 1100186 1109495 1119575 1129655 1139735 1149815 1159894 1169974 1180054 1190134 1200214 1210294 1221290 1232285 1243280 1254276 1265272 1276267 1287262 1298258 1309254 1320249 1332173 1344098 1356022 1367947 1379871 1391795 1403720 1415644 1427569 1439493 1452486 1465480 1478473 1491467 1504460 1517453 1530447 1543440 1556434 1569427 1583685 1597943 1612201 1626459 1640717 1654975 1669233 1683491 1697749 1712007 1727503 1742999 1758495 1773991 1789486 1804982 1820478 1835974 1851470 1866966 1883962 1900959 1917956 1934952 1951948 1968945 1985942 2002938 2019934 2036931 2055586 2074242 2092897 2111553 2130208 2148863 2167519 2186174 2204830 2223485 2243849 2264213 2284577 2304941 2325304 2345668 2366032 2386396 2406760 2427124 2450541 2473958 2497375 2520792 2544208 2567625 2591042 2614459 2637876 2661293 2666155 2671017 2675879 2680741 2685603 2690465 2695327 2700189 2705051 2709913 2715252 2720590 2725928 2731267 2736606 2741944 2747282 2752621 2757960 2763298 2768879 2774460 2780041 2785622 2791202 2796783 2802364 2807945 2813526 2819107 2824760 2830414 2836067 2841721 2847374 2853027 2858681 2864334 2869988 2875641 2881262 2886883 2892503 2898124 2903745 2909366 2914987 2920607 2926228 2931849 2937400 2942950 2948500 2954051 2959602 2965152 2970702 2976253 2981804 2987354 3151966 3316579 3481191 3645804 3810416 +Botswana 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121000 121030 121060 121090 121120 121150 121180 121210 121240 121270 121300 121330 121360 121390 121420 121450 121480 121510 121540 121570 121600 121630 121660 121690 121720 121750 121780 121810 121840 121870 121900 121930 121960 121990 122020 122050 122080 122110 122140 122170 122200 122235 122270 122305 122340 122376 122411 122446 122481 122516 122551 122963 123376 123788 124200 124612 125025 125437 125849 126262 126674 129250 131827 134403 136979 139556 142132 144708 147284 149861 152437 158876 165316 171755 178194 184634 191073 197512 203951 210391 216830 223368 229907 236446 242984 249522 256061 262600 269138 275676 282215 295247 308279 321310 334342 347374 360406 373438 386469 399501 412533 413807 415080 416354 417628 418902 420175 421449 422723 423996 425270 426461 427652 428844 430035 431226 432417 433608 434800 435991 437182 438308 439433 440558 441684 442810 443935 445060 446186 447312 448437 449514 450591 451668 452745 453822 454898 455975 457052 458129 459206 460252 461299 462346 463392 464438 465485 466532 467578 468624 469671 470706 471740 472774 473809 474844 475878 476912 477947 478982 480016 836510 1193004 1549497 1905991 2262485 +Brazil 3639636 3681538 3723439 3765341 3807242 3849144 3891046 3932947 3974849 4016750 4058652 4111019 4163387 4215754 4268121 4320488 4372856 4425223 4477590 4529958 4582325 4654199 4726074 4797948 4869822 4941696 5013571 5085445 5157319 5229194 5301068 5391631 5482193 5572756 5663318 5753881 5844444 5935006 6025569 6116131 6206694 6311444 6416194 6520944 6625694 6730444 6835194 6939944 7044694 7149444 7254194 7375375 7496556 7617737 7738918 7860100 7981281 8102462 8223643 8344824 8466005 8615846 8765688 8915529 9065371 9215212 9365053 9514895 9664736 9814578 9964419 10157316 10350214 10543111 10736008 10928906 11121803 11314700 11507597 11700495 11893392 12145127 12396861 12648596 12900330 13152065 13403800 13655534 13907269 14159003 14410738 14780013 15149288 15518563 15887838 16257114 16626389 16995664 17364939 17734214 18103489 18534548 18965606 19396664 19827723 20258782 20689840 21120898 21551957 21983016 22414074 22938753 23463432 23988110 24512789 25037468 25562147 26086826 26611504 27136183 27660862 28283676 28906489 29529302 30152116 30774930 31397743 32020556 32643370 33266184 33888997 34654610 35420223 36185837 36951450 37717063 38482676 39248289 40013903 40779516 41545129 42788089 44031048 45274008 46516968 47759928 49002887 50245847 51488807 52731766 53974726 54137808 54300889 54463970 54627052 54790134 54953215 55116296 55279378 55442460 55605541 55775464 55945387 56115310 56285233 56455156 56625080 56795003 56964926 57134849 57304772 57479622 57654471 57829320 58004170 58179020 58353869 58528718 58703568 58878418 59053267 59231818 59410370 59588922 59767473 59946024 60124576 60303128 60481679 60660230 60838782 61020502 61202222 61383943 61565663 61747383 61929103 62110823 62292544 62474264 62655984 62841073 63026162 63211251 63396340 63581429 63766518 63951607 64136696 64321785 64506874 93175005 121843136 150511266 179179397 207847528 +Brunei 2128 2128 2128 2128 2128 2128 2128 2128 2128 2128 2128 2140 2153 2165 2177 2190 2202 2214 2226 2239 2251 2289 2327 2365 2403 2442 2480 2518 2556 2594 2632 2692 2752 2812 2872 2932 2991 3051 3111 3171 3231 3304 3378 3452 3525 3598 3672 3746 3819 3892 3966 4056 4146 4236 4326 4416 4506 4596 4686 4776 4866 4998 5130 5261 5393 5525 5657 5789 5920 6052 6184 6391 6597 6804 7010 7217 7424 7630 7837 8043 8250 8552 8854 9156 9458 9760 10063 10365 10667 10969 11271 11695 12118 12542 12965 13389 13813 14236 14660 15083 15507 16074 16642 17209 17776 18344 18911 19478 20045 20613 21180 21608 22037 22465 22893 23322 23750 24178 24606 25035 25463 25862 26261 26659 27058 27457 27856 28255 28653 29052 29451 30068 30684 31300 31917 32534 33150 33766 34383 35000 35616 36854 38093 39332 40570 41808 43047 44286 45524 46762 48001 48298 48595 48892 49189 49486 49783 50080 50377 50674 50971 51267 51563 51859 52155 52452 52748 53044 53340 53636 53932 54235 54537 54840 55142 55445 55748 56050 56353 56655 56958 57273 57587 57902 58216 58531 58846 59160 59475 59789 60104 60434 60763 61093 61423 61752 62082 62412 62742 63071 63401 63747 64093 64438 64784 65130 65476 65822 66167 66513 66859 138125 209391 280656 351922 423188 +Bulgaria 1992320 2001910 2011501 2021091 2030681 2040272 2049862 2059452 2069042 2078633 2088223 2098068 2107913 2117758 2127603 2137448 2147292 2157137 2166982 2176827 2186672 2196760 2206848 2216936 2227024 2237112 2247199 2257287 2267375 2277463 2287551 2297981 2308411 2318842 2329272 2339702 2350132 2360562 2370993 2381423 2391853 2400907 2409961 2419016 2428070 2437124 2446178 2455232 2464287 2473341 2482395 2488475 2494556 2500636 2506717 2512797 2518877 2524958 2531038 2537119 2543199 2556650 2570101 2583552 2597003 2610454 2623904 2637355 2650806 2664257 2677708 2709301 2740895 2772488 2804082 2835675 2867268 2898862 2930455 2962049 2993642 3039661 3085680 3131698 3177717 3223736 3269755 3315774 3361792 3407811 3453830 3507673 3561516 3615359 3669202 3723044 3776887 3830730 3884573 3938416 3992259 4046172 4100085 4153997 4207910 4261823 4315736 4369649 4423561 4477474 4531387 4586825 4642262 4697700 4753138 4808576 4864013 4919451 4974889 5030326 5085764 5180632 5275500 5370369 5465237 5560105 5654973 5749841 5844710 5939578 6034446 6098251 6162056 6225861 6289666 6353471 6417276 6481081 6544886 6608691 6672496 6730346 6788197 6846047 6903897 6961748 7019598 7077448 7135298 7193149 7250999 7256276 7261554 7266831 7272109 7277386 7282663 7287941 7293218 7298496 7303773 7309395 7315018 7320640 7326263 7331885 7337507 7343130 7348752 7354375 7359997 7365874 7371751 7377627 7383504 7389381 7395258 7401135 7407011 7412888 7418765 7424825 7430885 7436946 7443006 7449066 7455126 7461186 7467247 7473307 7479367 7485560 7491753 7497945 7504138 7510331 7516524 7522717 7528909 7535102 7541295 7547591 7553886 7560182 7566477 7572773 7579069 7585364 7591660 7597955 7604251 7513358 7422465 7331573 7240680 7149787 +Burkina Faso 1665421 1665421 1665421 1665421 1665421 1665421 1665421 1665421 1665421 1665421 1665421 1668674 1671926 1675179 1678431 1681684 1684937 1688189 1691442 1694694 1697947 1707424 1716901 1726378 1735855 1745332 1754809 1764286 1773763 1783240 1792717 1806233 1819748 1833264 1846780 1860296 1873811 1887327 1900843 1914358 1927874 1942409 1956944 1971478 1986013 2000548 2015083 2029618 2044152 2058687 2073222 2088824 2104426 2120028 2135630 2151232 2166834 2182436 2198038 2213640 2229242 2246018 2262794 2279570 2296346 2313122 2329899 2346675 2363451 2380227 2397003 2414955 2432908 2450860 2468813 2486765 2504717 2522670 2540622 2558575 2576527 2595814 2615101 2634389 2653676 2672963 2692250 2711537 2730825 2750112 2769399 2790240 2811081 2831922 2852763 2873604 2894446 2915287 2936128 2956969 2977810 3000152 3022493 3044835 3067177 3089518 3111860 3134202 3156544 3178885 3201227 3225320 3249414 3273507 3297601 3321694 3345787 3369881 3393974 3418068 3442161 3468112 3494064 3520015 3545966 3571918 3597869 3623820 3649771 3675723 3701674 3729582 3757490 3785398 3813306 3841214 3869122 3897030 3924938 3952846 3980754 4011124 4041495 4071865 4102235 4132606 4162976 4193346 4223716 4254087 4284457 4288461 4292464 4296468 4300471 4304475 4308479 4312482 4316486 4320489 4324493 4328757 4333022 4337286 4341551 4345815 4350079 4354344 4358608 4362873 4367137 4371744 4376350 4380957 4385563 4390170 4394777 4399383 4403990 4408596 4413203 4418199 4423195 4428192 4433188 4438184 4443180 4448176 4453173 4458169 4463165 4468564 4473963 4479362 4484761 4490160 4495559 4500958 4506357 4511756 4517155 4522934 4528712 4534491 4540270 4546048 4551827 4557606 4563385 4569163 4574942 7281068 9987193 12693319 15399444 18105570 +Burundi 899097 899097 899097 899097 899097 899097 899097 899097 899097 899097 899097 900968 902838 904709 906580 908450 910321 912192 914063 915933 917804 923266 928729 934191 939654 945116 950578 956041 961503 966966 972428 980244 988060 995876 1003692 1011508 1019324 1027140 1034956 1042772 1050588 1059032 1067476 1075921 1084365 1092809 1101253 1109697 1118142 1126586 1135030 1142980 1150929 1158879 1166829 1174778 1182728 1190678 1198628 1206577 1214527 1223021 1231516 1240010 1248505 1256999 1265493 1273988 1282482 1290977 1299471 1308494 1317516 1326539 1335562 1344584 1353607 1362630 1371653 1380675 1389698 1399327 1408956 1418584 1428213 1437842 1447471 1457100 1466728 1476357 1485986 1496333 1506679 1517026 1527372 1537719 1548066 1558412 1568759 1579105 1589452 1600461 1611471 1622480 1633489 1644498 1655508 1666517 1677526 1688536 1699545 1711956 1724366 1736777 1749187 1761598 1774009 1786419 1798830 1811240 1823651 1838309 1852967 1867624 1882282 1896940 1911598 1926256 1940913 1955571 1970229 1986065 2001901 2017737 2033573 2049409 2065245 2081081 2096917 2112753 2128589 2146622 2164656 2182689 2200723 2218756 2236789 2254823 2272856 2290890 2308923 2313954 2318985 2324016 2329047 2334078 2339110 2344141 2349172 2354203 2359234 2363688 2368143 2372597 2377051 2381506 2385960 2390414 2394868 2399323 2403777 2407983 2412189 2416395 2420601 2424806 2429012 2433218 2437424 2441630 2445836 2450045 2454255 2458464 2462673 2466882 2471092 2475301 2479510 2483720 2487929 2492316 2496703 2501090 2505477 2509864 2514252 2518639 2523026 2527413 2531800 2536459 2541119 2545778 2550437 2555096 2559756 2564415 2569074 2573734 2578393 4298499 6018604 7738710 9458815 11178921 +Cambodia 2090000 2090000 2090000 2090000 2090000 2090000 2090000 2090000 2090000 2090000 2090000 2091247 2092494 2093740 2094987 2096234 2097481 2098728 2099974 2101221 2102468 2106018 2109568 2113117 2116667 2120217 2123767 2127317 2130866 2134416 2137966 2142852 2147739 2152625 2157511 2162398 2167284 2172170 2177056 2181943 2186829 2191827 2196825 2201823 2206821 2211818 2216816 2221814 2226812 2231810 2236808 2242417 2248026 2253635 2259244 2264852 2270461 2276070 2281679 2287288 2292897 2301218 2309538 2317859 2326179 2334500 2342821 2351141 2359462 2367782 2376103 2389489 2402875 2416261 2429647 2443033 2456419 2469805 2483191 2496577 2509963 2526826 2543688 2560550 2577413 2594276 2611138 2628000 2644863 2661726 2678588 2696662 2714736 2732809 2750883 2768957 2787031 2805105 2823178 2841252 2859326 2878569 2897813 2917056 2936299 2955542 2974786 2994029 3013272 3032516 3051759 3079202 3106646 3134090 3161533 3188976 3216420 3243864 3271307 3298750 3326194 3358950 3391707 3424463 3457220 3489976 3522732 3555489 3588245 3621002 3653758 3689740 3725723 3761705 3797687 3833670 3869652 3905634 3941616 3977599 4013581 4055494 4097408 4139322 4181235 4223148 4265062 4306976 4348889 4390802 4432716 4443410 4454104 4464798 4475492 4486186 4496880 4507574 4518268 4528962 4539656 4551556 4563455 4575355 4587255 4599154 4611054 4622954 4634854 4646753 4658653 4671267 4683881 4696495 4709109 4721722 4734336 4746950 4759564 4772178 4784792 4797758 4810723 4823688 4836654 4849620 4862585 4875550 4888516 4901482 4914447 4927531 4940614 4953698 4966782 4979866 4992949 5006033 5019117 5032200 5045284 5058388 5071492 5084597 5097701 5110805 5123909 5137013 5150118 5163222 5176326 7256641 9336955 11417270 13497584 15577899 +Cameroon 1860054 1860054 1860054 1860054 1860054 1860054 1860054 1860054 1860054 1860054 1860054 1861515 1862976 1864437 1865898 1867358 1868819 1870280 1871741 1873202 1874663 1878836 1883009 1887181 1891354 1895527 1899700 1903873 1908045 1912218 1916391 1922163 1927936 1933708 1939481 1945253 1951025 1956798 1962570 1968343 1974115 1980061 1986008 1991954 1997900 2003846 2009793 2015739 2021685 2027632 2033578 2039746 2045914 2052082 2058250 2064418 2070586 2076754 2082922 2089090 2095258 2101613 2107968 2114323 2120678 2127034 2133389 2139744 2146099 2152454 2158809 2165344 2171880 2178415 2184951 2191486 2198021 2204557 2211092 2217628 2224163 2230895 2237627 2244359 2251091 2257822 2264554 2271286 2278018 2284750 2291482 2298432 2305382 2312333 2319283 2326233 2333183 2340133 2347084 2354034 2360984 2368136 2375289 2382442 2389594 2396746 2403899 2411052 2418204 2425356 2432509 2439868 2447228 2454587 2461947 2469306 2476665 2484025 2491384 2498744 2506103 2548135 2590166 2632198 2674229 2716261 2758293 2800324 2842356 2884387 2926419 2989577 3052735 3115893 3179051 3242209 3305367 3368525 3431683 3494841 3557999 3648849 3739699 3830549 3921399 4012248 4103098 4193948 4284798 4375648 4466498 4474270 4482042 4489814 4497586 4505358 4513130 4520902 4528674 4536446 4544218 4552143 4560069 4567994 4575919 4583844 4591770 4599695 4607620 4615546 4623471 4631580 4639688 4647796 4655905 4664014 4672122 4680230 4688339 4696448 4704556 4712884 4721211 4729539 4737866 4746194 4754522 4762849 4771177 4779504 4787832 4796421 4805011 4813600 4822190 4830779 4839368 4847958 4856547 4865137 4873726 4882626 4891526 4900426 4909326 4918226 4927126 4936026 4944926 4953826 4962726 8639017 12315307 15991598 19667888 23344179 +Canada 645526 653734 661941 670149 678357 686564 694772 702980 711188 719395 727603 742786 757969 773152 788335 803518 818700 833883 849066 864249 879432 911703 943975 976246 1008518 1040789 1073060 1105332 1137603 1169875 1202146 1256492 1310838 1365183 1419529 1473875 1528221 1582567 1636912 1691258 1745604 1819825 1894045 1968266 2042487 2116708 2190928 2265149 2339370 2413590 2487811 2562176 2636542 2710907 2785273 2859638 2934003 3008369 3082734 3157100 3231465 3290035 3348605 3407176 3465746 3524316 3582886 3641456 3700027 3758597 3817167 3871485 3925803 3980121 4034439 4088758 4143076 4197394 4251712 4306030 4360348 4415121 4469894 4524667 4579440 4634213 4688986 4743759 4798532 4853305 4908078 4970351 5032624 5094896 5157169 5219442 5281715 5343988 5406260 5468533 5530806 5695845 5860885 6025924 6190964 6356003 6521042 6686082 6851121 7016161 7181200 7339500 7497801 7656102 7814402 7972702 8131003 8289304 8447604 8605904 8764205 8932883 9101561 9270238 9438916 9607594 9776272 9944950 10113627 10282305 10450983 10571477 10691970 10812464 10932958 11053452 11173945 11294439 11414933 11535426 11655920 11864028 12072135 12280243 12488351 12696458 12904566 13112674 13320782 13528889 13736997 13773297 13809596 13845896 13882196 13918496 13954795 13991095 14027395 14063694 14099994 14138144 14176295 14214445 14252595 14290746 14328896 14367046 14405196 14443347 14481497 14521552 14561608 14601663 14641718 14681774 14721829 14761884 14801939 14841995 14882050 14923892 14965734 15007577 15049419 15091261 15133103 15174945 15216788 15258630 15300472 15343811 15387149 15430488 15473826 15517165 15560504 15603842 15647181 15690519 15733858 15778217 15822577 15866936 15911295 15955654 16000014 16044373 16088732 16133092 16177451 20129946 24082441 28034937 31987432 35939927 +Cape Verde 55716 55716 55716 55716 55716 55716 55716 55716 55716 55716 55716 55851 55985 56120 56254 56389 56524 56658 56793 56927 57062 57457 57852 58248 58643 59038 59433 59828 60224 60619 61014 61584 62155 62725 63296 63866 64436 65007 65577 66148 66718 67342 67966 68589 69213 69837 70461 71085 71708 72332 72956 73633 74310 74987 75664 76340 77017 77694 78371 79048 79725 80465 81204 81944 82684 83424 84163 84903 85643 86382 87122 87926 88729 89532 90336 91140 91943 92746 93550 94354 95157 96034 96911 97788 98665 99542 100420 101297 102174 103051 103928 104892 105856 106821 107785 108749 109713 110677 111642 112606 113570 114620 115669 116719 117769 118818 119868 120918 121968 123017 124067 125220 126374 127527 128680 129834 130987 132140 133293 134447 135600 136868 138136 139403 140671 141939 143207 144475 145742 147010 148278 149664 151050 152437 153823 155209 156595 157981 159368 160754 162140 163733 165325 166918 168510 170103 171696 173288 174881 176473 178066 178872 179678 180483 181289 182095 182901 183707 184512 185318 186124 186664 187203 187743 188283 188822 189362 189902 190442 190981 191521 191853 192185 192516 192848 193180 193512 193844 194175 194507 194839 195018 195198 195377 195556 195736 195915 196094 196273 196453 196632 196711 196790 196869 196948 197027 197106 197185 197264 197343 197422 197450 197478 197506 197534 197562 197590 197618 197646 197674 197702 262262 326822 391382 455942 520502 +Chad 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432000 1432787 1433574 1434361 1435148 1435936 1436723 1437510 1438297 1439084 1439871 1440658 1441445 1442233 1443020 1443807 1444594 1445381 1446169 1446956 1447743 1448530 1449317 1450104 1450891 1451678 1452466 1453253 1454040 1454827 1455614 1456401 1457188 1457976 1458763 1459550 1460337 1461124 1461912 1462699 1463486 1464273 1465060 1465847 1466634 1467422 1468209 1468996 1469783 1470570 1471357 1472144 1472931 1473719 1474506 1475293 1476080 1476867 1477655 1478442 1479229 1479754 1480278 1480803 1481328 1481852 1482377 1482902 1483427 1483951 1484476 1484476 1484476 1484476 1484476 1484476 1484476 1484476 1484476 1484476 1484476 1508759 1533041 1557324 1581607 1605890 1630172 1654455 1678738 1703020 1727303 1804804 1882305 1959806 2037307 2114808 2192310 2269811 2347312 2424813 2502314 2506493 2510672 2514850 2519029 2523208 2527387 2531566 2535744 2539923 2544102 2548620 2553137 2557655 2562172 2566690 2571208 2575725 2580243 2584760 2589278 2594029 2598779 2603530 2608281 2613032 2617782 2622533 2627284 2632034 2636785 2641691 2646596 2651502 2656408 2661314 2666219 2671125 2676031 2680936 2685842 2690851 2695861 2700870 2705880 2710889 2715898 2720908 2725917 2730927 2735936 2741027 2746118 2751208 2756299 2761390 2766481 2771572 2776662 2781753 2786844 5036970 7287095 9537221 11787346 14037472 +Chile 771447 771447 771447 771447 771447 771447 771447 771447 771447 771447 771447 776391 781335 786280 791224 796168 801112 806056 811001 815945 820889 835706 850524 865341 880158 894976 909793 924610 939427 954245 969062 990471 1011880 1033289 1054698 1076106 1097515 1118924 1140333 1161742 1183151 1206220 1229288 1252357 1275425 1298494 1321563 1344631 1367700 1390768 1413837 1439383 1464929 1490475 1516021 1541568 1567114 1592660 1618206 1643752 1669298 1698073 1726849 1755624 1784399 1813174 1841950 1870725 1899500 1928276 1957051 1989070 2021090 2053109 2085129 2117148 2149167 2181187 2213206 2245226 2277245 2311902 2346559 2381216 2415873 2450530 2485186 2519843 2554500 2589157 2623814 2659582 2695349 2731116 2766884 2802652 2838419 2874186 2909954 2945722 2981489 3018100 3054711 3091321 3127932 3164543 3201154 3237765 3274375 3310986 3347597 3388883 3430169 3471456 3512742 3554028 3595314 3636600 3677887 3719173 3760459 3815361 3870263 3925165 3980067 4034968 4089870 4144772 4199674 4254576 4309478 4389342 4469206 4549070 4628934 4708798 4788661 4868525 4948389 5028253 5108117 5211595 5315073 5418552 5522030 5625508 5728986 5832464 5935943 6039421 6142899 6156444 6169988 6183533 6197078 6210622 6224167 6237712 6251257 6264801 6278346 6292266 6306185 6320105 6334025 6347944 6361864 6375784 6389704 6403623 6417543 6431892 6446241 6460590 6474939 6489288 6503637 6517986 6532335 6546684 6561033 6575848 6590664 6605480 6620295 6635110 6649926 6664742 6679557 6694372 6709188 6724490 6739793 6755095 6770397 6785700 6801002 6816304 6831606 6846909 6862211 6878002 6893794 6909585 6925377 6941168 6956959 6972751 6988542 7004334 7020125 9205728 11391331 13576935 15762538 17948141 +China 321675013 324561808 327448602 330335396 333222191 336108986 338995780 341882574 344769369 347656164 350542958 353494190 356445421 359396652 362347884 365299116 368250347 371201578 374152810 377104042 380055273 382287098 384518922 386750747 388982571 391214396 393446221 395678045 397909870 400141694 402373519 403257510 404141500 405025490 405909481 406793472 407677462 408561452 409445443 410329434 411213424 410363210 409512995 408662781 407812566 406962352 406112138 405261923 404411709 403561494 402711280 400444907 398178534 395912160 393645787 391379414 389113041 386846668 384580294 382313921 380047548 378408909 376770270 375131631 373492992 371854353 370215714 368577075 366938436 365299797 363661158 363849461 364037765 364226068 364414372 364602675 364790978 364979282 365167585 365355889 365544192 366703308 367862423 369021539 370180655 371339770 372498886 373658002 374817118 375976233 377135349 378940270 380745190 382550111 384355032 386159952 387964873 389769794 391574715 393379635 395184556 397449178 399713800 401978421 404243043 406507665 408772287 411036909 413301530 415566152 417830774 422322756 426814739 431306721 435798703 440290686 444782668 449274650 453766632 458258615 462750597 464597795 466444993 468292192 470139390 471986588 473833786 475680984 477528183 479375381 481222579 484086203 486949827 489813451 492677075 495540700 498404324 501267948 504131572 506995196 509858820 513284230 516709641 520135051 523560461 526985872 530411282 533836692 537262102 540687513 544112923 545583667 547054411 548525155 549995899 551466642 552937386 554408130 555878874 557349618 558820362 560014822 561209283 562403743 563598203 564792664 565987124 567181584 568376044 569570505 570764965 571777124 572789284 573801443 574813603 575825762 576837921 577850081 578862240 579874400 580886559 581793484 582700410 583607335 584514260 585421186 586328111 587235036 588141961 589048887 589955812 590817655 591679498 592541341 593403184 594265026 595126869 595988712 596850555 597712398 598574241 599433569 600292898 601152226 602011554 602870882 603730211 604589539 605448867 606308196 607167524 760943808 914720092 1068496375 1222272659 1376048943 +Colombia 1206000 1206000 1206000 1206000 1206000 1206000 1206000 1206000 1206000 1206000 1206000 1212035 1218070 1224105 1230140 1236176 1242211 1248246 1254281 1260316 1266351 1284847 1303343 1321839 1340335 1358832 1377328 1395824 1414320 1432816 1451312 1479808 1508304 1536801 1565297 1593793 1622289 1650785 1679282 1707778 1736274 1764111 1791948 1819785 1847622 1875460 1903297 1931134 1958971 1986808 2014645 2036618 2058591 2080564 2102537 2124510 2146484 2168457 2190430 2212403 2234376 2259193 2284009 2308826 2333642 2358459 2383276 2408092 2432909 2457725 2482542 2522884 2563226 2603568 2643910 2684252 2724594 2764936 2805278 2845620 2885962 2940629 2995296 3049963 3104630 3159296 3213963 3268630 3323297 3377964 3432631 3500271 3567911 3635551 3703191 3770830 3838470 3906110 3973750 4041390 4109030 4200119 4291208 4382297 4473386 4564475 4655564 4746653 4837742 4928831 5019920 5157388 5294855 5432323 5569790 5707258 5844726 5982193 6119661 6257128 6394596 6569562 6744527 6919493 7094458 7269424 7444390 7619355 7794321 7969286 8144252 8274044 8403836 8533628 8663420 8793212 8923005 9052797 9182589 9312381 9442173 9732046 10021918 10311791 10601663 10891536 11181409 11471281 11761154 12051026 12340899 12376804 12412709 12448614 12484519 12520424 12556329 12592234 12628139 12664044 12699949 12736423 12772897 12809371 12845845 12882319 12918793 12955267 12991741 13028215 13064689 13102085 13139480 13176876 13214271 13251667 13289063 13326458 13363854 13401249 13438645 13477253 13515860 13554468 13593075 13631683 13670291 13708898 13747506 13786113 13824721 13864769 13904816 13944864 13984911 14024959 14065007 14105054 14145102 14185149 14225197 14266849 14308501 14350153 14391805 14433458 14475110 14516762 14558414 14600066 14641718 21359115 28076512 34793910 41511307 48228704 +Comoros 56346 56346 56346 56346 56346 56346 56346 56346 56346 56346 56346 56465 56584 56703 56822 56942 57061 57180 57299 57418 57537 57885 58233 58581 58929 59276 59624 59972 60320 60668 61016 61514 62013 62511 63009 63508 64006 64504 65002 65501 65999 66538 67077 67616 68155 68694 69233 69772 70311 70850 71389 71965 72541 73116 73692 74268 74844 75420 75995 76571 77147 77769 78392 79014 79636 80258 80881 81503 82125 82748 83370 84039 84708 85377 86046 86714 87383 88052 88721 89390 90059 90781 91503 92226 92948 93670 94392 95114 95837 96559 97281 98066 98850 99635 100420 101204 101989 102774 103559 104343 105128 105973 106818 107663 108508 109354 110199 111044 111889 112734 113579 114498 115418 116337 117257 118176 119095 120015 120934 121854 122773 123776 124778 125781 126783 127786 128789 129791 130794 131796 132799 133884 134968 136052 137137 138222 139306 140390 141475 142560 143644 144913 146182 147451 148720 149989 151258 152527 153796 155065 156334 156709 157084 157459 157834 158208 158583 158958 159333 159708 160083 160430 160777 161124 161471 161818 162165 162512 162859 163206 163553 163882 164210 164539 164867 165196 165525 165853 166182 166510 166839 167157 167475 167793 168111 168429 168747 169065 169383 169701 170019 170332 170645 170958 171271 171584 171897 172210 172523 172836 173149 173461 173772 174084 174395 174707 175019 175330 175642 175953 176265 298707 421149 543590 666032 788474 +Congo, Dem. Rep. 5163819 5163819 5163819 5163819 5163819 5163819 5163819 5163819 5163819 5163819 5163819 5172959 5182100 5191240 5200381 5209521 5218661 5227802 5236942 5246083 5255223 5281772 5308322 5334872 5361421 5387970 5414520 5441070 5467619 5494168 5520718 5558403 5596088 5633773 5671458 5709144 5746829 5784514 5822199 5859884 5897569 5937826 5978084 6018342 6058599 6098856 6139114 6179372 6219629 6259886 6300144 6342661 6385178 6427695 6470212 6512730 6555247 6597764 6640281 6682798 6725315 6770701 6816087 6861473 6906859 6952245 6997631 7043017 7088403 7133789 7179175 7227412 7275649 7323886 7372123 7420360 7468596 7516833 7565070 7613307 7661544 7712998 7764452 7815905 7867359 7918813 7970267 8021721 8073174 8124628 8176082 8231257 8286432 8341608 8396783 8451958 8507133 8562308 8617484 8672659 8727834 8786570 8845305 8904041 8962776 9021512 9080248 9138983 9197719 9256454 9315190 9378264 9441338 9504412 9567486 9630560 9693635 9756709 9819783 9882857 9945931 10013823 10081715 10149607 10217499 10285392 10353284 10421176 10489068 10556960 10624852 10697378 10769905 10842432 10914958 10987484 11060011 11132538 11205064 11277590 11350117 11433471 11516826 11600180 11683535 11766889 11850243 11933598 12016952 12100307 12183661 12208178 12232695 12257211 12281728 12306245 12330762 12355279 12379795 12404312 12428829 12454040 12479250 12504460 12529671 12554882 12580092 12605302 12630513 12655724 12680934 12707280 12733626 12759972 12786318 12812664 12839009 12865355 12891701 12918047 12944393 12972206 13000018 13027831 13055643 13083456 13111269 13139081 13166894 13194706 13222519 13252019 13281519 13311019 13340519 13370019 13399519 13429019 13458519 13488019 13517519 13548812 13580104 13611396 13642689 13673982 13705274 13736566 13767859 13799152 13830444 26517718 39204992 51892266 64579540 77266814 +Congo, Rep. 314465 314465 314465 314465 314465 314465 314465 314465 314465 314465 314465 315078 315691 316304 316917 317530 318144 318757 319370 319983 320596 322382 324169 325955 327741 329528 331314 333100 334886 336673 338459 341006 343554 346101 348649 351196 353743 356291 358838 361386 363933 366672 369411 372150 374889 377628 380367 383106 385845 388584 391323 394241 397158 400076 402994 405912 408829 411747 414665 417582 420500 423635 426771 429906 433041 436176 439312 442447 445582 448718 451853 455206 458559 461911 465264 468617 471970 475323 478675 482028 485381 488981 492580 496180 499780 503380 506979 510579 514179 517778 521378 525265 529153 533040 536927 540814 544702 548589 552476 556364 560251 564416 568580 572744 576909 581074 585238 589402 593567 597732 601896 606395 610895 615394 619894 624393 628892 633392 637891 642391 646890 651759 656627 661496 666365 671234 676102 680971 685840 690708 695577 700812 706047 711282 716517 721752 726988 732223 737458 742693 747928 753908 759888 765867 771847 777827 783807 789787 795766 801746 807726 809366 811007 812647 814287 815928 817568 819208 820848 822489 824129 825863 827598 829332 831067 832801 834535 836270 838004 839739 841473 843297 845121 846945 848769 850594 852418 854242 856066 857890 859714 861626 863538 865450 867362 869274 871186 873098 875010 876922 878834 880834 882834 884833 886833 888833 890833 892833 894832 896832 898832 900922 903013 905103 907193 909284 911374 913464 915554 917645 919735 1659854 2399973 3140092 3880211 4620330 +Costa Rica 51987 52547 53106 53666 54226 54786 55345 55905 56465 57024 57584 58163 58742 59321 59900 60480 61059 61638 62217 62796 63375 64242 65109 65976 66843 67710 68578 69445 70312 71179 72046 73433 74820 76207 77594 78980 80367 81754 83141 84528 85915 87412 88908 90405 91902 93398 94895 96392 97889 99385 100882 102362 103843 105324 106804 108284 109765 111246 112726 114206 115687 117959 120231 122504 124776 127048 129320 131592 133865 136137 138409 141843 145277 148711 152145 155579 159013 162447 165881 169315 172749 178180 183610 189040 194471 199902 205332 210762 216193 221624 227054 234140 241225 248311 255396 262482 269568 276653 283739 290824 297910 304039 310168 316298 322427 328556 334685 340814 346944 353073 359202 365364 371525 377687 383848 390010 396172 402333 408495 414656 420818 433782 446747 459711 472676 485640 498604 511569 524533 537498 550462 568078 585693 603308 620924 638540 656155 673770 691386 709002 726617 749904 773191 796479 819766 843053 866340 889627 912915 936202 959489 962156 964823 967490 970157 972824 975491 978158 980825 983492 986159 989131 992102 995074 998045 1001017 1003989 1006960 1009932 1012903 1015875 1019110 1022344 1025579 1028814 1032048 1035283 1038518 1041753 1044987 1048222 1051688 1055153 1058619 1062085 1065550 1069016 1072482 1075948 1079413 1082879 1086553 1090227 1093901 1097575 1101249 1104923 1108597 1112271 1115945 1119619 1123489 1127359 1131229 1135099 1138968 1142838 1146708 1150578 1154448 1158318 1888224 2618131 3348037 4077944 4807850 +Cote d'Ivoire 1088530 1088530 1088530 1088530 1088530 1088530 1088530 1088530 1088530 1088530 1088530 1090512 1092493 1094474 1096456 1098438 1100419 1102400 1104382 1106364 1108345 1114105 1119866 1125626 1131386 1137146 1142907 1148667 1154427 1160188 1165948 1174135 1182322 1190509 1198696 1206883 1215070 1223257 1231444 1239631 1247818 1256580 1265342 1274104 1282866 1291628 1300389 1309151 1317913 1326675 1335437 1344650 1353863 1363075 1372288 1381501 1390714 1399927 1409139 1418352 1427565 1437413 1447261 1457110 1466958 1476806 1486654 1496502 1506351 1516199 1526047 1536527 1547007 1557487 1567967 1578446 1588926 1599406 1609886 1620366 1630846 1642040 1653234 1664428 1675622 1686816 1698009 1709203 1720397 1731591 1742785 1754807 1766829 1778851 1790873 1802896 1814918 1826940 1838962 1850984 1863006 1875820 1888635 1901449 1914264 1927078 1939892 1952707 1965521 1978336 1991150 2004960 2018771 2032582 2046392 2060202 2074013 2087824 2101634 2115444 2129255 2144206 2159157 2174108 2189059 2204010 2218962 2233913 2248864 2263815 2278766 2294767 2310768 2326769 2342770 2358770 2374771 2390772 2406773 2422774 2438775 2457911 2477046 2496182 2515317 2534453 2553589 2572724 2591860 2610995 2630131 2636384 2642636 2648889 2655141 2661394 2667647 2673899 2680152 2686404 2692657 2699237 2705817 2712396 2718976 2725556 2732136 2738716 2745295 2751875 2758455 2765394 2772333 2779272 2786211 2793150 2800088 2807027 2813966 2820905 2827844 2835190 2842537 2849883 2857229 2864576 2871922 2879268 2886614 2893961 2901307 2909125 2916944 2924762 2932581 2940399 2948217 2956036 2963854 2971673 2979491 2987864 2996236 3004609 3012982 3021354 3029727 3038100 3046473 3054845 3063218 6990886 10918553 14846221 18773888 22701556 +Croatia 1227886 1227886 1227886 1227886 1227886 1227886 1227886 1227886 1227886 1227886 1227886 1230802 1233718 1236635 1239551 1242467 1245383 1248299 1251216 1254132 1257048 1265605 1274162 1282719 1291276 1299834 1308391 1316948 1325505 1334062 1342619 1354957 1367294 1379632 1391969 1404307 1416645 1428982 1441320 1453657 1465995 1479466 1492938 1506409 1519881 1533352 1546823 1560295 1573766 1587238 1600709 1615437 1630165 1644893 1659621 1674350 1689078 1703806 1718534 1733262 1747990 1764073 1780157 1796240 1812323 1828406 1844490 1860573 1876656 1892740 1908823 1926284 1943745 1961207 1978668 1996129 2013590 2031051 2048513 2065974 2083435 2102482 2121528 2140575 2159622 2178668 2197715 2216762 2235809 2254855 2273902 2294824 2315746 2336669 2357591 2378513 2399435 2420357 2441280 2462202 2483124 2505887 2528651 2551414 2574178 2596941 2619704 2642468 2665231 2687995 2710758 2735674 2760590 2785505 2810421 2835337 2860253 2885169 2910084 2935000 2959916 2987115 3014315 3041514 3068713 3095912 3123112 3150311 3177510 3204710 3231909 3261608 3291306 3321005 3350703 3380402 3410101 3439799 3469498 3499196 3528895 3561035 3593175 3625315 3657455 3689595 3721735 3753875 3786015 3818155 3850295 3853888 3857480 3861073 3864666 3868258 3871851 3875444 3879037 3882629 3886222 3889867 3893513 3897158 3900803 3904448 3908094 3911739 3915384 3919030 3922675 3926319 3929964 3933608 3937253 3940897 3944541 3948186 3951830 3955475 3959119 3962721 3966322 3969924 3973526 3977128 3980729 3984331 3987933 3991534 3995136 3998664 4002192 4005721 4009249 4012777 4016305 4019833 4023362 4026890 4030418 4033854 4037289 4040725 4044160 4047596 4051032 4054467 4057903 4061338 4064774 4099883 4134991 4170100 4205208 4240317 +Cuba 345043 357556 370070 382583 395096 407610 420123 432636 445149 457663 470176 483925 497674 511422 525171 538920 552669 566418 580166 593915 607664 624179 640694 657208 673723 690238 706753 723268 739782 756297 772812 793087 813363 833638 853913 874188 894464 914739 935014 955290 975565 996174 1016782 1037390 1057999 1078608 1099216 1119824 1140433 1161042 1181650 1195885 1210120 1224355 1238590 1252825 1267060 1281295 1295530 1309765 1324000 1334067 1344134 1354202 1364269 1374336 1384403 1394470 1404538 1414605 1424672 1437713 1450754 1463795 1476836 1489876 1502917 1515958 1528999 1542040 1555081 1565400 1575720 1586039 1596358 1606678 1616997 1627316 1637635 1647955 1658274 1668669 1679065 1689460 1699855 1710250 1720646 1731041 1741436 1751832 1762227 1812860 1863493 1914126 1964759 2015392 2066026 2116659 2167292 2217925 2268558 2348414 2428270 2508125 2587981 2667837 2747693 2827549 2907404 2987260 3067116 3152287 3237458 3322629 3407800 3492972 3578143 3663314 3748485 3833656 3918827 3994175 4069522 4144870 4220217 4295565 4370913 4446260 4521608 4596955 4672303 4797072 4921842 5046611 5171381 5296150 5420919 5545689 5670458 5795228 5919997 5933126 5946256 5959385 5972514 5985644 5998773 6011902 6025031 6038161 6051290 6064164 6077038 6089912 6102786 6115660 6128535 6141409 6154283 6167157 6180031 6192480 6204930 6217379 6229828 6242278 6254727 6267176 6279625 6292075 6304524 6316489 6328454 6340419 6352384 6364348 6376313 6388278 6400243 6412208 6424173 6435703 6447232 6458762 6470292 6481822 6493351 6504881 6516411 6527940 6539470 6550732 6561993 6573255 6584516 6595778 6607040 6618301 6629563 6640824 6652086 7599581 8547076 9494572 10442067 11389562 +Cyprus 184392 184412 184432 184451 184471 184491 184511 184531 184550 184570 184590 184610 184630 184649 184669 184689 184709 184729 184748 184768 184788 184808 184828 184847 184867 184887 184907 184927 184946 184966 184986 185006 185026 185045 185065 185085 185105 185125 185144 185164 185184 185204 185224 185244 185264 185284 185303 185323 185343 185363 185383 185412 185442 185471 185501 185530 185559 185589 185618 185648 185677 185706 185736 185765 185795 185824 185853 185883 185912 185942 185971 186366 186760 187154 187549 187944 188338 188732 189127 189522 189916 191656 193397 195138 196878 198618 200359 202100 203840 205580 207321 210115 212908 215702 218495 221289 224083 226876 229670 232463 235257 238815 242373 245931 249489 253046 256604 260162 263720 267278 270836 274567 278298 282030 285761 289492 293223 296954 300686 304417 308148 311863 315578 319292 323007 326722 330437 334152 337866 341581 345296 351512 357727 363943 370159 376374 382590 388806 395022 401237 407453 416109 424765 433421 442077 450734 459390 468046 476702 485358 494014 494650 495287 495923 496560 497196 497832 498469 499105 499742 500378 501003 501628 502253 502878 503502 504127 504752 505377 506002 506627 507308 507989 508669 509350 510031 510712 511393 512073 512754 513435 514210 514985 515761 516536 517311 518086 518861 519637 520412 521187 522065 522944 523822 524701 525579 526457 527336 528214 529093 529971 530930 531890 532850 533809 534768 535728 536688 537647 538606 539566 664713 789860 915006 1040153 1165300 +Denmark 1062514 1067077 1071640 1076204 1080767 1085330 1089893 1094456 1099020 1103583 1108146 1115106 1122067 1129027 1135987 1142948 1149908 1156868 1163828 1170789 1177749 1186446 1195142 1203838 1212535 1221232 1229928 1238624 1247321 1256018 1264714 1275066 1285419 1295771 1306124 1316476 1326828 1337181 1347533 1357886 1368238 1382533 1396828 1411124 1425419 1439714 1454009 1468304 1482600 1496895 1511190 1529511 1547831 1566152 1584473 1602794 1621114 1639435 1657756 1676076 1694397 1713669 1732942 1752214 1771486 1790758 1810031 1829303 1848575 1867848 1887120 1906585 1926049 1945514 1964978 1984443 2003908 2023372 2042837 2062301 2081766 2102745 2123724 2144703 2165682 2186662 2207641 2228620 2249599 2270578 2291557 2318159 2344762 2371364 2397967 2424569 2451171 2477774 2504376 2530979 2557581 2589871 2622161 2654450 2686740 2719030 2751320 2783610 2815899 2848189 2880479 2916691 2952903 2989115 3025327 3061539 3097751 3133963 3170175 3206387 3242599 3272595 3302591 3332588 3362584 3392580 3422576 3452572 3482569 3512565 3542561 3571591 3600621 3629650 3658680 3687710 3716740 3745770 3774799 3803829 3832859 3876400 3919941 3963482 4007023 4050564 4094106 4137647 4181188 4224729 4268270 4272275 4276281 4280286 4284292 4288297 4292302 4296308 4300313 4304319 4308324 4312013 4315703 4319392 4323082 4326771 4330460 4334150 4337839 4341529 4345218 4348610 4352003 4355395 4358787 4362180 4365572 4368964 4372356 4375749 4379141 4382270 4385400 4388529 4391659 4394788 4397917 4401047 4404176 4407306 4410435 4413351 4416267 4419183 4422099 4425014 4427930 4430846 4433762 4436678 4439594 4442362 4445131 4447900 4450668 4453436 4456205 4458974 4461742 4464510 4467279 4707639 4948000 5188360 5428721 5669081 +Djibouti 22848 22848 22848 22848 22848 22848 22848 22848 22848 22848 22848 22895 22942 22990 23037 23084 23131 23178 23226 23273 23320 23458 23596 23733 23871 24009 24147 24285 24422 24560 24698 24895 25092 25290 25487 25684 25881 26078 26276 26473 26670 26883 27096 27308 27521 27734 27947 28160 28372 28585 28798 29025 29253 29480 29708 29935 30162 30390 30617 30845 31072 31317 31563 31808 32054 32299 32544 32790 33035 33281 33526 33789 34053 34316 34579 34842 35106 35369 35632 35896 36159 36443 36727 37011 37295 37578 37862 38146 38430 38714 38998 39306 39614 39922 40230 40538 40846 41154 41462 41770 42078 42409 42740 43071 43402 43734 44065 44396 44727 45058 45389 45748 46108 46468 46827 47186 47546 47906 48265 48624 48984 49375 49766 50157 50548 50939 51330 51721 52112 52503 52894 53316 53738 54161 54583 55005 55427 55849 56272 56694 57116 57604 58093 58582 59070 59558 60047 60536 61024 61512 62001 62132 62263 62393 62524 62655 62786 62917 63047 63178 63309 63453 63597 63741 63885 64028 64172 64316 64460 64604 64748 64900 65053 65206 65358 65510 65663 65816 65968 66120 66273 66433 66594 66754 66915 67075 67235 67396 67556 67717 67877 68049 68220 68392 68564 68736 68907 69079 69251 69422 69594 69784 69975 70165 70356 70546 70736 70927 71117 71308 71498 234771 398043 561316 724588 887861 +Ecuador 5e+05 5e+05 5e+05 5e+05 5e+05 5e+05 5e+05 5e+05 5e+05 5e+05 5e+05 502266 504531 506797 509062 511328 513594 515859 518125 520390 522656 529546 536436 543327 550217 557107 563997 570887 577778 584668 591558 602049 612541 623032 633524 644015 654506 664998 675489 685981 696472 707528 718583 729638 740694 751750 762805 773860 784916 795972 807027 818046 829064 840083 851101 862120 873139 884157 895176 906194 917213 928357 939500 950644 961787 972931 984075 995218 1006362 1017505 1028649 1041041 1053434 1065826 1078219 1090611 1103003 1115396 1127788 1140181 1152573 1166434 1180295 1194156 1208017 1221878 1235739 1249600 1263461 1277322 1291183 1307574 1323965 1340356 1356747 1373138 1389529 1405920 1422311 1438702 1455093 1477824 1500555 1523286 1546017 1568748 1591480 1614211 1636942 1659673 1682404 1701097 1719789 1738482 1757174 1775867 1794560 1813252 1831945 1850637 1869330 1886669 1904008 1921347 1938686 1956024 1973363 1990702 2008041 2025380 2042719 2096755 2150791 2204828 2258864 2312900 2366936 2420972 2475009 2529045 2583081 2671789 2760497 2849205 2937913 3026622 3115330 3204038 3292746 3381454 3470162 3479261 3488360 3497460 3506559 3515658 3524757 3533856 3542956 3552055 3561154 3570540 3579926 3589311 3598697 3608083 3617469 3626855 3636240 3645626 3655012 3664724 3674436 3684148 3693860 3703572 3713283 3722995 3732707 3742419 3752131 3762204 3772276 3782349 3792421 3802494 3812567 3822639 3832712 3842784 3852857 3863320 3873782 3884244 3894707 3905170 3915632 3926094 3936557 3947020 3957482 3968358 3979234 3990109 4000985 4011861 4022737 4033613 4044488 4055364 4066240 6481865 8897489 11313114 13728738 16144363 +Egypt 4243515 4241035 4238554 4236074 4233593 4231113 4228633 4226152 4223672 4221191 4218711 4228719 4238726 4248734 4258742 4268750 4278757 4288765 4298773 4308780 4318788 4353124 4387461 4421798 4456134 4490470 4524807 4559144 4593480 4627816 4662153 4713171 4764189 4815206 4866224 4917242 4968260 5019278 5070295 5121313 5172331 5228932 5285533 5342133 5398734 5455335 5511936 5568537 5625137 5681738 5738339 5798103 5857866 5917630 5977393 6037157 6096921 6156684 6216448 6276211 6335975 6406439 6476903 6547367 6617831 6688295 6758759 6829223 6899687 6970151 7040615 7126599 7212582 7298566 7384549 7470533 7556517 7642500 7728484 7814467 7900451 8001659 8102868 8204076 8305285 8406493 8507701 8608910 8710118 8811327 8912535 9027811 9143088 9258364 9373640 9488916 9604193 9719469 9834745 9950022 10065298 10194730 10324162 10453594 10583026 10712458 10841890 10971322 11100754 11230186 11359618 11533972 11708326 11882681 12057035 12231389 12405743 12580097 12754452 12928806 13103160 13322171 13541182 13760193 13979204 14198214 14417225 14636236 14855247 15074258 15293269 15548886 15804503 16060120 16315737 16571354 16826972 17082589 17338206 17593823 17849440 18154220 18458999 18763779 19068559 19373338 19678118 19982898 20287678 20592457 20897237 20945853 20994468 21043084 21091699 21140315 21188931 21237546 21286162 21334777 21383393 21435502 21487610 21539718 21591827 21643936 21696044 21748152 21800261 21852370 21904478 21959870 22015263 22070655 22126048 22181440 22236832 22292225 22347617 22403010 22458402 22516865 22575329 22633792 22692255 22750718 22809182 22867645 22926108 22984572 23043035 23104353 23165671 23226989 23288307 23349626 23410944 23472262 23533580 23594898 23656216 23720169 23784122 23848075 23912028 23975981 24039934 24103887 24167840 24231793 24295746 37738214 51180681 64623149 78065616 91508084 +El Salvador 248000 248000 248000 248000 248000 248000 248000 248000 248000 248000 248000 248882 249765 250647 251529 252412 253294 254176 255058 255941 256823 259463 262104 264744 267385 270025 272665 275306 277946 280587 283227 287150 291074 294997 298921 302844 306767 310691 314614 318538 322461 327120 331779 336439 341098 345757 350416 355075 359735 364394 369053 374762 380471 386181 391890 397599 403308 409017 414727 420436 426145 432944 439743 446543 453342 460141 466940 473739 480539 487338 494137 501933 509728 517524 525319 533115 540911 548706 556502 564297 572093 581103 590113 599124 608134 617144 626154 635164 644175 653185 662195 673449 684703 695956 707210 718464 729718 740972 752225 763479 774733 792021 809310 826598 843887 861175 878463 895752 913040 930329 947617 970019 992420 1014822 1037224 1059626 1082027 1104429 1126831 1149232 1171634 1199106 1226579 1254051 1281523 1308996 1336468 1363940 1391412 1418885 1446357 1480239 1514121 1548003 1581885 1615766 1649648 1683530 1717412 1751294 1785176 1826648 1868120 1909592 1951064 1992536 2034009 2075481 2116953 2158425 2199897 2203565 2207233 2210901 2214569 2218237 2221905 2225573 2229241 2232909 2236577 2240750 2244923 2249095 2253268 2257441 2261614 2265787 2269959 2274132 2278305 2282930 2287556 2292181 2296806 2301432 2306057 2310682 2315307 2319933 2324558 2329599 2334641 2339682 2344724 2349765 2354806 2359848 2364889 2369931 2374972 2380408 2385844 2391280 2396716 2402152 2407587 2413023 2418459 2423895 2429331 2435156 2440981 2446806 2452631 2458456 2464282 2470107 2475932 2481757 2487582 3215382 3943182 4670983 5398783 6126583 +Equatorial Guinea 80377 80377 80377 80377 80377 80377 80377 80377 80377 80377 80377 80448 80518 80589 80660 80730 80801 80872 80943 81013 81084 81286 81488 81690 81892 82094 82297 82499 82701 82903 83105 83385 83666 83946 84227 84507 84787 85068 85348 85629 85909 86199 86489 86778 87068 87358 87648 87938 88227 88517 88807 89113 89419 89725 90031 90337 90643 90949 91255 91561 91867 92184 92500 92816 93133 93450 93766 94082 94399 94716 95032 95359 95686 96012 96339 96666 96993 97320 97646 97973 98300 98638 98976 99314 99652 99990 100327 100665 101003 101341 101679 102029 102380 102730 103081 103431 103781 104132 104482 104833 105183 105545 105907 106269 106631 106992 107354 107716 108078 108440 108802 109289 109775 110262 110749 111236 111722 112209 112696 113182 113669 118005 122342 126678 131014 135350 139687 144023 148359 152696 157032 158428 159823 161219 162615 164010 165406 166802 168198 169593 170989 176444 181898 187353 192808 198262 203717 209172 214627 220081 225536 225988 226440 226892 227344 227796 228249 228701 229153 229605 230057 230327 230597 230867 231137 231407 231677 231947 232217 232487 232757 232932 233108 233284 233459 233634 233810 233986 234161 234336 234512 234660 234808 234956 235104 235252 235401 235549 235697 235845 235993 236161 236330 236498 236666 236834 237003 237171 237339 237508 237676 237891 238106 238321 238536 238751 238966 239181 239396 239611 239826 360873 481920 602966 724013 845060 +Eritrea 205010 205010 205010 205010 205010 205010 205010 205010 205010 205010 205010 205753 206496 207239 207982 208725 209468 210211 210954 211697 212440 214666 216893 219119 221345 223572 225798 228024 230250 232477 234703 238017 241330 244644 247957 251271 254585 257898 261212 264525 267839 271620 275402 279184 282965 286746 290528 294310 298091 301872 305654 309964 314274 318583 322893 327203 331513 335823 340132 344442 348752 353670 358587 363504 368422 373340 378257 383174 388092 393010 397927 403488 409049 414609 420170 425731 431292 436853 442413 447974 453535 459867 466199 472531 478863 485194 491526 497858 504190 510522 516854 524142 531430 538717 546005 553293 560581 567869 575156 582444 589732 598000 606269 614538 622806 631074 639343 647612 655880 664148 672417 681893 691370 700846 710323 719799 729275 738752 748228 757705 767181 778012 788844 799675 810507 821338 832169 843001 853832 864664 875495 887856 900216 912577 924937 937298 949659 962019 974380 986740 999101 1013406 1027711 1042016 1056321 1070626 1084930 1099235 1113540 1127845 1142150 1144201 1146252 1148302 1150353 1152404 1154455 1156506 1158556 1160607 1162658 1164862 1167065 1169269 1171472 1173676 1175880 1178083 1180287 1182490 1184694 1187039 1189383 1191728 1194073 1196418 1198762 1201107 1203452 1205796 1208141 1210617 1213094 1215570 1218047 1220523 1222999 1225476 1227952 1230429 1232905 1235507 1238109 1240711 1243313 1245916 1248518 1251120 1253722 1256324 1258926 1261650 1264375 1267100 1269824 1272548 1275273 1277998 1280722 1283446 1286171 2074495 2862819 3651143 4439467 5227791 +Estonia 334136 334136 334136 334136 334136 334136 334136 334136 334136 334136 334136 334965 335794 336623 337452 338282 339111 339940 340769 341598 342427 344864 347301 349739 352176 354613 357050 359487 361925 364362 366799 370323 373846 377370 380893 384417 387941 391464 394988 398511 402035 405897 409759 413621 417483 421346 425208 429070 432932 436794 440656 444883 449110 453336 457563 461790 466017 470244 474470 478697 482924 487556 492188 496821 501453 506085 510717 515349 519982 524614 529246 534292 539337 544383 549429 554474 559520 564566 569612 574657 579703 585226 590749 596273 601796 607319 612842 618365 623889 629412 634935 641025 647116 653206 659296 665386 671477 677567 683657 689748 695838 702487 709136 715784 722433 729082 735731 742380 749028 755677 762326 769637 776948 784260 791571 798882 806193 813504 820816 828127 835438 843464 851489 859514 867540 875566 883591 891616 899642 907668 915693 924490 933286 942082 950879 959676 968472 977268 986065 994862 1003658 1013392 1023126 1032860 1042594 1052328 1062062 1071796 1081530 1091264 1100998 1102223 1103448 1104673 1105898 1107122 1108347 1109572 1110797 1112022 1113247 1114447 1115647 1116846 1118046 1119246 1120446 1121646 1122845 1124045 1125245 1126411 1127577 1128743 1129909 1131076 1132242 1133408 1134574 1135740 1136906 1138037 1139168 1140299 1141430 1142562 1143693 1144824 1145955 1147086 1148217 1149319 1150421 1151523 1152625 1153728 1154830 1155932 1157034 1158136 1159238 1160325 1161411 1162498 1163585 1164672 1165758 1166845 1167932 1169018 1170105 1198596 1227086 1255577 1284067 1312558 +Ethiopia 2948990 2948990 2948990 2948990 2948990 2948990 2948990 2948990 2948990 2948990 2948990 2960436 2971883 2983329 2994775 3006222 3017668 3029114 3040560 3052007 3063453 3097893 3132333 3166773 3201213 3235654 3270094 3304534 3338974 3373414 3407854 3459449 3511044 3562639 3614234 3665830 3717425 3769020 3820615 3872210 3923805 3983212 4042618 4102025 4161431 4220838 4280245 4339651 4399058 4458464 4517871 4584844 4651816 4718789 4785761 4852734 4919707 4986679 5053652 5120624 5187597 5264493 5341389 5418286 5495182 5572078 5648974 5725870 5802767 5879663 5956559 6043989 6131419 6218849 6306279 6393709 6481139 6568569 6655999 6743429 6830859 6931012 7031164 7131317 7231469 7331622 7431775 7531927 7632080 7732232 7832385 7948464 8064544 8180623 8296703 8412782 8528861 8644941 8761020 8877100 8993179 9125634 9258088 9390542 9522997 9655452 9787906 9920360 10052815 10185270 10317724 10471567 10625410 10779253 10933096 11086939 11240782 11394625 11548468 11702311 11856154 12035657 12215159 12394662 12574165 12753668 12933170 13112673 13292176 13471678 13651181 13857860 14064540 14271220 14477899 14684578 14891258 15097938 15304617 15511296 15717976 15958982 16199988 16440993 16681999 16923005 17164011 17405017 17646022 17887028 18128034 18161922 18195811 18229699 18263588 18297476 18331364 18365253 18399141 18433030 18466918 18502190 18537461 18572733 18608004 18643276 18678548 18713819 18749091 18784362 18819634 18856094 18892555 18929016 18965476 19001936 19038397 19074858 19111318 19147778 19184239 19221812 19259386 19296960 19334533 19372106 19409680 19447254 19484827 19522400 19559974 19598703 19637432 19676161 19714890 19753620 19792349 19831078 19869807 19908536 19947265 19987318 20027371 20067423 20107476 20147529 20187582 20227635 20267687 20307740 20347793 36156384 51964976 67773567 83582159 99390750 +Fiji 130533 130748 130963 131178 131393 131608 131822 132037 132252 132467 132682 132900 133118 133335 133553 133771 133989 134207 134424 134642 134860 135081 135303 135524 135746 135967 136188 136410 136631 136853 137074 137211 137348 137486 137623 137760 137897 138034 138172 138309 138446 138308 138169 138031 137893 137754 137616 137478 137340 137201 137063 136728 136393 136058 135723 135388 135053 134718 134383 134048 133713 133391 133069 132746 132424 132102 131780 131458 131135 130813 130491 130127 129763 129399 129035 128670 128306 127942 127578 127214 126850 126371 125891 125412 124932 124453 123974 123494 123015 122535 122056 122041 122026 122011 121996 121982 121967 121952 121937 121922 121907 123499 125091 126683 128275 129866 131458 133050 134642 136234 137826 139571 141316 143061 144806 146551 148296 150041 151786 153531 155276 157802 160327 162853 165379 167904 170430 172956 175482 178007 180533 184573 188613 192653 196693 200733 204773 208813 212853 216893 220933 227739 234545 241351 248157 254963 261769 268575 275381 282187 288993 289714 290436 291157 291878 292600 293321 294042 294763 295485 296206 297067 297927 298788 299649 300510 301370 302231 303092 303952 304813 305767 306721 307675 308629 309582 310536 311490 312444 313398 314352 315365 316378 317390 318403 319416 320429 321442 322454 323467 324480 325530 326579 327629 328678 329728 330778 331827 332877 333926 334976 336053 337130 338207 339284 340361 341438 342515 343592 344669 345746 455026 564306 673585 782865 892145 +Finland 977662 986958 996255 1005551 1014847 1024144 1033440 1042736 1052032 1061329 1070625 1082643 1094661 1106680 1118698 1130716 1142734 1154752 1166771 1178789 1190807 1204517 1218227 1231936 1245646 1259356 1273066 1286776 1300485 1314195 1327905 1341838 1355772 1369705 1383638 1397572 1411505 1425438 1439371 1453305 1467238 1481295 1495352 1509410 1523467 1537524 1551581 1565638 1579696 1593753 1607810 1620454 1633099 1645743 1658388 1671032 1683676 1696321 1708965 1721610 1734254 1745575 1756897 1768218 1779540 1790861 1802182 1813504 1824825 1836147 1847468 1867479 1887490 1907501 1927512 1947522 1967533 1987544 2007555 2027566 2047577 2078654 2109730 2140807 2171884 2202960 2234037 2265114 2296191 2327267 2358344 2385848 2413353 2440858 2468362 2495866 2523371 2550876 2578380 2605884 2633389 2663094 2692799 2722505 2752210 2781915 2811620 2841325 2871031 2900736 2930441 2951473 2972505 2993538 3014570 3035602 3056634 3077666 3098699 3119731 3140763 3171737 3202711 3233686 3264660 3295634 3326608 3357582 3388557 3419531 3450505 3475078 3499650 3524223 3548796 3573368 3597941 3622514 3647087 3671659 3696232 3727439 3758645 3789852 3821059 3852266 3883472 3914679 3945886 3977092 4008299 4012438 4016577 4020716 4024855 4028994 4033133 4037272 4041411 4045550 4049689 4054233 4058777 4063321 4067865 4072410 4076954 4081498 4086042 4090586 4095130 4099852 4104575 4109297 4114019 4118742 4123464 4128186 4132908 4137631 4142353 4147074 4151794 4156515 4161235 4165956 4170677 4175397 4180118 4184838 4189559 4194145 4198732 4203318 4207905 4212491 4217077 4221664 4226250 4230837 4235423 4239792 4244160 4248528 4252897 4257266 4261634 4266002 4270371 4274740 4279108 4523978 4768848 5013717 5258587 5503457 +France 29355111 29448917 29542723 29636529 29730335 29824142 29917948 30011754 30105560 30199366 30293172 30418854 30544535 30670217 30795898 30921580 31047262 31172943 31298625 31424306 31549988 31712470 31874952 32037435 32199917 32362399 32524881 32687363 32849846 33012328 33174810 33342777 33510743 33678710 33846676 34014643 34182610 34350576 34518543 34686509 34854476 34996819 35139162 35281505 35423848 35566190 35708533 35850876 35993219 36135562 36277905 36396249 36514592 36632936 36751279 36869623 36987967 37106310 37224654 37342997 37461341 37532242 37603144 37674045 37744947 37815848 37886749 37957651 38028552 38099454 38170355 38254725 38339095 38423464 38507834 38592204 38676574 38760944 38845313 38929683 39014053 39114198 39214343 39314487 39414632 39514777 39614922 39715067 39815211 39915356 40015501 40076815 40138128 40199442 40260756 40322070 40383383 40444697 40506011 40567324 40628638 40695231 40761825 40828418 40895012 40961605 41028198 41094792 41161385 41227979 41294572 41072108 40849645 40627182 40404718 40182254 39959791 39737328 39514864 39292400 39069937 39329200 39588464 39847727 40106991 40366254 40625517 40884781 41144044 41403308 41662571 41589068 41515566 41442064 41368561 41295058 41221556 41148054 41074551 41001048 40927546 41022752 41117958 41213164 41308370 41403576 41498783 41593989 41689195 41784401 41879607 41898749 41917891 41937033 41956175 41975317 41994459 42013601 42032743 42051885 42071027 42100500 42129973 42159446 42188919 42218392 42247864 42277337 42306810 42336283 42365756 42401626 42437495 42473365 42509234 42545104 42580974 42616843 42652713 42688582 42724452 42763818 42803184 42842549 42881915 42921281 42960647 43000013 43039378 43078744 43118110 43159106 43200101 43241096 43282092 43323088 43364083 43405078 43446074 43487070 43528065 43569912 43611759 43653606 43695453 43737300 43779146 43820993 43862840 43904687 43946534 48036296 52126058 56215821 60305583 64395345 +Gabon 158227 158227 158227 158227 158227 158227 158227 158227 158227 158227 158227 158584 158940 159297 159654 160010 160367 160724 161081 161437 161794 162839 163883 164928 165973 167018 168062 169107 170152 171196 172241 173742 175244 176746 178247 179748 181250 182752 184253 185754 187256 188888 190521 192153 193786 195418 197050 198683 200315 201948 203580 205393 207206 209019 210832 212646 214459 216272 218085 219898 221711 223686 225660 227635 229609 231584 233559 235533 237508 239482 241457 243596 245734 247873 250012 252150 254289 256428 258567 260705 262844 265171 267497 269824 272151 274478 276804 279131 281458 283784 286111 288659 291207 293754 296302 298850 301398 303946 306493 309041 311589 314354 317119 319884 322649 325414 328180 330945 333710 336475 339240 342238 345236 348234 351232 354230 357227 360225 363223 366221 369219 372438 375656 378875 382093 385312 388531 391749 394968 398186 401405 404904 408404 411903 415402 418902 422401 425900 429399 432899 436398 440088 443778 447469 451159 454849 458539 462229 465920 469610 473300 473556 473813 474069 474326 474582 474838 475095 475351 475608 475864 476049 476233 476418 476603 476788 476972 477157 477342 477526 477711 477864 478016 478169 478321 478474 478627 478779 478932 479084 479237 479390 479543 479696 479849 480002 480156 480309 480462 480615 480768 480947 481126 481305 481484 481663 481842 482021 482200 482379 482558 482780 483002 483225 483447 483669 483891 484113 484336 484558 484780 732882 980985 1229087 1477190 1725292 +Gambia 103274 103274 103274 103274 103274 103274 103274 103274 103274 103274 103274 103480 103687 103893 104099 104306 104512 104718 104924 105131 105337 105939 106540 107142 107744 108346 108947 109549 110151 110752 111354 112213 113072 113931 114790 115650 116509 117368 118227 119086 119945 120870 121796 122721 123646 124572 125497 126422 127347 128273 129198 130196 131194 132191 133189 134187 135185 136183 137180 138178 139176 140251 141326 142400 143475 144550 145625 146700 147774 148849 149924 151076 152228 153381 154533 155685 156837 157989 159142 160294 161446 162686 163926 165166 166406 167646 168887 170127 171367 172607 173847 175190 176532 177875 179217 180560 181903 183245 184588 185930 187273 188715 190157 191599 193041 194482 195924 197366 198808 200250 201692 203248 204804 206361 207917 209473 211029 212585 214142 215698 217254 218930 220606 222282 223958 225634 227311 228987 230663 232339 234015 235820 237626 239431 241237 243042 244847 246653 248458 250264 252069 253999 255930 257860 259790 261720 263651 265581 267511 269442 271372 271507 271641 271776 271911 272046 272180 272315 272450 272584 272719 273124 273529 273935 274340 274745 275150 275555 275961 276366 276771 277444 278117 278790 279463 280136 280810 281483 282156 282829 283502 284423 285344 286265 287186 288108 289029 289950 290871 291792 292713 293845 294977 296109 297241 298373 299505 300637 301769 302901 304033 305320 306608 307895 309182 310470 311757 313044 314331 315619 316906 651710 986513 1321317 1656120 1990924 +Georgia 1072178 1072178 1072178 1072178 1072178 1072178 1072178 1072178 1072178 1072178 1072178 1074835 1077491 1080148 1082804 1085461 1088118 1090774 1093431 1096087 1098744 1106553 1114362 1122170 1129979 1137788 1145597 1153406 1161214 1169023 1176832 1188120 1199409 1210698 1221986 1233274 1244563 1255852 1267140 1278428 1289717 1302088 1314460 1326831 1339203 1351574 1363945 1376317 1388688 1401060 1413431 1426933 1440435 1453937 1467439 1480940 1494442 1507944 1521446 1534948 1548450 1563242 1578033 1592825 1607617 1622408 1637200 1651992 1666784 1681575 1696367 1712473 1728579 1744685 1760791 1776897 1793003 1809109 1825215 1841321 1857427 1875051 1892674 1910298 1927922 1945546 1963169 1980793 1998417 2016040 2033664 2053091 2072517 2091944 2111370 2130797 2150224 2169650 2189077 2208503 2227930 2249130 2270331 2291532 2312732 2333932 2355133 2376334 2397534 2418734 2439935 2463260 2486585 2509910 2533235 2556560 2579884 2603209 2626534 2649859 2673184 2698826 2724468 2750110 2775752 2801394 2827035 2852677 2878319 2903961 2929603 2957705 2985806 3013908 3042009 3070111 3098213 3126314 3154416 3182517 3210619 3242258 3273896 3305534 3337173 3368812 3400450 3432088 3463727 3495366 3527004 3532773 3538543 3544312 3550082 3555851 3561620 3567390 3573159 3578929 3584698 3590860 3597023 3603185 3609347 3615510 3621672 3627834 3633996 3640159 3646321 3652702 3659083 3665464 3671845 3678226 3684608 3690989 3697370 3703751 3710132 3716600 3723068 3729535 3736003 3742471 3748939 3755407 3761874 3768342 3774810 3781275 3787741 3794206 3800672 3807137 3813602 3820068 3826533 3832999 3839464 3845882 3852301 3858719 3865137 3871556 3877974 3884392 3890810 3897229 3903647 3922880 3942113 3961346 3980579 3999812 +Germany 22886919 22986473 23086027 23185582 23285136 23384690 23484244 23583798 23683353 23782907 23882461 24044992 24207522 24370053 24532584 24695114 24857645 25020176 25182707 25345237 25507768 25758648 26009529 26260409 26511289 26762170 27013050 27263930 27514810 27765691 28016571 28316528 28616485 28916443 29216400 29516357 29816314 30116271 30416229 30716186 31016143 31280843 31545543 31810243 32074943 32339643 32604343 32869043 33133743 33398443 33663143 33935144 34207144 34479145 34751146 35023146 35295147 35567148 35839149 36111149 36383150 36715058 37046967 37378876 37710784 38042692 38374601 38706510 39038418 39370326 39702235 40089747 40477260 40864772 41252284 41639796 42027309 42414821 42802333 43189846 43577358 44040752 44504145 44967539 45430932 45894326 46357720 46821113 47284507 47747900 48211294 48919508 49627722 50335936 51044150 51752364 52460578 53168792 53877006 54585220 55293434 56170504 57047573 57924642 58801712 59678782 60555851 61432920 62309990 63187060 64064129 63885433 63706738 63528042 63349347 63170651 62991955 62813260 62634564 62455869 62277173 62693411 63109650 63525888 63942126 64358364 64774603 65190841 65607079 66023318 66439556 66920006 67400457 67880907 68361357 68841808 69322258 69802708 70283158 70763609 71244059 71098278 70952496 70806715 70660934 70515152 70369371 70223590 70077809 69932027 69786246 69818788 69851331 69883874 69916416 69948958 69981501 70014044 70046586 70079128 70111671 70142650 70173629 70204608 70235587 70266566 70297546 70328525 70359504 70390483 70421462 70451388 70481314 70511240 70541166 70571092 70601017 70630943 70660869 70690795 70720721 70750218 70779714 70809211 70838708 70868204 70897701 70927198 70956695 70986191 71015688 71045493 71075298 71105104 71134909 71164714 71194519 71224324 71254130 71283935 71313740 71344723 71375706 71406689 71437672 71468654 71499637 71530620 71561603 71592586 71623569 73436564 75249559 77062555 78875550 80688545 +Ghana 2016034 2016034 2016034 2016034 2016034 2016034 2016034 2016034 2016034 2016034 2016034 2013497 2010961 2008424 2005887 2003350 2000814 1998277 1995740 1993204 1990667 1983673 1976678 1969684 1962689 1955695 1948701 1941706 1934712 1927717 1920723 1911562 1902402 1893242 1884081 1874920 1865760 1856600 1847439 1838278 1829118 1820394 1811671 1802947 1794223 1785500 1776776 1768052 1759328 1750605 1741881 1733591 1725301 1717011 1708721 1700430 1692140 1683850 1675560 1667270 1658980 1655603 1652225 1648848 1645470 1642093 1638716 1635338 1631961 1628583 1625206 1630460 1635714 1640968 1646222 1651476 1656731 1661985 1667239 1672493 1677747 1688080 1698413 1708746 1719079 1729412 1739746 1750079 1760412 1770745 1781078 1792095 1803112 1814129 1825146 1836164 1847181 1858198 1869215 1880232 1891249 1902919 1914589 1926258 1937928 1949598 1961268 1972938 1984607 1996277 2007947 2049188 2090430 2131672 2172913 2214154 2255396 2296638 2337879 2379120 2420362 2486279 2552197 2618114 2684031 2749948 2815866 2881783 2947700 3013618 3079535 3163404 3247274 3331144 3415013 3498882 3582752 3666622 3750491 3834360 3918230 4024495 4130760 4237024 4343289 4449554 4555819 4662084 4768348 4874613 4980878 4989634 4998389 5007144 5015900 5024656 5033411 5042166 5050922 5059678 5068433 5080712 5092991 5105269 5117548 5129827 5142106 5154385 5166663 5178942 5191221 5206017 5220813 5235608 5250404 5265200 5279996 5294792 5309587 5324383 5339179 5355687 5372194 5388702 5405209 5421717 5438225 5454732 5471240 5487747 5504255 5521870 5539485 5557100 5574715 5592330 5609946 5627561 5645176 5662791 5680406 5698734 5717062 5735390 5753718 5772046 5790374 5808702 5827030 5845358 5863686 10172927 14482169 18791410 23100652 27409893 +Greece 2151155 2159105 2167056 2175006 2182957 2190907 2198857 2206808 2214758 2222709 2230659 2242366 2254073 2265779 2277486 2289193 2300900 2312607 2324313 2336020 2347727 2366740 2385753 2404766 2423779 2442792 2461805 2480818 2499831 2518844 2537857 2562233 2586609 2610986 2635362 2659738 2684114 2708490 2732867 2757243 2781619 2808314 2835009 2861705 2888400 2915095 2941790 2968485 2995181 3021876 3048571 3077042 3105513 3133983 3162454 3190925 3219396 3247867 3276337 3304808 3333279 3365457 3397634 3429812 3461990 3494168 3526345 3558523 3590701 3622878 3655056 3691984 3728911 3765839 3802767 3839694 3876622 3913550 3950478 3987405 4024333 4066012 4107691 4149371 4191050 4232729 4274408 4316087 4357767 4399446 4441125 4485283 4529441 4573599 4617757 4661916 4706074 4750232 4794390 4838548 4882706 4918623 4954540 4990456 5026373 5062290 5098207 5134124 5170040 5205957 5241874 5281708 5321542 5361376 5401210 5441044 5480879 5520713 5560547 5600381 5640215 5701514 5762813 5824111 5885410 5946709 6008008 6069307 6130605 6191904 6253203 6342806 6432409 6522013 6611616 6701219 6790822 6880425 6970029 7059632 7149235 7190912 7232588 7274265 7315942 7357618 7399295 7440972 7482649 7524325 7566002 7572930 7579857 7586784 7593712 7600640 7607567 7614494 7621422 7628350 7635277 7642352 7649426 7656500 7663575 7670650 7677724 7684798 7691873 7698948 7706022 7713366 7720709 7728052 7735396 7742740 7750083 7757426 7764770 7772114 7779457 7787114 7794771 7802429 7810086 7817743 7825400 7833057 7840715 7848372 7856029 7863967 7871905 7879843 7887781 7895719 7903657 7911595 7919533 7927471 7935409 7943512 7951616 7959719 7967823 7975926 7984029 7992133 8000236 8008340 8016443 8604078 9191713 9779347 10366982 10954617 +Grenada 29409 29409 29409 29409 29409 29409 29409 29409 29409 29409 29409 29438 29467 29496 29525 29554 29583 29612 29641 29670 29699 29782 29865 29948 30031 30114 30198 30281 30364 30447 30530 30646 30761 30877 30992 31108 31224 31339 31455 31570 31686 31758 31830 31901 31973 32045 32117 32189 32260 32332 32404 32521 32638 32755 32872 32990 33107 33224 33341 33458 33575 33918 34262 34605 34949 35292 35635 35979 36322 36666 37009 37582 38154 38726 39299 39872 40444 41016 41589 42162 42734 43639 44544 45449 46354 47260 48165 49070 49975 50880 51785 52767 53749 54731 55713 56695 57677 58659 59641 60623 61605 62126 62647 63168 63689 64210 64732 65253 65774 66295 66816 66781 66745 66710 66674 66639 66604 66568 66533 66497 66462 66663 66864 67066 67267 67468 67669 67870 68072 68273 68474 68716 68959 69202 69444 69686 69929 70172 70414 70656 70899 71477 72054 72632 73210 73788 74365 74943 75521 76098 76676 76671 76666 76661 76656 76651 76646 76641 76636 76631 76626 76677 76728 76779 76830 76880 76931 76982 77033 77084 77135 77232 77329 77425 77522 77619 77716 77813 77909 78006 78103 78236 78369 78502 78635 78768 78900 79033 79166 79299 79432 79592 79751 79911 80070 80230 80390 80549 80709 80868 81028 81205 81382 81559 81736 81912 82089 82266 82443 82620 82797 87603 92408 97214 102019 106825 +Guatemala 458965 465488 472010 478532 485055 491578 498100 504622 511145 517668 524190 531270 538349 545428 552508 559588 566667 573746 580826 587906 594985 602672 610359 618046 625733 633420 641107 648794 656481 664168 671855 680337 688819 697301 705783 714266 722748 731230 739712 748194 756676 766249 775823 785396 794970 804543 814116 823690 833263 842837 852410 863499 874588 885677 896766 907855 918944 930033 941122 952211 963300 974674 986048 997421 1008795 1020169 1031543 1042917 1054290 1065664 1077038 1087524 1098011 1108497 1118983 1129470 1139956 1150442 1160928 1171415 1181901 1192180 1202458 1212737 1223016 1233294 1243573 1253852 1264131 1274409 1284688 1296358 1308028 1319698 1331368 1343038 1354707 1366377 1378047 1389717 1401387 1416477 1431566 1446656 1461746 1476836 1491925 1507015 1522105 1537194 1552284 1569437 1586589 1603742 1620895 1638048 1655200 1672353 1689506 1706658 1723811 1743308 1762805 1782303 1801800 1821297 1840794 1860291 1879789 1899286 1918783 1964324 2009866 2055407 2100949 2146490 2192031 2237573 2283114 2328656 2374197 2451385 2528572 2605760 2682947 2760135 2837323 2914510 2991698 3068885 3146073 3155258 3164443 3173628 3182813 3191998 3201182 3210367 3219552 3228737 3237922 3247185 3256447 3265710 3274972 3284235 3293498 3302760 3312023 3321285 3330548 3339898 3349248 3358599 3367949 3377299 3386649 3395999 3405350 3414700 3424050 3433506 3442962 3452417 3461873 3471329 3480785 3490241 3499696 3509152 3518608 3528195 3537782 3547369 3556956 3566542 3576129 3585716 3595303 3604890 3614477 3624229 3633981 3643732 3653484 3663236 3672988 3682740 3692491 3702243 3711995 6238175 8764356 11290536 13816717 16342897 +Guinea 983959 983959 983959 983959 983959 983959 983959 983959 983959 983959 983959 986302 988644 990986 993329 995672 998014 1000356 1002699 1005042 1007384 1014258 1021133 1028007 1034882 1041756 1048630 1055505 1062379 1069254 1076128 1086041 1095954 1105866 1115779 1125692 1135605 1145518 1155430 1165343 1175256 1186082 1196908 1207734 1218560 1229386 1240213 1251039 1261865 1272691 1283517 1295297 1307077 1318858 1330638 1342418 1354198 1365978 1377759 1389539 1401319 1414180 1427042 1439903 1452764 1465626 1478487 1491348 1504209 1517071 1529932 1543892 1557852 1571811 1585771 1599731 1613691 1627651 1641610 1655570 1669530 1684754 1699978 1715202 1730426 1745650 1760873 1776097 1791321 1806545 1821769 1838489 1855210 1871930 1888650 1905370 1922091 1938811 1955531 1972252 1988972 2007159 2025347 2043534 2061722 2079909 2098096 2116284 2134471 2152659 2170846 2190782 2210718 2230654 2250590 2270526 2290463 2310399 2330335 2350271 2370207 2392040 2413874 2435707 2457541 2479374 2501207 2523041 2544874 2566708 2588541 2612386 2636230 2660075 2683919 2707764 2731609 2755453 2779298 2803142 2826987 2853653 2880320 2906986 2933653 2960319 2986985 3013652 3040318 3066985 3093651 3098441 3103230 3108020 3112810 3117600 3122389 3127179 3131969 3136758 3141548 3145947 3150346 3154745 3159144 3163542 3167941 3172340 3176739 3181138 3185537 3189794 3194052 3198310 3202567 3206824 3211082 3215340 3219597 3223854 3228112 3232420 3236729 3241037 3245346 3249654 3253962 3258271 3262579 3266888 3271196 3275691 3280185 3284680 3289174 3293669 3298164 3302658 3307153 3311647 3316142 3320899 3325656 3330413 3335170 3339926 3344683 3349440 3354197 3358954 3363711 5212687 7061663 8910638 10759614 12608590 +Guinea-Bissau 218167 218167 218167 218167 218167 218167 218167 218167 218167 218167 218167 218556 218945 219335 219724 220113 220502 220891 221281 221670 222059 223190 224321 225451 226582 227713 228844 229975 231105 232236 233367 234973 236578 238184 239790 241396 243001 244607 246213 247818 249424 251140 252856 254573 256289 258005 259721 261437 263154 264870 266586 268546 270506 272467 274427 276387 278347 280307 282268 284228 286188 288292 290395 292499 294602 296706 298810 300913 303017 305120 307224 309472 311721 313969 316218 318466 320714 322963 325211 327460 329708 332119 334531 336942 339353 341764 344176 346587 348998 351410 353821 356420 359018 361617 364215 366814 369413 372011 374610 377208 379807 382588 385370 388152 390933 393714 396496 399278 402059 404840 407622 410550 413479 416407 419336 422264 425192 428121 431049 433978 436906 439912 442918 445924 448930 451936 454943 457949 460955 463961 466967 470180 473393 476606 479819 483032 486245 489458 492671 495884 499097 502730 506363 509997 513630 517263 520896 524529 528163 531796 535429 536296 537164 538031 538899 539766 540633 541501 542368 543236 544103 544896 545689 546482 547275 548068 548860 549653 550446 551239 552032 552798 553563 554329 555094 555860 556626 557391 558157 558922 559688 560460 561232 562003 562775 563547 564319 565091 565862 566634 567406 568203 569000 569797 570594 571392 572189 572986 573783 574580 575377 576204 577031 577858 578685 579512 580340 581167 581994 582821 583648 835783 1087919 1340054 1592190 1844325 +Guyana 166034 166034 166034 166034 166034 166034 166034 166034 166034 166034 166034 166341 166648 166955 167262 167568 167875 168182 168489 168796 169103 169996 170888 171781 172674 173566 174459 175352 176245 177137 178030 179300 180569 181839 183108 184378 185648 186917 188187 189456 190726 192086 193446 194807 196167 197527 198887 200247 201608 202968 204328 205748 207167 208587 210006 211426 212846 214265 215685 217104 218524 220042 221560 223079 224597 226115 227633 229151 230670 232188 233706 235322 236938 238554 240170 241786 243402 245018 246634 248250 249866 251593 253320 255047 256774 258500 260227 261954 263681 265408 267135 268991 270846 272702 274557 276413 278269 280124 281980 283835 285691 287670 289648 291627 293605 295584 297563 299541 301520 303498 305477 307617 309756 311896 314036 316176 318315 320455 322595 324734 326874 329205 331536 333867 336198 338530 340861 343192 345523 347854 350185 352682 355180 357677 360175 362672 365169 367667 370164 372662 375159 378299 381440 384580 387720 390860 394001 397141 400281 403422 406562 407935 409308 410680 412053 413426 414799 416172 417544 418917 420290 421846 423402 424958 426514 428070 429626 431182 432738 434294 435850 437491 439132 440773 442414 444055 445696 447337 448978 450619 452260 453914 455569 457224 458878 460532 462187 463842 465496 467150 468805 470429 472052 473676 475299 476923 478547 480170 481794 483417 485041 486618 488195 489771 491348 492925 494502 496079 497655 499232 500809 554064 607319 660575 713830 767085 +Haiti 723000 723000 723000 723000 723000 723000 723000 723000 723000 723000 723000 724694 726389 728083 729777 731472 733166 734860 736554 738249 739943 744912 749881 754850 759819 764788 769758 774727 779696 784665 789634 796793 803951 811110 818268 825427 832586 839744 846903 854061 861220 869424 877628 885832 894036 902240 910444 918648 926852 935056 943260 953164 963067 972971 982875 992778 1002682 1012586 1022490 1032393 1042297 1053658 1065019 1076380 1087741 1099102 1110464 1121825 1133186 1144547 1155908 1168409 1180909 1193410 1205910 1218411 1230912 1243412 1255913 1268413 1280914 1294748 1308582 1322415 1336249 1350083 1363917 1377751 1391584 1405418 1419252 1435735 1452218 1468701 1485184 1501668 1518151 1534634 1551117 1567600 1584083 1608383 1632684 1656984 1681284 1705584 1729885 1754185 1778485 1802786 1827086 1858875 1890663 1922452 1954241 1986030 2017818 2049607 2081396 2113184 2144973 2175302 2205632 2235962 2266291 2296620 2326950 2357280 2387609 2417938 2448268 2481563 2514858 2548153 2581448 2614744 2648039 2681334 2714629 2747924 2781219 2825225 2869231 2913236 2957242 3001248 3045254 3089260 3133265 3177271 3221277 3226686 3232095 3237504 3242913 3248322 3253732 3259141 3264550 3269959 3275368 3280989 3286611 3292232 3297854 3303475 3309096 3314718 3320339 3325961 3331582 3337428 3343275 3349122 3354968 3360814 3366661 3372508 3378354 3384200 3390047 3396128 3402209 3408290 3414371 3420452 3426532 3432613 3438694 3444775 3450856 3457178 3463499 3469821 3476142 3482464 3488786 3495107 3501429 3507750 3514072 3520637 3527202 3533767 3540332 3546898 3553463 3560028 3566593 3573158 3579723 5005992 6432261 7858529 9284798 10711067 +Honduras 126118 126724 127331 127937 128544 129150 129756 130363 130969 131576 132182 133653 135123 136594 138065 139536 141006 142477 143948 145418 146889 151091 155292 159494 163695 167897 172099 176300 180502 184703 188905 195966 203026 210087 217147 224208 231269 238329 245390 252450 259511 266622 273733 280843 287954 295065 302176 309287 316397 323508 330619 335272 339925 344579 349232 353885 358538 363191 367845 372498 377151 380031 382910 385790 388669 391549 394429 397308 400188 403067 405947 409018 412090 415161 418232 421304 424375 427446 430517 433589 436660 439954 443248 446542 449836 453130 456424 459718 463012 466306 469600 474198 478796 483393 487991 492589 497187 501785 506382 510980 515578 526694 537810 548926 560042 571158 582275 593391 604507 615623 626739 637411 648083 658754 669426 680098 690770 701442 712113 722785 733457 756396 779336 802276 825215 848154 871094 894034 916973 939912 962852 982785 1002717 1022650 1042583 1062516 1082448 1102381 1122314 1142246 1162179 1194685 1227190 1259696 1292201 1324707 1357213 1389718 1422224 1454729 1487235 1491009 1494783 1498557 1502331 1506104 1509878 1513652 1517426 1521200 1524974 1529319 1533664 1538009 1542354 1546699 1551044 1555389 1559734 1564079 1568424 1573156 1577887 1582618 1587350 1592082 1596813 1601544 1606276 1611008 1615739 1620722 1625704 1630687 1635670 1640652 1645635 1650618 1655601 1660583 1665566 1670714 1675862 1681010 1686158 1691306 1696453 1701601 1706749 1711897 1717045 1722324 1727603 1732882 1738161 1743440 1748718 1753997 1759276 1764555 1769834 3030879 4291924 5552970 6814015 8075060 +Hungary 3499771 3531216 3562661 3594106 3625551 3656996 3688441 3719886 3751331 3782776 3814221 3846599 3878976 3911354 3943732 3976110 4008487 4040865 4073243 4105620 4137998 4170630 4203262 4235894 4268526 4301158 4333789 4366421 4399053 4431685 4464317 4498123 4531930 4565736 4599542 4633348 4667155 4700961 4734767 4768574 4802380 4838086 4873793 4909499 4945206 4980912 5016618 5052325 5088031 5123738 5159444 5196425 5233407 5270388 5307369 5344350 5381332 5418313 5455294 5492276 5529257 5566251 5603245 5640239 5677233 5714226 5751220 5788214 5825208 5862202 5899196 5934941 5970687 6006432 6042177 6077922 6113668 6149413 6185158 6220904 6256649 6294129 6331610 6369090 6406570 6444050 6481531 6519011 6556491 6593972 6631452 6679846 6728240 6776634 6825028 6873422 6921817 6970211 7018605 7066999 7115393 7167660 7219927 7272194 7324461 7376728 7428995 7481262 7533529 7585796 7638063 7669860 7701657 7733454 7765251 7797048 7828845 7860642 7892439 7924236 7956033 8023965 8091897 8159829 8227761 8295693 8363625 8431557 8499489 8567421 8635353 8698667 8761980 8825294 8888608 8951922 9015235 9078549 9141863 9205176 9268490 9275413 9282337 9289260 9296183 9303106 9310030 9316953 9323876 9330800 9337723 9351762 9365800 9379839 9393878 9407916 9421955 9435994 9450033 9464071 9478110 9489821 9501532 9513243 9524954 9536664 9548375 9560086 9571797 9583508 9595219 9604808 9614398 9623988 9633577 9643166 9652756 9662346 9671935 9681524 9691114 9698818 9706521 9714224 9721928 9729632 9737335 9745038 9752742 9760446 9768149 9774231 9780313 9786396 9792478 9798560 9804642 9810724 9816807 9822889 9828971 9833729 9838486 9843244 9848001 9852759 9857517 9862274 9867032 9871789 9876547 9872242 9867937 9863633 9859328 9855023 +Iceland 61428 61428 61428 61428 61428 61428 61428 61428 61428 61428 61428 61535 61642 61749 61856 61963 62070 62177 62284 62391 62498 62809 63119 63430 63740 64051 64362 64672 64983 65293 65604 66045 66485 66926 67366 67807 68248 68688 69129 69569 70010 70480 70950 71420 71890 72360 72831 73301 73771 74241 74711 75206 75701 76196 76691 77186 77682 78177 78672 79167 79662 80190 80718 81246 81774 82302 82829 83357 83885 84413 84941 85502 86062 86622 87183 87744 88304 88864 89425 89986 90546 91143 91740 92337 92934 93532 94129 94726 95323 95920 96517 97157 97796 98436 99075 99715 100355 100994 101634 102273 102913 103593 104273 104953 105633 106314 106994 107674 108354 109034 109714 110444 111174 111904 112634 113364 114093 114823 115553 116283 117013 117799 118585 119370 120156 120942 121728 122514 123299 124085 124871 125710 126548 127387 128225 129064 129903 130741 131580 132418 133257 134197 135137 136077 137017 137956 138896 139836 140776 141716 142656 142883 143110 143338 143565 143792 144019 144246 144474 144701 144928 145203 145479 145754 146029 146304 146580 146855 147130 147406 147681 147991 148301 148610 148920 149230 149540 149850 150159 150469 150779 151112 151445 151778 152111 152444 152778 153111 153444 153777 154110 154457 154805 155152 155500 155847 156194 156542 156889 157237 157584 157939 158294 158650 159005 159360 159715 160070 160426 160781 161136 194794 228452 262109 295767 329425 +India 168574895 168911487 169248080 169584672 169921265 170257857 170594449 170931042 171267634 171604227 171940819 172369308 172797797 173226286 173654775 174083264 174511753 174940242 175368731 175797220 176225709 176824592 177423475 178022357 178621240 179220123 179819006 180417889 181016771 181615654 182214537 182922923 183631309 184339695 185048081 185756467 186464853 187173239 187881625 188590011 189298397 190034323 190770248 191506174 192242099 192978025 193713951 194449876 195185802 195921727 196657653 197488518 198319383 199150248 199981113 200811978 201642842 202473707 203304572 204135437 204966302 205842177 206718051 207593926 208469801 209345676 210221550 211097425 211973300 212849174 213725049 214654582 215584115 216513647 217443180 218372713 219302246 220231779 221161311 222090844 223020377 224000298 224980218 225960139 226940060 227919980 228899901 229879822 230859743 231839663 232819584 233845020 234870456 235895893 236921329 237946765 238972201 239997637 241023074 242048510 243073946 244142672 245211397 246280123 247348848 248417574 249486300 250555025 251623751 252692476 253761202 255164612 256568022 257971432 259374842 260778252 262181661 263585071 264988481 266391891 267795301 269562855 271330409 273097962 274865516 276633070 278400624 280168178 281935731 283703285 285470839 289360989 293251138 297141288 301031437 304921587 308811737 312701886 316592036 320482185 324372335 329567622 334762909 339958196 345153483 350348770 355544057 360739344 365934631 371129918 376325205 376915789 377506372 378096956 378687540 379278124 379868707 380459291 381049875 381640458 382231042 382859514 383487985 384116457 384744928 385373400 386001872 386630343 387258815 387887286 388515758 389177952 389840146 390502339 391164533 391826727 392488921 393151115 393813308 394475502 395137696 395830518 396523340 397216162 397908984 398601806 399294627 399987449 400680271 401373093 402065915 402787343 403508771 404230199 404951627 405673056 406394484 407115912 407837340 408558768 409280196 410029327 410778457 411527588 412276718 413025849 413774980 414524110 415273241 416022371 416771502 595627307 774483112 953338917 1132194722 1311050527 +Indonesia 16108545 16151417 16194290 16237162 16280034 16322906 16365779 16408651 16451523 16494396 16537268 16607205 16677142 16747078 16817015 16886952 16956889 17026826 17096762 17166699 17236636 17358990 17481343 17603696 17726050 17848404 17970757 18093110 18215464 18337818 18460171 18619384 18778598 18937811 19097025 19256238 19415451 19574665 19733878 19893092 20052305 20244994 20437684 20630373 20823062 21015752 21208441 21401130 21593819 21786509 21979198 22202216 22425234 22648251 22871269 23094287 23317305 23540323 23763340 23986358 24209376 24494692 24780009 25065325 25350641 25635958 25921274 26206590 26491906 26777223 27062539 27377572 27692605 28007639 28322672 28637705 28952738 29267771 29582805 29897838 30212871 30566319 30919768 31273216 31626665 31980113 32333561 32687010 33040458 33393907 33747355 34188553 34629751 35070949 35512147 35953344 36394542 36835740 37276938 37718136 38159334 38620583 39081832 39543081 40004330 40465579 40926828 41388077 41849326 42310575 42771824 43223420 43675015 44126611 44578206 45029802 45481398 45932993 46384589 46836184 47287780 47899375 48510969 49122564 49734158 50345753 50957348 51568942 52180537 52792131 53403726 54245512 55087298 55929085 56770871 57612657 58454443 59296229 60138016 60979802 61821588 62593761 63365934 64138107 64910280 65682454 66454627 67226800 67998973 68771146 69543319 69675948 69808577 69941206 70073835 70206464 70339092 70471721 70604350 70736979 70869608 71013637 71157667 71301696 71445726 71589755 71733784 71877814 72021843 72165873 72309902 72465564 72621226 72776887 72932549 73088211 73243873 73399535 73555196 73710858 73866520 74033842 74201164 74368485 74535807 74703129 74870451 75037773 75205094 75372416 75539738 75718544 75897350 76076156 76254962 76433768 76612575 76791381 76970187 77148993 77327799 77517698 77707597 77897495 78087394 78277293 78467192 78657091 78846989 79036888 79226787 114894193 150561598 186229004 221896409 257563815 +Iran 6269721 6284131 6298541 6312951 6327361 6341770 6356180 6370590 6385000 6399410 6413820 6433289 6452758 6472226 6491695 6511164 6530633 6550102 6569570 6589039 6608508 6637470 6666432 6695395 6724357 6753319 6782281 6811243 6840206 6869168 6898130 6933356 6968582 7003808 7039034 7074260 7109487 7144713 7179939 7215165 7250391 7287416 7324441 7361466 7398491 7435516 7472541 7509566 7546591 7583616 7620641 7657199 7693757 7730314 7766872 7803430 7839988 7876546 7913103 7949661 7986219 8027341 8068463 8109586 8150708 8191830 8232952 8274074 8315197 8356319 8397441 8445678 8493915 8542151 8590388 8638625 8686862 8735099 8783335 8831572 8879809 8933706 8987604 9041501 9095398 9149296 9203193 9257090 9310987 9364885 9418782 9476212 9533642 9591073 9648503 9705933 9763363 9820793 9878224 9935654 9993084 10053843 10114601 10175360 10236118 10296877 10357636 10418394 10479153 10539911 10600670 10716477 10832284 10948091 11063898 11179704 11295511 11411318 11527125 11642932 11758739 11914382 12070025 12225668 12381311 12536954 12692598 12848241 13003884 13159527 13315170 13491415 13667659 13843904 14020149 14196394 14372638 14548883 14725128 14901372 15077617 15281782 15485946 15690111 15894275 16098440 16302605 16506769 16710934 16915098 17119263 17158994 17198726 17238458 17278189 17317920 17357652 17397384 17437115 17476846 17516578 17558256 17599934 17641611 17683289 17724967 17766645 17808323 17850000 17891678 17933356 17976910 18020464 18064018 18107572 18151126 18194680 18238234 18281788 18325342 18368896 18414267 18459638 18505009 18550380 18595750 18641121 18686492 18731863 18777234 18822605 18869744 18916884 18964023 19011162 19058302 19105441 19152580 19199719 19246859 19293998 19342868 19391738 19440608 19489478 19538348 19587219 19636089 19684959 19733829 19782699 31648014 43513328 55378643 67243957 79109272 +Iraq 1076920 1077722 1078524 1079326 1080128 1080930 1081733 1082535 1083337 1084139 1084941 1087700 1090460 1093220 1095979 1098738 1101498 1104258 1107017 1109776 1112536 1119059 1125582 1132106 1138629 1145152 1151675 1158198 1164722 1171245 1177768 1186776 1195784 1204792 1213800 1222808 1231816 1240824 1249832 1258840 1267848 1277545 1287242 1296939 1306636 1316333 1326030 1335727 1345424 1355121 1364818 1375158 1385499 1395839 1406180 1416520 1426860 1437201 1447541 1457882 1468222 1481259 1494296 1507333 1520370 1533407 1546444 1559481 1572518 1585555 1598592 1616278 1633963 1651649 1669335 1687020 1704706 1722392 1740078 1757763 1775449 1797160 1818871 1840582 1862293 1884004 1905715 1927426 1949137 1970848 1992559 2017139 2041719 2066299 2090879 2115459 2140039 2164619 2189199 2213779 2238359 2265834 2293308 2320782 2348257 2375732 2403206 2430680 2458155 2485630 2513104 2563529 2613953 2664378 2714802 2765227 2815652 2866076 2916501 2966925 3017350 3088496 3159642 3230788 3301934 3373080 3444227 3515373 3586519 3657665 3728811 3816733 3904654 3992576 4080498 4168420 4256341 4344263 4432185 4520106 4608028 4719144 4830261 4941377 5052493 5163610 5274726 5385842 5496958 5608075 5719191 5737423 5755654 5773886 5792117 5810349 5828581 5846812 5865044 5883275 5901507 5917858 5934208 5950558 5966909 5983260 5999610 6015960 6032311 6048662 6065012 6080124 6095236 6110347 6125459 6140571 6155683 6170795 6185906 6201018 6216130 6230560 6244991 6259422 6273852 6288282 6302713 6317144 6331574 6346004 6360435 6374657 6388879 6403101 6417323 6431545 6445767 6459989 6474211 6488433 6502655 6517054 6531452 6545851 6560249 6574648 6589047 6603445 6617844 6632242 6646641 12601992 18557343 24512693 30468044 36423395 +Ireland 4064749 4112442 4160134 4207827 4255520 4303212 4350905 4398598 4446291 4493983 4541676 4592752 4643827 4694903 4745978 4797054 4848130 4899205 4950281 5001356 5052432 5100908 5149384 5197860 5246336 5294812 5343288 5391764 5440240 5488716 5537192 5558667 5580142 5601616 5623091 5644566 5666041 5687516 5708990 5730465 5751940 5683870 5615800 5547730 5479660 5411590 5343519 5275449 5207379 5139309 5071239 4981533 4891827 4802120 4712414 4622708 4533002 4443296 4353589 4263883 4174177 4144308 4114440 4084572 4054703 4024834 3994966 3965098 3935229 3905360 3875492 3852106 3828720 3805335 3781949 3758563 3735177 3711791 3688406 3665020 3641634 3612411 3583188 3553965 3524742 3495519 3466296 3437073 3407850 3378627 3349404 3330847 3312290 3293734 3275177 3256620 3238063 3219506 3200950 3182393 3163836 3156785 3149733 3142682 3135630 3128579 3121528 3114476 3107425 3100373 3093322 3091187 3089052 3086916 3084781 3082646 3080511 3078376 3076240 3074105 3071970 3055493 3039015 3022538 3006060 2989583 2973106 2956628 2940151 2923673 2907196 2910104 2913012 2915921 2918829 2921737 2924645 2927553 2930462 2933370 2936278 2933960 2931641 2929322 2927004 2924686 2922367 2920048 2917730 2915412 2913093 2913912 2914730 2915548 2916367 2917186 2918004 2918822 2919641 2920460 2921278 2921572 2921867 2922161 2922456 2922750 2923044 2923339 2923633 2923928 2924222 2923936 2923650 2923363 2923077 2922791 2922505 2922219 2921932 2921646 2921360 2920499 2919637 2918776 2917915 2917054 2916192 2915331 2914470 2913608 2912747 2911378 2910009 2908639 2907270 2905901 2904532 2903163 2901793 2900424 2899055 2897311 2895566 2893822 2892078 2890334 2888589 2886845 2885101 2883356 2881612 3242983 3604353 3965724 4327094 4688465 +Israel 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 209954 210417 210881 211344 211807 212270 212734 213197 213660 214124 214587 216042 217498 218953 220409 221864 223319 224775 226230 227686 229141 231489 233837 236185 238533 240882 243230 245578 247926 250274 252622 255504 258386 261268 264150 267032 269913 272795 275677 278559 281441 284942 288442 291943 295444 298944 302445 305946 309447 312947 316448 320712 324975 329239 333502 337766 342030 346293 350557 354820 359084 364503 369921 375340 380758 386177 391596 397014 402433 407851 413270 415018 416765 418513 420261 422008 423756 425504 427252 428999 430747 444162 457578 470993 484408 497824 511239 524654 538069 551485 564900 596114 627329 658543 689757 720972 752186 783400 814614 845829 877043 915136 953229 991321 1029414 1067507 1105600 1143693 1181785 1219878 1257971 1267584 1277196 1286809 1296421 1306034 1315647 1325259 1334872 1344484 1354097 1363837 1373576 1383316 1393055 1402795 1412535 1422274 1432014 1441753 1451493 1460968 1470442 1479917 1489391 1498866 1508341 1517815 1527290 1536764 1546239 1555194 1564148 1573103 1582058 1591012 1599967 1608922 1617877 1626831 1635786 1644103 1652420 1660737 1669054 1677370 1685687 1694004 1702321 1710638 1718955 1726660 1734366 1742071 1749777 1757482 1765187 1772893 1780598 1788304 1796009 3049614 4303220 5556825 6810431 8064036 +Italy 18822234 18889178 18956122 19023066 19090010 19156954 19223898 19290842 19357786 19424730 19491674 19576667 19661661 19746654 19831648 19916641 20001634 20086628 20171621 20256615 20341608 20460414 20579220 20698026 20816832 20935638 21054443 21173249 21292055 21410861 21529667 21672367 21815067 21957767 22100467 22243167 22385867 22528567 22671267 22813967 22956667 23108819 23260972 23413124 23565276 23717428 23869581 24021733 24173885 24326038 24478190 24643162 24808133 24973104 25138076 25303048 25468019 25632990 25797962 25962934 26127905 26299648 26471391 26643134 26814877 26986620 27158362 27330105 27501848 27673591 27845334 28022954 28200574 28378193 28555813 28733433 28911053 29088673 29266292 29443912 29621532 29825891 30030251 30234610 30438969 30643328 30847688 31052047 31256406 31460766 31665125 31872246 32079367 32286488 32493609 32700730 32907851 33114972 33322093 33529214 33736335 34015603 34294871 34574140 34853408 35132676 35411944 35691212 35970481 36249749 36529017 36618337 36707658 36796978 36886298 36975618 37064939 37154259 37243579 37332900 37422220 37757104 38091988 38426873 38761757 39096641 39431525 39766409 40101294 40436178 40771062 41122436 41473809 41825183 42176556 42527930 42879304 43230677 43582051 43933424 44284798 44516178 44747559 44978939 45210320 45441700 45673080 45904461 46135841 46367222 46598602 46640156 46681709 46723262 46764816 46806370 46847923 46889476 46931030 46972584 47014137 47052583 47091029 47129476 47167922 47206368 47244814 47283260 47321707 47360153 47398599 47433608 47468617 47503626 47538635 47573644 47608653 47643662 47678671 47713680 47748689 47780297 47811904 47843512 47875120 47906728 47938335 47969943 48001551 48033158 48064766 48093374 48121982 48150590 48179198 48207806 48236415 48265023 48293631 48322239 48350847 48377249 48403651 48430052 48456454 48482856 48509258 48535660 48562061 48588463 48614865 50851429 53087993 55324557 57561121 59797685 +Jamaica 401000 401000 401000 401000 401000 401000 401000 401000 401000 401000 401000 400982 400965 400948 400930 400912 400895 400878 400860 400842 400825 400776 400726 400677 400628 400578 400529 400480 400431 400381 400332 400265 400199 400132 400066 399999 399932 399866 399799 399733 399666 400832 401999 403166 404332 405498 406665 407832 408998 410164 411331 414913 418495 422078 425660 429242 432824 436406 439989 443571 447153 452582 458011 463440 468869 474298 479728 485157 490586 496015 501444 507758 514072 520386 526700 533014 539327 545641 551955 558269 564583 571845 579106 586368 593629 600891 608153 615414 622676 629937 637199 645397 653595 661793 669991 678190 686388 694586 702784 710982 719180 728017 736854 745691 754528 763365 772202 781039 789876 798713 807550 812262 816973 821685 826397 831108 835820 840532 845244 849955 854667 870182 885697 901213 916728 932243 947758 963273 978789 994304 1009819 1029796 1049772 1069749 1089725 1109702 1129679 1149655 1169632 1189608 1209585 1228916 1248247 1267578 1286909 1306240 1325572 1344903 1364234 1383565 1402896 1406292 1409687 1413082 1416478 1419874 1423269 1426664 1430060 1433456 1436851 1440002 1443153 1446304 1449455 1452606 1455757 1458908 1462059 1465210 1468361 1471188 1474015 1476841 1479668 1482495 1485322 1488149 1490975 1493802 1496629 1499097 1501566 1504034 1506502 1508970 1511439 1513907 1516375 1518844 1521312 1523433 1525554 1527675 1529796 1531918 1534039 1536160 1538281 1540402 1542523 1544356 1546190 1548024 1549857 1551690 1553524 1555358 1557191 1559024 1560858 1807353 2053849 2300344 2546840 2793335 +Japan 30294378 30329530 30364683 30399836 30434988 30470140 30505293 30540446 30575598 30610750 30645903 30680627 30715352 30750076 30784801 30819525 30854249 30888974 30923698 30958423 30993147 31026878 31060609 31094339 31128070 31161801 31195532 31229263 31262993 31296724 31330455 31363788 31397121 31430453 31463786 31497119 31530452 31563785 31597117 31630450 31663783 31719723 31775663 31831603 31887543 31943484 31999424 32055364 32111304 32167244 32223184 32318556 32413927 32509299 32604670 32700042 32795414 32890785 32986157 33081528 33176900 33323012 33469124 33615236 33761348 33907460 34053573 34199685 34345797 34491909 34638021 34856866 35075711 35294555 35513400 35732245 35951090 36169935 36388779 36607624 36826469 37131696 37436922 37742148 38047375 38352602 38657828 38963054 39268281 39573508 39878734 40294887 40711040 41127193 41543346 41959498 42375651 42791804 43207957 43624110 44040263 44567722 45095180 45622638 46150097 46677556 47205014 47732472 48259931 48787390 49314848 49937957 50561066 51184175 51807284 52430392 53053501 53676610 54299719 54922828 55545937 56377696 57209454 58041213 58872972 59704730 60536489 61368248 62200007 63031765 63863524 64748090 65632656 66517222 67401788 68286354 69170921 70055487 70940053 71824619 72709185 73658214 74607242 75556270 76505299 77454328 78403356 79352384 80301413 81250442 82199470 82358968 82518466 82677965 82837463 82996961 83156459 83315957 83475456 83634954 83794452 83932498 84070543 84208589 84346635 84484680 84622726 84760772 84898818 85036863 85174909 85295218 85415528 85535838 85656147 85776456 85896766 86017076 86137385 86257694 86378004 86484078 86590153 86696227 86802301 86908376 87014450 87120524 87226598 87332673 87438747 87533872 87628996 87724121 87819246 87914370 88009495 88104620 88199745 88294869 88389994 88477244 88564493 88651742 88738992 88826242 88913491 89000740 89087990 89175240 89262489 96724687 104186886 111649084 119111283 126573481 +Jordan 217000 217000 217000 217000 217000 217000 217000 217000 217000 217000 217000 217235 217470 217704 217939 218174 218409 218644 218878 219113 219348 220022 220696 221370 222044 222718 223391 224065 224739 225413 226087 227027 227966 228906 229846 230786 231725 232665 233605 234544 235484 236463 237441 238420 239398 240377 241356 242334 243313 244291 245270 246147 247025 247902 248780 249657 250534 251412 252289 253167 254044 255107 256171 257234 258298 259361 260424 261488 262551 263615 264678 266066 267455 268843 270231 271620 273008 274396 275784 277173 278561 280182 281802 283422 285043 286664 288284 289904 291525 293146 294766 296488 298211 299933 301656 303378 305100 306823 308545 310268 311990 313807 315623 317440 319257 321074 322890 324707 326524 328340 330157 332305 334453 336601 338749 340898 343046 345194 347342 349490 351638 354142 356646 359150 361654 364158 366661 369165 371669 374173 376677 379359 382042 384724 387406 390088 392771 395453 398135 400818 403500 408036 412572 417108 421644 426180 430717 435253 439789 444325 448861 454286 459712 465138 470563 475988 481414 486840 492265 497690 503116 507017 510917 514818 518719 522620 526520 530421 534322 538222 542123 545399 548676 551952 555229 558505 561781 565058 568334 571611 574887 578200 581513 584826 588139 591452 594765 598078 601391 604704 608017 611788 615558 619329 623100 626870 630641 634412 638183 641953 645724 650122 654520 658918 663316 667714 672113 676511 680909 685307 689705 2070673 3451642 4832610 6213579 7594547 +Kazakhstan 2041282 2041282 2041282 2041282 2041282 2041282 2041282 2041282 2041282 2041282 2041282 2046332 2051382 2056432 2061482 2066532 2071582 2076632 2081682 2086732 2091782 2106625 2121468 2136311 2151154 2165998 2180841 2195684 2210527 2225370 2240213 2261668 2283123 2304578 2326033 2347488 2368944 2390399 2411854 2433309 2454764 2478274 2501784 2525294 2548804 2572314 2595823 2619333 2642843 2666353 2689863 2715477 2741092 2766706 2792321 2817935 2843549 2869164 2894778 2920393 2946007 2974060 3002114 3030168 3058221 3086274 3114328 3142382 3170435 3198488 3226542 3257080 3287618 3318155 3348693 3379231 3409769 3440307 3470844 3501382 3531920 3565326 3598733 3632139 3665545 3698952 3732358 3765764 3799170 3832577 3865983 3902797 3939610 3976424 4013237 4050051 4086865 4123678 4160492 4197305 4234119 4274283 4314447 4354611 4394775 4434940 4475104 4515268 4555432 4595596 4635760 4679960 4724160 4768360 4812560 4856760 4900960 4945160 4989360 5033560 5077760 5126391 5175022 5223653 5272284 5320916 5369547 5418178 5466809 5515440 5564071 5617360 5670648 5723936 5777225 5830514 5883802 5937090 5990379 6043668 6096956 6157560 6218164 6278768 6339372 6399976 6460580 6521184 6581788 6642392 6702996 6715812 6728628 6741445 6754261 6767077 6779893 6792709 6805526 6818342 6831158 6852203 6873247 6894292 6915337 6936382 6957426 6978471 6999516 7020560 7041605 7068995 7096385 7123776 7151166 7178556 7205946 7233336 7260727 7288117 7315507 7347633 7379759 7411884 7444010 7476136 7508262 7540388 7572513 7604639 7636765 7672289 7707812 7743336 7778860 7814384 7849907 7885431 7920955 7956478 7992002 8029869 8067736 8105604 8143471 8181338 8219205 8257072 8294940 8332807 8370674 10221584 12072495 13923405 15774316 17625226 +Kenya 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2574000 2575105 2576210 2577316 2578421 2579526 2580631 2581736 2582842 2583947 2585052 2586157 2587263 2588368 2589473 2590578 2591684 2592789 2593894 2595000 2596105 2597210 2598315 2599421 2600526 2601631 2602736 2603841 2604947 2606052 2607157 2608262 2609368 2610473 2611578 2612684 2613789 2614894 2615999 2617105 2618210 2619315 2620420 2621526 2622631 2623736 2624841 2625946 2627052 2628157 2629262 2630367 2631473 2632578 2633683 2634788 2635894 2636999 2638104 2639210 2640315 2641052 2641789 2642525 2643262 2643999 2644736 2645473 2646209 2646946 2647683 2690576 2733470 2776363 2819256 2862150 2905043 2947936 2990829 3033723 3076616 3186161 3295707 3405252 3514798 3624343 3733888 3843434 3952979 4062525 4172070 4362539 4553007 4743476 4933945 5124414 5314882 5505351 5695820 5886288 6076757 6093099 6109441 6125783 6142125 6158467 6174809 6191151 6207493 6223835 6240177 6257397 6274618 6291838 6309058 6326278 6343499 6360719 6377939 6395160 6412380 6430454 6448529 6466603 6484677 6502752 6520826 6538900 6556974 6575049 6593123 6612041 6630958 6649876 6668794 6687712 6706629 6725547 6744465 6763382 6782300 6802064 6821828 6841592 6861356 6881120 6900883 6920647 6940411 6960175 6979939 7000566 7021194 7041821 7062448 7083076 7103703 7124330 7144957 7165585 7186212 14959030 22731848 30504666 38277484 46050302 +Kiribati 17876 17876 17876 17876 17876 17876 17876 17876 17876 17876 17876 17890 17904 17917 17931 17945 17959 17973 17986 18000 18014 18053 18093 18132 18171 18210 18250 18289 18328 18368 18407 18461 18516 18570 18625 18679 18733 18788 18842 18897 18951 19007 19063 19119 19175 19231 19287 19343 19399 19455 19511 19647 19782 19918 20053 20189 20325 20460 20596 20731 20867 21009 21151 21293 21435 21577 21719 21861 22003 22145 22287 22435 22584 22732 22881 23029 23177 23326 23474 23623 23771 23926 24081 24237 24392 24547 24702 24857 25013 25168 25323 25486 25648 25810 25973 26136 26298 26460 26623 26786 26948 27118 27287 27457 27627 27796 27966 28136 28306 28475 28645 28792 28938 29085 29231 29378 29525 29671 29818 29964 30111 30200 30289 30378 30467 30556 30644 30733 30822 30911 31000 31092 31183 31275 31366 31458 31550 31641 31733 31824 31916 32029 32143 32256 32370 32483 32596 32710 32823 32937 33050 33108 33165 33223 33281 33338 33396 33454 33512 33569 33627 33693 33758 33824 33889 33955 34021 34086 34152 34217 34283 34355 34427 34499 34571 34644 34716 34788 34860 34932 35004 35081 35159 35236 35314 35391 35468 35546 35623 35701 35778 35860 35942 36024 36106 36188 36269 36351 36433 36515 36597 36683 36768 36854 36940 37026 37111 37197 37283 37368 37454 52448 67442 82435 97429 112423 +Kuwait 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81280 81253 81227 81200 81174 81147 81120 81094 81067 81041 81014 81107 81201 81294 81387 81480 81574 81667 81760 81854 81947 82264 82581 82897 83214 83531 83848 84165 84481 84798 85115 85570 86025 86479 86934 87389 87844 88299 88753 89208 89663 90144 90625 91106 91587 92068 92550 93031 93512 93993 94474 94980 95485 95991 96496 97002 97508 98013 98519 99024 99530 100445 101361 102276 103191 104106 105022 105937 106852 107768 108683 109887 111090 112294 113497 114701 115905 117108 118312 119515 120719 122056 123393 124730 126067 127404 128740 130077 131414 132751 134088 135904 137720 139537 141353 143169 144985 146801 148618 150434 152250 153388 154526 155665 156803 157941 159079 160217 161356 162494 163632 164631 165630 166629 167628 168627 169626 170625 171624 172623 173622 174456 175289 176122 176956 177790 178623 179456 180290 181124 181957 182642 183328 184013 184699 185384 186069 186755 187440 188126 188811 189409 190008 190606 191205 191803 192401 193000 193598 194197 194795 195414 196034 196653 197272 197892 198511 199130 199749 200369 200988 939213 1677439 2415664 3153890 3892115 +Latvia 590588 590588 590588 590588 590588 590588 590588 590588 590588 590588 590588 592055 593523 594990 596458 597925 599392 600860 602327 603795 605262 609576 613890 618203 622517 626831 631145 635459 639772 644086 648400 654637 660874 667111 673348 679586 685823 692060 698297 704534 710771 717608 724445 731282 738119 744956 751793 758630 765467 772304 779141 786662 794183 801704 809225 816746 824266 831787 839308 846829 854350 862597 870844 879090 887337 895584 903831 912078 920324 928571 936818 945806 954794 963782 972770 981758 990747 999735 1008723 1017711 1026699 1036543 1046387 1056231 1066075 1075919 1085763 1095607 1105451 1115295 1125139 1136000 1146860 1157721 1168582 1179442 1190303 1201164 1212025 1222885 1233746 1245609 1257473 1269336 1281199 1293062 1304926 1316789 1328652 1340516 1352379 1365410 1378440 1391471 1404502 1417532 1430563 1443594 1456625 1469655 1482686 1496948 1511211 1525473 1539735 1553998 1568260 1582522 1596784 1611047 1625309 1640943 1656577 1672212 1687846 1703480 1719114 1734748 1750383 1766017 1781651 1798386 1815121 1831856 1848591 1865326 1882060 1898795 1915530 1932265 1949000 1949583 1950166 1950749 1951332 1951914 1952497 1953080 1953663 1954246 1954829 1955858 1956886 1957914 1958943 1959972 1961000 1962028 1963057 1964086 1965114 1966505 1967897 1969288 1970680 1972071 1973462 1974854 1976245 1977637 1979028 1980711 1982394 1984077 1985760 1987444 1989127 1990810 1992493 1994176 1995859 1997774 1999689 2001604 2003519 2005434 2007349 2009264 2011179 2013094 2015009 2017108 2019206 2021305 2023404 2025502 2027601 2029700 2031799 2033897 2035996 2022897 2009799 1996700 1983602 1970503 +Lebanon 332000 332000 332000 332000 332000 332000 332000 332000 332000 332000 332000 332643 333285 333928 334571 335214 335856 336499 337142 337784 338427 340299 342171 344042 345914 347786 349658 351530 353401 355273 357145 359814 362482 365150 367819 370488 373156 375824 378493 381162 383830 386698 389566 392433 395301 398169 401037 403905 406772 409640 412508 415101 417694 420287 422880 425473 428066 430659 433252 435845 438438 441189 443939 446690 449441 452192 454942 457693 460444 463194 465945 468847 471748 474650 477551 480453 483355 486256 489158 492059 494961 498035 501109 504183 507257 510332 513406 516480 519554 522628 525702 528980 532258 535536 538814 542092 545369 548647 551925 555203 558481 561943 565405 568867 572329 575790 579252 582714 586176 589638 593100 603738 614376 625014 635652 646290 656927 667565 678203 688841 699479 716337 733195 750054 766912 783770 800628 817486 834345 851203 868061 888982 909903 930825 951746 972667 993588 1014509 1035431 1056352 1077273 1103008 1128742 1154476 1180211 1205946 1231680 1257414 1283149 1308884 1334618 1336978 1339338 1341699 1344059 1346419 1348779 1351139 1353500 1355860 1358220 1361670 1365121 1368572 1372022 1375472 1378923 1382374 1385824 1389274 1392725 1396937 1401149 1405361 1409573 1413785 1417997 1422209 1426421 1430633 1434845 1439556 1444268 1448980 1453691 1458402 1463114 1467826 1472537 1477248 1481960 1486975 1491990 1497005 1502020 1507036 1512051 1517066 1522081 1527096 1532111 1537303 1542496 1547688 1552880 1558072 1563265 1568457 1573649 1578842 1584034 2437376 3290718 4144059 4997401 5850743 +Lesotho 276361 276361 276361 276361 276361 276361 276361 276361 276361 276361 276361 276919 277478 278036 278595 279153 279711 280270 280828 281387 281945 283574 285203 286831 288460 290089 291718 293347 294975 296604 298233 300560 302887 305214 307541 309868 312195 314522 316849 319176 321503 324012 326520 329029 331537 334046 336555 339063 341572 344080 346589 349281 351973 354665 357357 360048 362740 365432 368124 370816 373508 376409 379310 382211 385112 388012 390913 393814 396715 399616 402517 405628 408738 411849 414960 418070 421181 424292 427403 430513 433624 436973 440323 443672 447022 450371 453720 457070 460419 463769 467118 470746 474374 478002 481630 485258 488886 492514 496142 499770 503398 507295 511193 515090 518988 522885 526782 530680 534577 538475 542372 546589 550806 555022 559239 563456 567673 571890 576106 580323 584540 589101 593662 598223 602784 607345 611906 616467 621028 625589 630150 635067 639984 644900 649817 654734 659651 664568 669484 674401 679318 684780 690243 695705 701168 706630 712092 717555 723017 728480 733942 734980 736018 737055 738093 739131 740169 741207 742244 743282 744320 745373 746426 747479 748532 749584 750637 751690 752743 753796 754849 755920 756992 758064 759135 760206 761278 762350 763421 764492 765564 766659 767754 768849 769944 771039 772134 773229 774324 775419 776514 777639 778763 779888 781012 782137 783262 784386 785511 786635 787760 788922 790083 791245 792407 793568 794730 795892 797054 798215 799377 1066506 1333635 1600764 1867893 2135022 +Liberia 313543 313543 313543 313543 313543 313543 313543 313543 313543 313543 313543 314237 314930 315624 316317 317011 317705 318398 319092 319785 320479 322509 324539 326568 328598 330628 332658 334688 336717 338747 340777 343691 346606 349520 352434 355348 358263 361177 364091 367006 369920 373084 376247 379411 382574 385738 388902 392065 395229 398392 401556 405109 408663 412216 415770 419323 422876 426430 429983 433537 437090 440958 444825 448693 452560 456428 460296 464163 468031 471898 475766 479953 484141 488328 492515 496702 500890 505077 509264 513452 517639 522192 526745 531298 535851 540404 544956 549509 554062 558615 563168 568150 573132 578114 583096 588078 593059 598041 603023 608005 612987 618391 623795 629199 634603 640007 645411 650815 656219 661623 667027 672858 678689 684521 690352 696183 702014 707845 713677 719508 725339 731542 737745 743948 750151 756354 762557 768760 774963 781166 787369 794102 800836 807570 814303 821036 827770 834504 841237 847970 854704 862236 869768 877301 884833 892365 899897 907429 914962 922494 930026 931348 932669 933990 935312 936634 937955 939276 940598 941920 943241 944703 946166 947628 949090 950552 952015 953477 954939 956402 957864 959467 961070 962674 964277 965880 967483 969086 970690 972293 973896 975638 977379 979121 980862 982604 984346 986087 987829 989570 991312 993187 995062 996938 998813 1000688 1002563 1004438 1006314 1008189 1010064 1012065 1014065 1016066 1018066 1020067 1022068 1024068 1026069 1028069 1030070 1724744 2419417 3114091 3808764 4503438 +Libya 531472 531798 532124 532449 532775 533101 533427 533753 534078 534404 534730 535686 536643 537600 538556 539512 540469 541426 542382 543338 544295 546443 548591 550739 552887 555036 557184 559332 561480 563628 565776 568670 571564 574458 577352 580246 583139 586033 588927 591821 594715 597757 600799 603841 606883 609925 612967 616009 619051 622093 625135 629137 633138 637140 641142 645144 649145 653147 657149 661150 665152 669400 673647 677894 682142 686390 690637 694884 699132 703380 707627 712123 716619 721116 725612 730108 734604 739100 743597 748093 752589 757358 762128 766897 771667 776436 781205 785975 790744 795514 800283 805358 810433 815508 820583 825658 830732 835807 840882 845957 851032 856408 861783 867159 872534 877910 883286 888661 894037 899412 904788 910137 915486 920836 926185 931534 936883 942232 947582 952931 958280 963182 968083 972985 977886 982788 987690 992591 997493 1002394 1007296 1012448 1017600 1022753 1027905 1033057 1038209 1043361 1048514 1053666 1058818 1064274 1069731 1075187 1080644 1086100 1091556 1097013 1102469 1107926 1113382 1115203 1117024 1118844 1120665 1122486 1124307 1126128 1127948 1129769 1131590 1133659 1135727 1137796 1139865 1141934 1144002 1146071 1148140 1150208 1152277 1154638 1156999 1159360 1161721 1164082 1166443 1168804 1171165 1173526 1175887 1178572 1181257 1183942 1186627 1189312 1191997 1194682 1197367 1200052 1202737 1205766 1208795 1211823 1214852 1217881 1220910 1223939 1226967 1229996 1233025 1236404 1239783 1243161 1246540 1249919 1253298 1256677 1260055 1263434 1266813 2269138 3271463 4273788 5276113 6278438 +Lithuania 778655 778655 778655 778655 778655 778655 778655 778655 778655 778655 778655 780588 782521 784455 786388 788321 790254 792187 794121 796054 797987 803670 809353 815036 820719 826402 832085 837768 843451 849134 854817 863033 871250 879466 887683 895899 904115 912332 920548 928765 936981 945987 954993 963999 973005 982012 991018 1000024 1009030 1018036 1027042 1036960 1046879 1056798 1066716 1076634 1086553 1096472 1106390 1116308 1126227 1137103 1147980 1158856 1169732 1180608 1191485 1202361 1213237 1224114 1234990 1246844 1258699 1270554 1282408 1294262 1306117 1317972 1329826 1341680 1353535 1366519 1379503 1392487 1405471 1418455 1431439 1444423 1457407 1470391 1483375 1497700 1512026 1526351 1540677 1555002 1569327 1583653 1597978 1612304 1626629 1642278 1657926 1673575 1689223 1704872 1720521 1736169 1751818 1767466 1783115 1800297 1817479 1834661 1851843 1869025 1886207 1903389 1920571 1937753 1954935 1973726 1992516 2011307 2030097 2048888 2067679 2086469 2105260 2124050 2142841 2163438 2184035 2204631 2225228 2245825 2266422 2287019 2307615 2328212 2348809 2370668 2392528 2414387 2436246 2458106 2479965 2501824 2523683 2545543 2567402 2567650 2567897 2568144 2568392 2568640 2568887 2569134 2569382 2569630 2569877 2570742 2571606 2572470 2573335 2574200 2575064 2575928 2576793 2577658 2578522 2579870 2581217 2582565 2583913 2585260 2586608 2587956 2589304 2590651 2591999 2593726 2595452 2597178 2598905 2600632 2602358 2604084 2605811 2607538 2609264 2611295 2613325 2615356 2617387 2619418 2621448 2623479 2625510 2627540 2629571 2631863 2634155 2636446 2638738 2641030 2643322 2645614 2647905 2650197 2652489 2697672 2742855 2788039 2833222 2878405 +Luxembourg 127030 127030 127030 127030 127030 127030 127030 127030 127030 127030 127030 127252 127473 127694 127916 128138 128359 128580 128802 129024 129245 129888 130531 131174 131817 132460 133104 133747 134390 135033 135676 136588 137501 138413 139325 140238 141150 142062 142974 143887 144799 145772 146746 147720 148693 149666 150640 151614 152587 153560 154534 155575 156616 157657 158698 159739 160780 161821 162862 163903 164944 166055 167166 168278 169389 170500 171611 172722 173834 174945 176056 177237 178418 179599 180780 181960 183141 184322 185503 186684 187865 189125 190384 191644 192903 194163 195423 196682 197942 199201 200461 201811 203162 204512 205863 207213 208563 209914 211264 212615 213965 215402 216840 218278 219715 221152 222590 224028 225465 226902 228340 229876 231413 232950 234486 236022 237559 239096 240632 242168 243705 245344 246982 248621 250259 251898 253537 255175 256814 258452 260091 261840 263588 265337 267086 268834 270583 272332 274081 275829 277578 279420 281263 283105 284947 286790 288632 290474 292316 294159 296001 296160 296318 296477 296636 296794 296953 297112 297271 297429 297588 297779 297970 298161 298352 298544 298735 298926 299117 299308 299499 299700 299900 300101 300301 300502 300703 300903 301104 301304 301505 301700 301894 302089 302284 302478 302673 302868 303063 303257 303452 303633 303815 303996 304177 304358 304540 304721 304902 305084 305265 305433 305601 305768 305936 306104 306272 306440 306607 306775 306943 358976 411010 463043 515077 567110 +Macedonia, FYR 391865 391865 391865 391865 391865 391865 391865 391865 391865 391865 391865 392796 393728 394659 395590 396522 397453 398384 399315 400247 401178 403911 406644 409376 412109 414842 417575 420308 423040 425773 428506 432446 436387 440327 444268 448208 452148 456089 460029 463970 467910 472213 476515 480818 485120 489423 493726 498028 502331 506633 510936 515742 520549 525355 530161 534968 539774 544580 549386 554193 558999 564257 569515 574774 580032 585290 590548 595806 601065 606323 611581 617301 623020 628740 634460 640180 645899 651619 657339 663058 668778 675029 681279 687530 693780 700031 706282 712532 718783 725033 731284 738162 745040 751918 758796 765674 772551 779429 786307 793185 800063 807560 815058 822555 830052 837550 845047 852544 860041 867539 875036 883199 891363 899526 907689 915852 924016 932179 940342 948506 956669 965466 974263 983060 991857 1000654 1009451 1018248 1027045 1035842 1044639 1054245 1063851 1073457 1083063 1092669 1102275 1111881 1121487 1131093 1140699 1152074 1163448 1174822 1186197 1197572 1208946 1220320 1231695 1243070 1254444 1258041 1261638 1265235 1268832 1272428 1276025 1279622 1283219 1286816 1290413 1293470 1296527 1299584 1302641 1305698 1308756 1311813 1314870 1317927 1320984 1323632 1326280 1328928 1331576 1334224 1336873 1339521 1342169 1344817 1347465 1349816 1352168 1354519 1356870 1359222 1361573 1363924 1366275 1368627 1370978 1373125 1375272 1377420 1379567 1381714 1383861 1386008 1388156 1390303 1392450 1394466 1396483 1398499 1400516 1402532 1404548 1406565 1408581 1410598 1412614 1545782 1678950 1812117 1945285 2078453 +Madagascar 1543133 1550030 1556928 1563825 1570722 1577620 1584517 1591414 1598311 1605209 1612106 1620390 1628675 1636959 1645244 1653528 1661812 1670097 1678381 1686666 1694950 1705784 1716618 1727453 1738287 1749121 1759955 1770789 1781624 1792458 1803292 1816016 1828741 1841465 1854190 1866914 1879638 1892363 1905087 1917812 1930536 1944158 1957781 1971403 1985025 1998648 2012270 2025892 2039514 2053137 2066759 2081187 2095615 2110043 2124471 2138899 2153327 2167755 2182183 2196611 2211039 2226474 2241909 2257345 2272780 2288215 2303650 2319085 2334521 2349956 2365391 2381829 2398267 2414705 2431143 2447582 2464020 2480458 2496896 2513334 2529772 2547344 2564916 2582488 2600060 2617632 2635203 2652775 2670347 2687919 2705491 2724378 2743264 2762150 2781037 2799924 2818810 2837696 2856583 2875470 2894356 2914503 2934650 2954798 2974945 2995092 3015239 3035386 3055534 3075681 3095828 3117507 3139185 3160864 3182543 3204222 3225900 3247579 3269258 3290936 3312615 3335990 3359364 3382738 3406113 3429488 3452862 3476236 3499611 3522986 3546360 3571384 3596408 3621432 3646456 3671480 3696503 3721527 3746551 3771575 3796599 3825294 3853990 3882686 3911381 3940076 3968772 3997468 4026163 4054858 4083554 4091981 4100409 4108836 4117263 4125690 4134118 4142545 4150972 4159400 4167827 4176656 4185486 4194315 4203144 4211974 4220803 4229632 4238461 4247291 4256120 4265332 4274544 4283756 4292968 4302180 4311391 4320603 4329815 4339027 4348239 4357821 4367403 4376986 4386568 4396150 4405732 4415314 4424897 4434479 4444061 4454009 4463957 4473905 4483853 4493802 4503750 4513698 4523646 4533594 4543542 4553859 4564176 4574494 4584811 4595128 4605445 4615762 4626080 4636397 4646714 8564449 12482184 16399920 20317655 24235390 +Malawi 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737000 737468 737935 738402 738870 739338 739805 740272 740740 741208 741675 742142 742610 743078 743545 744012 744480 744948 745415 745882 746350 746818 747285 747752 748220 748688 749155 749622 750090 750558 751025 751492 751960 752428 752895 753362 753830 754298 754765 755232 755700 758147 760594 763041 765488 767936 770383 772830 775277 777724 780171 800067 819963 839858 859754 879650 899546 919442 939337 959233 979129 1003860 1028591 1053322 1078053 1102784 1127514 1152245 1176976 1201707 1226438 1263942 1301447 1338951 1376455 1413960 1451464 1488968 1526472 1563977 1601481 1637053 1672626 1708198 1743771 1779343 1814915 1850488 1886060 1921633 1957205 2056872 2156538 2256205 2355871 2455538 2555205 2654871 2754538 2854204 2953871 2959291 2964712 2970132 2975552 2980972 2986393 2991813 2997233 3002654 3008074 3013770 3019465 3025161 3030856 3036552 3042248 3047943 3053639 3059334 3065030 3071000 3076970 3082940 3088910 3094880 3100851 3106821 3112791 3118761 3124731 3130975 3137219 3143463 3149707 3155952 3162196 3168440 3174684 3180928 3187172 3193689 3200206 3206723 3213240 3219756 3226273 3232790 3239307 3245824 3252341 3259129 3265917 3272705 3279493 3286282 3293070 3299858 3306646 3313434 3320222 6099224 8878226 11657228 14436230 17215232 +Malaysia 287000 287000 287000 287000 287000 287000 287000 287000 287000 287000 287000 288653 290306 291959 293612 295265 296918 298571 300224 301877 303530 308659 313787 318916 324044 329173 334302 339430 344559 349687 354816 362866 370915 378965 387015 395064 403114 411164 419214 427263 435313 445211 455110 465008 474906 484804 494703 504601 514499 524398 534296 546434 558571 570709 582847 594984 607122 619260 631398 643535 655673 674048 692424 710799 729175 747550 765925 784301 802676 821052 839427 869388 899349 929311 959272 989233 1019194 1049155 1079117 1109078 1139039 1184039 1229039 1274038 1319038 1364038 1409038 1454038 1499037 1544037 1589037 1650574 1712111 1773647 1835184 1896721 1958258 2019795 2081331 2142868 2204405 2271529 2338654 2405778 2472903 2540027 2607151 2674276 2741400 2808525 2875649 2940634 3005619 3070605 3135590 3200575 3265560 3330545 3395531 3460516 3525501 3611882 3698262 3784643 3871024 3957404 4043785 4130166 4216547 4302927 4389308 4490837 4592366 4693894 4795423 4896952 4998481 5100010 5201538 5303067 5404596 5475127 5545658 5616189 5686720 5757252 5827783 5898314 5968845 6039376 6109907 6125108 6140309 6155510 6170711 6185912 6201112 6216313 6231514 6246715 6261916 6279040 6296165 6313290 6330414 6347538 6364663 6381788 6398912 6416036 6433161 6451672 6470184 6488695 6507206 6525718 6544229 6562740 6581251 6599763 6618274 6637784 6657295 6676805 6696316 6715826 6735336 6754847 6774357 6793868 6813378 6833650 6853922 6874194 6894466 6914738 6935009 6955281 6975553 6995825 7016097 7037050 7058002 7078955 7099908 7120860 7141813 7162766 7183719 7204671 7225624 11846701 16467777 21088854 25709930 30331007 +Maldives 42378 42378 42378 42378 42378 42378 42378 42378 42378 42378 42378 42444 42510 42576 42642 42708 42774 42840 42906 42972 43038 43229 43420 43611 43802 43993 44184 44375 44566 44757 44948 45218 45487 45756 46026 46296 46565 46834 47104 47374 47643 47929 48215 48500 48786 49072 49358 49644 49929 50215 50501 50747 50994 51240 51487 51733 51979 52226 52472 52719 52965 53223 53481 53738 53996 54254 54512 54770 55027 55285 55543 55812 56080 56348 56617 56886 57154 57422 57691 57960 58228 58508 58789 59070 59350 59630 59911 60192 60472 60752 61033 61328 61623 61918 62213 62508 62802 63097 63392 63687 63982 64278 64573 64869 65164 65460 65756 66051 66347 66642 66938 66770 66603 66435 66268 66100 65932 65765 65597 65430 65262 65992 66723 67453 68184 68914 69644 70375 71105 71836 72566 72820 73074 73328 73582 73836 74091 74345 74599 74853 75107 74968 74829 74689 74550 74411 74272 74133 73993 73854 73715 73766 73817 73868 73919 73970 74020 74071 74122 74173 74224 74320 74417 74514 74610 74706 74803 74900 74996 75092 75189 75318 75448 75577 75707 75836 75965 76095 76224 76354 76483 76636 76789 76942 77095 77248 77401 77554 77707 77860 78013 78182 78351 78520 78689 78858 79028 79197 79366 79535 79704 79885 80066 80247 80428 80608 80789 80970 81151 81332 81513 137942 194371 250799 307228 363657 +Mali 1403398 1403398 1403398 1403398 1403398 1403398 1403398 1403398 1403398 1403398 1403398 1406889 1410380 1413871 1417362 1420853 1424344 1427835 1431326 1434817 1438308 1448571 1458834 1469098 1479361 1489624 1499887 1510150 1520414 1530677 1540940 1555780 1570620 1585461 1600301 1615141 1629981 1644821 1659662 1674502 1689342 1705612 1721881 1738150 1754420 1770690 1786959 1803228 1819498 1835768 1852037 1870308 1888580 1906851 1925122 1943394 1961665 1979936 1998207 2016479 2034750 2054823 2074895 2094968 2115041 2135114 2155186 2175259 2195332 2215404 2235477 2257398 2279318 2301238 2323159 2345080 2367000 2388920 2410841 2432762 2454682 2478735 2502789 2526842 2550896 2574949 2599002 2623056 2647109 2671163 2695216 2721800 2748385 2774969 2801553 2828138 2854722 2881306 2907890 2934475 2961059 2990154 3019249 3048344 3077439 3106534 3135628 3164723 3193818 3222913 3252008 3283810 3315611 3347412 3379214 3411016 3442817 3474618 3506420 3538222 3570023 3604405 3638786 3673168 3707549 3741931 3776313 3810694 3845076 3879457 3913839 3951532 3989225 4026917 4064610 4102303 4139996 4177689 4215381 4253074 4290767 4332533 4374299 4416064 4457830 4499596 4541362 4583128 4624893 4666659 4708425 4713486 4718548 4723609 4728671 4733732 4738793 4743855 4748916 4753978 4759039 4764255 4769471 4774687 4779903 4785118 4790334 4795550 4800766 4805982 4811198 4816554 4821909 4827265 4832620 4837976 4843332 4848687 4854043 4859398 4864754 4870233 4875713 4881192 4886671 4892150 4897630 4903109 4908588 4914068 4919547 4925132 4930718 4936303 4941889 4947474 4953059 4958645 4964230 4969816 4975401 4981073 4986746 4992418 4998090 5003762 5009435 5015107 5020779 5026452 5032124 7545638 10059152 12572666 15086180 17599694 +Malta 134072 134072 134072 134072 134072 134072 134072 134072 134072 134072 134072 134305 134539 134772 135006 135239 135472 135706 135939 136173 136406 137084 137761 138439 139117 139794 140472 141150 141828 142505 143183 144144 145105 146066 147027 147988 148950 149911 150872 151833 152794 153820 154845 155871 156897 157922 158948 159974 161000 162025 163051 164149 165246 166344 167441 168539 169637 170734 171832 172929 174027 175198 176370 177542 178713 179884 181056 182228 183399 184570 185742 186987 188232 189477 190722 191967 193212 194457 195702 196947 198192 199520 200848 202176 203504 204832 206159 207487 208815 210143 211471 212894 214318 215742 217165 218588 220012 221436 222859 224282 225706 227221 228737 230252 231767 233282 234798 236313 237828 239344 240859 242478 244097 245716 247335 248954 250574 252193 253812 255431 257050 258776 260501 262226 263952 265678 267403 269128 270854 272580 274305 276146 277988 279829 281671 283512 285353 287195 289036 290878 292719 294647 296575 298502 300430 302358 304286 306214 308141 310069 311997 312070 312143 312215 312288 312361 312434 312507 312579 312652 312725 312772 312818 312865 312912 312958 313005 313052 313099 313145 313192 313223 313255 313286 313317 313348 313380 313411 313442 313474 313505 313528 313551 313574 313597 313620 313643 313666 313689 313712 313735 313753 313771 313789 313807 313824 313842 313860 313878 313896 313914 313926 313939 313951 313963 313976 313988 314000 314012 314025 314037 334964 355890 376817 397743 418670 +Mauritania 382696 382696 382696 382696 382696 382696 382696 382696 382696 382696 382696 383119 383542 383965 384388 384811 385234 385657 386080 386503 386926 388141 389356 390571 391786 393001 394216 395431 396646 397861 399076 400771 402466 404161 405856 407550 409245 410940 412635 414330 416025 417792 419559 421326 423093 424860 426626 428393 430160 431927 433694 435528 437362 439195 441029 442863 444697 446531 448364 450198 452032 453943 455855 457766 459677 461588 463500 465411 467322 469234 471145 473132 475119 477105 479092 481079 483066 485053 487039 489026 491013 493083 495153 497223 499293 501362 503432 505502 507572 509642 511712 513876 516039 518203 520367 522530 524694 526858 529022 531185 533349 535600 537852 540103 542354 544606 546857 549108 551359 553611 555862 558215 560568 562921 565274 567628 569981 572334 574687 577040 579393 581854 584315 586775 589236 591697 594158 596619 599079 601540 604001 606566 609131 611697 614262 616827 619392 621957 624523 627088 629653 632737 635821 638904 641988 645072 648156 651240 654323 657407 660491 662001 663512 665022 666532 668042 669553 671063 672573 674084 675594 677215 678837 680458 682079 683700 685322 686943 688564 690186 691807 693536 695265 696994 698723 700452 702182 703911 705640 707369 709098 710932 712766 714601 716435 718269 720103 721937 723772 725606 727440 729376 731313 733249 735186 737122 739058 740995 742931 744868 746804 748840 750876 752913 754949 756985 759021 761057 763094 765130 767166 1427246 2087325 2747405 3407484 4067564 +Mauritius 62865 64410 65954 67498 69043 70588 72132 73676 75221 76766 78310 80154 81999 83844 85688 87532 89377 91222 93066 94910 96755 99034 101313 103592 105871 108150 110428 112707 114986 117265 119544 122360 125175 127991 130806 133622 136438 139253 142069 144884 147700 153066 158432 163799 169165 174531 179897 185263 190630 195996 201362 209127 216891 224656 232421 240186 247950 255715 263480 271244 279009 284354 289698 295043 300388 305732 311077 316422 321767 327111 332456 334584 336713 338841 340970 343098 345226 347355 349483 351612 353740 355256 356771 358287 359802 361318 362834 364349 365865 367380 368896 369090 369284 369478 369672 369866 370059 370253 370447 370641 370835 370691 370548 370404 370261 370117 369973 369830 369686 369543 369399 369991 370583 371175 371767 372358 372950 373542 374134 374726 375318 376916 378513 380110 381708 383306 384903 386500 388098 389696 391293 393249 395205 397160 399116 401072 403028 404984 406939 408895 410851 419091 427332 435572 443812 452052 460293 468533 476773 485014 493254 494572 495889 497207 498525 499842 501160 502478 503796 505113 506431 507907 509383 510859 512335 513810 515286 516762 518238 519714 521190 522776 524362 525947 527533 529119 530705 532291 533876 535462 537048 538706 540363 542020 543678 545336 546993 548650 550308 551966 553623 555325 557027 558730 560432 562134 563836 565538 567241 568943 570645 572375 574106 575836 577567 579297 581027 582758 584488 586219 587949 725002 862054 999107 1136159 1273212 +Mexico 6181708 6201769 6221830 6241891 6261952 6282012 6302073 6322134 6342195 6362256 6382317 6406217 6430116 6454016 6477916 6501816 6525715 6549615 6573515 6597414 6621314 6652249 6683183 6714118 6745053 6775988 6806922 6837857 6868792 6899726 6930661 6966481 7002300 7038120 7073940 7109760 7145579 7181399 7217219 7253038 7288858 7335413 7381969 7428524 7475079 7521634 7568190 7614745 7661300 7707856 7754411 7822191 7889970 7957750 8025529 8093309 8161089 8228868 8296648 8364427 8432207 8522807 8613407 8704007 8794607 8885206 8975806 9066406 9157006 9247606 9338206 9451444 9564681 9677919 9791156 9904394 10017632 10130869 10244107 10357344 10470582 10610398 10750214 10890031 11029847 11169663 11309479 11449295 11589112 11728928 11868744 12048134 12227523 12406913 12586302 12765692 12945082 13124471 13303861 13483250 13662640 13807894 13953149 14098404 14243658 14388912 14534167 14679422 14824676 14969930 15115185 15110942 15106698 15102455 15098211 15093968 15089725 15085481 15081238 15076994 15072751 15302863 15532975 15763087 15993199 16223310 16453422 16683534 16913646 17143758 17373870 17706479 18039087 18371696 18704304 19036913 19369522 19702130 20034739 20367347 20699956 21431216 22162476 22893737 23624997 24356257 25087517 25818777 26550038 27281298 28012558 28094913 28177269 28259624 28341979 28424334 28506690 28589045 28671400 28753756 28836111 28923663 29011215 29098767 29186319 29273872 29361424 29448976 29536528 29624080 29711632 29803890 29896149 29988407 30080666 30172924 30265182 30357441 30449699 30541958 30634216 30730775 30827334 30923892 31020451 31117010 31213569 31310128 31406686 31503245 31599804 31700341 31800879 31901416 32001954 32102491 32203028 32303566 32404103 32504641 32605178 32709459 32813740 32918020 33022301 33126582 33230863 33335144 33439424 33543705 33647986 52321834 70995681 89669529 108343376 127017224 +Micronesia, Fed. Sts. 16416 16416 16416 16416 16416 16416 16416 16416 16416 16416 16416 16438 16461 16484 16506 16528 16551 16574 16596 16618 16641 16706 16771 16835 16900 16965 17030 17095 17159 17224 17289 17380 17471 17562 17653 17744 17836 17927 18018 18109 18200 18296 18392 18488 18584 18680 18775 18871 18967 19063 19159 19256 19353 19450 19547 19644 19742 19839 19936 20033 20130 20232 20334 20436 20538 20640 20742 20844 20946 21048 21150 21257 21364 21470 21577 21684 21791 21898 22004 22111 22218 22330 22442 22555 22667 22779 22891 23003 23116 23228 23340 23458 23577 23695 23813 23932 24050 24168 24286 24405 24523 24647 24771 24895 25019 25142 25266 25390 25514 25638 25762 25894 26026 26159 26291 26423 26555 26687 26820 26952 27084 27227 27369 27512 27655 27798 27940 28083 28226 28368 28511 28661 28811 28962 29112 29262 29412 29562 29713 29863 30013 30212 30410 30609 30808 31006 31205 31404 31603 31801 32000 32140 32280 32420 32560 32700 32840 32980 33120 33260 33400 33520 33639 33759 33878 33998 34118 34237 34357 34476 34596 34706 34816 34925 35035 35145 35255 35365 35474 35584 35694 35802 35910 36018 36126 36234 36342 36450 36558 36666 36774 36886 36998 37111 37223 37335 37447 37559 37672 37784 37896 38016 38135 38255 38374 38494 38614 38733 38853 38972 39092 52166 65239 78313 91386 104460 +Moldova 712558 712558 712558 712558 712558 712558 712558 712558 712558 712558 712558 714322 716085 717849 719612 721376 723140 724903 726667 728430 730194 735378 740561 745745 750928 756112 761296 766479 771663 776846 782030 789523 797016 804509 812002 819495 826988 834481 841974 849467 856960 865171 873382 881593 889804 898015 906226 914437 922648 930859 939070 948026 956981 965937 974893 983848 992804 1001760 1010716 1019671 1028627 1038437 1048247 1058056 1067866 1077676 1087486 1097296 1107105 1116915 1126725 1137405 1148085 1158765 1169445 1180124 1190804 1201484 1212164 1222844 1233524 1245209 1256893 1268578 1280263 1291948 1303632 1315317 1327002 1338686 1350371 1363249 1376127 1389005 1401883 1414762 1427640 1440518 1453396 1466274 1479152 1493204 1507256 1521308 1535360 1549412 1563464 1577516 1591568 1605620 1619672 1635133 1650593 1666054 1681514 1696975 1712436 1727896 1743357 1758817 1774278 1791278 1808278 1825278 1842278 1859278 1876279 1893279 1910279 1927279 1944279 1962908 1981537 2000166 2018795 2037424 2056054 2074683 2093312 2111941 2130570 2151613 2172657 2193700 2214743 2235786 2256830 2277873 2298916 2319960 2341003 2345047 2349091 2353135 2357179 2361223 2365267 2369311 2373355 2377399 2381443 2386508 2391574 2396639 2401704 2406770 2411835 2416900 2421965 2427031 2432096 2437993 2443890 2449788 2455685 2461582 2467479 2473376 2479274 2485171 2491068 2497620 2504172 2510724 2517276 2523828 2530380 2536932 2543484 2550036 2556588 2563630 2570672 2577714 2584756 2591798 2598839 2605881 2612923 2619965 2627007 2634386 2641765 2649144 2656523 2663902 2671280 2678659 2686038 2693417 2700796 2974416 3248036 3521657 3795277 4068897 +Mongolia 619000 619000 619000 619000 619000 619000 619000 619000 619000 619000 619000 619248 619497 619745 619993 620242 620490 620738 620986 621235 621483 622188 622892 623597 624302 625006 625711 626416 627121 627825 628530 629495 630460 631425 632390 633355 634320 635285 636250 637215 638180 639160 640140 641120 642100 643080 644059 645039 646019 646999 647979 648923 649867 650811 651755 652700 653644 654588 655532 656476 657420 658445 659470 660495 661520 662546 663571 664596 665621 666646 667671 668834 669996 671158 672321 673484 674646 675808 676971 678134 679296 680547 681797 683048 684299 685550 686800 688051 689302 690552 691803 693078 694354 695629 696905 698180 699455 700731 702006 703282 704557 705855 707153 708451 709749 711046 712344 713642 714940 716238 717536 718918 720300 721682 723064 724446 725827 727209 728591 729973 731355 732820 734285 735750 737215 738680 740144 741609 743074 744539 746004 747498 748993 750487 751981 753476 754970 756464 757958 759453 760947 762872 764798 766723 768648 770574 772499 774424 776349 778275 780200 781534 782867 784201 785535 786868 788202 789536 790870 792203 793537 794976 796415 797854 799293 800732 802170 803609 805048 806487 807926 809439 810953 812466 813980 815493 817006 818520 820033 821547 823060 824633 826205 827778 829351 830924 832496 834069 835642 837214 838787 840418 842050 843681 845313 846944 848575 850207 851838 853470 855101 856807 858513 860219 861925 863632 865338 867044 868750 870456 872162 1289556 1706951 2124345 2541740 2959134 +Montenegro 126582 126582 126582 126582 126582 126582 126582 126582 126582 126582 126582 126884 127185 127487 127789 128090 128392 128694 128996 129297 129599 130484 131370 132256 133141 134026 134912 135798 136683 137568 138454 139731 141008 142285 143562 144839 146116 147393 148670 149947 151224 152619 154014 155408 156803 158198 159593 160988 162382 163777 165172 166670 168169 169667 171165 172664 174162 175660 177158 178657 180155 181789 183423 185058 186692 188326 189960 191594 193229 194863 196497 198269 200041 201813 203585 205356 207128 208900 210672 212444 214216 216146 218077 220007 221937 223868 225798 227728 229658 231589 233519 235637 237755 239873 241991 244110 246228 248346 250464 252582 254700 257002 259303 261604 263906 266208 268509 270810 273112 275414 277715 280246 282778 285310 287841 290372 292904 295436 297967 300498 303030 305825 308620 311415 314210 317004 319799 322594 325389 328184 330979 334032 337084 340137 343190 346242 349295 352348 355401 358453 361506 364829 368152 371476 374799 378122 381445 384768 388092 391415 394738 395352 395966 396579 397193 397807 398421 399035 399648 400262 400876 401840 402803 403766 404730 405694 406657 407620 408584 409548 410511 411633 412756 413878 415001 416123 417245 418368 419490 420613 421735 422875 424015 425155 426295 427435 428575 429715 430855 431995 433135 434201 435267 436333 437399 438466 439532 440598 441664 442730 443796 444749 445701 446654 447606 448559 449512 450464 451417 452369 453322 487814 522306 556797 591289 625781 +Morocco 2503218 2512402 2521586 2530769 2539953 2549137 2558321 2567505 2576688 2585872 2595056 2606858 2618661 2630463 2642265 2654068 2665870 2677672 2689474 2701277 2713079 2729807 2746534 2763262 2779989 2796717 2813445 2830172 2846900 2863627 2880355 2900592 2920828 2941065 2961301 2981538 3001775 3022011 3042248 3062484 3082721 3104379 3126038 3147696 3169355 3191013 3212671 3234330 3255988 3277647 3299305 3322522 3345739 3368957 3392174 3415391 3438608 3461825 3485043 3508260 3531477 3556588 3581699 3606810 3631921 3657032 3682142 3707253 3732364 3757475 3782586 3809838 3837091 3864343 3891595 3918848 3946100 3973352 4000604 4027857 4055109 4084582 4114054 4143527 4173000 4202472 4231945 4261418 4290891 4320363 4349836 4381613 4413389 4445166 4476942 4508719 4540496 4572272 4604049 4635825 4667602 4701601 4735599 4769598 4803597 4837596 4871594 4905593 4939592 4973590 5007589 5075557 5143525 5211494 5279462 5347430 5415398 5483366 5551335 5619303 5687271 5780310 5873349 5966389 6059428 6152467 6245506 6338545 6431585 6524624 6617663 6725923 6834182 6942442 7050701 7158961 7267221 7375480 7483740 7591999 7700259 7828832 7957405 8085978 8214551 8343124 8471698 8600271 8728844 8857417 8985990 9011759 9037528 9063297 9089066 9114835 9140604 9166373 9192142 9217911 9243680 9272266 9300852 9329438 9358024 9386610 9415196 9443782 9472368 9500954 9529540 9560361 9591182 9622004 9652825 9683646 9714467 9745288 9776110 9806931 9837752 9870320 9902889 9935458 9968026 10000594 10033163 10065732 10098300 10130868 10163437 10197360 10231282 10265205 10299127 10333050 10366973 10400895 10434818 10468740 10502663 10537645 10572627 10607609 10642591 10677572 10712554 10747536 10782518 10817500 10852482 15557488 20262494 24967499 29672505 34377511 +Mozambique 1982324 1987958 1993591 1999225 2004858 2010492 2016126 2021759 2027393 2033026 2038660 2047766 2056873 2065979 2075085 2084192 2093298 2102404 2111510 2120617 2129723 2145572 2161420 2177269 2193117 2208966 2224815 2240663 2256512 2272360 2288209 2308851 2329493 2350136 2370778 2391420 2412062 2432704 2453347 2473989 2494631 2517135 2539640 2562144 2584649 2607153 2629657 2652162 2674666 2697171 2719675 2743234 2766792 2790351 2813910 2837468 2861027 2884586 2908145 2931703 2955262 2980858 3006454 3032050 3057646 3083242 3108837 3134433 3160029 3185625 3211221 3238865 3266509 3294154 3321798 3349442 3377086 3404730 3432375 3460019 3487663 3517664 3547665 3577666 3607667 3637668 3667669 3697670 3727671 3757672 3787673 3820465 3853257 3886049 3918841 3951632 3984424 4017216 4050008 4082800 4115592 4151084 4186577 4222069 4257562 4293054 4328546 4364039 4399531 4435024 4470516 4509730 4548944 4588158 4627372 4666586 4705800 4745014 4784228 4823442 4862656 4906523 4950389 4994256 5038122 5081989 5125856 5169722 5213589 5257455 5301322 5349146 5396970 5444794 5492618 5540442 5588265 5636089 5683913 5731737 5779561 5832934 5886307 5939680 5993053 6046426 6099798 6153171 6206544 6259917 6313290 6322468 6331646 6340823 6350001 6359179 6368357 6377535 6386712 6395890 6405068 6414872 6424676 6434479 6444283 6454087 6463891 6473695 6483498 6493302 6503106 6513505 6523904 6534302 6544701 6555100 6565499 6575898 6586296 6596695 6607094 6618066 6629037 6640009 6650981 6661952 6672924 6683896 6694868 6705839 6716811 6728341 6739872 6751402 6762933 6774463 6785993 6797524 6809054 6820585 6832115 6844199 6856283 6868367 6880451 6892535 6904619 6916703 6928787 6940871 6952955 11157937 15362918 19567900 23772881 27977863 +Myanmar 3506000 3506000 3506000 3506000 3506000 3506000 3506000 3506000 3506000 3506000 3506000 3509557 3513115 3516672 3520229 3523786 3527344 3530901 3534458 3538016 3541573 3551774 3561975 3572176 3582377 3592578 3602780 3612981 3623182 3633383 3643584 3657781 3671978 3686175 3700372 3714568 3728765 3742962 3757159 3771356 3785553 3800311 3815068 3829826 3844584 3859342 3874099 3888857 3903615 3918372 3933130 3949473 3965817 3982160 3998504 4014847 4031190 4047534 4063877 4080221 4096564 4144366 4192168 4239971 4287773 4335575 4383377 4431179 4478982 4526784 4574586 4690591 4806596 4922601 5038606 5154611 5270616 5386621 5502626 5618631 5734636 5923018 6111400 6299781 6488163 6676545 6864927 7053309 7241690 7430072 7618454 7874438 8130422 8386406 8642390 8898374 9154359 9410343 9666327 9922311 10178295 10370934 10563574 10756213 10948853 11141492 11334131 11526771 11719410 11912050 12104689 12222155 12339621 12457087 12574553 12692020 12809486 12926952 13044418 13161884 13279350 13426537 13573724 13720911 13868098 14015285 14162472 14309659 14456846 14604033 14751220 14962600 15173980 15385361 15596741 15808121 16019501 16230881 16442262 16653642 16865022 16931244 16997466 17063688 17129910 17196132 17262355 17328577 17394799 17461021 17527243 17559526 17591808 17624090 17656373 17688656 17720938 17753220 17785503 17817786 17850068 17883292 17916517 17949741 17982966 18016190 18049414 18082639 18115863 18149088 18182312 18217030 18251749 18286467 18321185 18355904 18390622 18425340 18460058 18494777 18529495 18566087 18602679 18639272 18675864 18712456 18749048 18785640 18822233 18858825 18895417 18934092 18972768 19011444 19050119 19088794 19127470 19166146 19204821 19243496 19282172 19322959 19363747 19404534 19445322 19486109 19526896 19567684 19608471 19649259 19690046 26531468 33372889 40214311 47055732 53897154 +Namibia 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229000 229060 229120 229180 229240 229300 229359 229419 229479 229539 229599 229659 229719 229779 229839 229898 229958 230018 230078 230138 230198 230258 230318 230378 230438 230498 230557 230617 230677 230737 230797 230857 230917 230976 231036 231096 231156 231216 231275 231335 231395 231455 231515 231575 231635 231694 231754 231814 231874 231934 231994 232054 232114 232174 232234 232294 232353 232413 232473 232533 232593 232633 232673 232713 232753 232792 232832 232872 232912 232952 232992 237171 241350 245528 249707 253886 258065 262244 266422 270601 274780 280304 285827 291350 296874 302398 307921 313444 318968 324492 330015 345541 361067 376593 392119 407644 423170 438696 454222 469748 485274 486208 487141 488075 489009 489942 490876 491810 492744 493677 494611 495605 496599 497593 498587 499582 500576 501570 502564 503558 504552 505601 506650 507698 508747 509796 510845 511894 512942 513991 515040 516140 517239 518339 519438 520538 521638 522737 523837 524936 526036 527184 528333 529481 530629 531778 532926 534074 535222 536371 537519 538715 539912 541108 542304 543500 544697 545893 547089 548286 549482 931352 1313221 1695091 2076960 2458830 +Nepal 3881000 3881000 3881000 3881000 3881000 3881000 3881000 3881000 3881000 3881000 3881000 3884933 3888867 3892800 3896733 3900666 3904600 3908533 3912466 3916400 3920333 3931612 3942891 3954170 3965449 3976728 3988007 3999286 4010565 4021844 4033123 4048820 4064516 4080213 4095909 4111606 4127303 4142999 4158696 4174392 4190089 4206405 4222720 4239036 4255351 4271667 4287983 4304298 4320614 4336929 4353245 4372128 4391012 4409895 4428778 4447662 4466545 4485428 4504311 4523195 4542078 4563283 4584488 4605693 4626898 4648104 4669309 4690514 4711719 4732924 4754129 4779030 4803931 4828832 4853733 4878634 4903534 4928435 4953336 4978237 5003138 5028517 5053895 5079274 5104652 5130031 5155410 5180788 5206167 5231545 5256924 5273180 5289436 5305692 5321948 5338204 5354459 5370715 5386971 5403227 5419483 5447155 5474827 5502499 5530171 5557844 5585516 5613188 5640860 5668532 5696204 5749450 5802697 5855943 5909189 5962436 6015682 6068928 6122174 6175421 6228667 6295702 6362736 6429771 6496805 6563840 6630875 6697909 6764944 6831978 6899013 6973262 7047511 7121761 7196010 7270259 7344508 7418757 7493007 7567256 7641505 7725687 7809868 7894050 7978231 8062413 8146595 8230776 8314958 8399139 8483321 8500747 8518172 8535598 8553023 8570449 8587875 8605300 8622726 8640151 8657577 8674122 8690666 8707210 8723755 8740300 8756844 8773388 8789933 8806478 8823022 8838941 8854861 8870780 8886700 8902619 8918538 8934458 8950377 8966297 8982216 8997728 9013240 9028752 9044264 9059776 9075288 9090800 9106312 9121824 9137336 9152620 9167904 9183187 9198471 9213755 9229039 9244323 9259606 9274890 9290174 9305369 9320564 9335759 9350954 9366148 9381343 9396538 9411733 9426928 9442123 13256438 17070754 20885069 24699385 28513700 +Netherlands 2254522 2258425 2262327 2266230 2270132 2274035 2277938 2281840 2285743 2289645 2293548 2304978 2316408 2327838 2339268 2350698 2362127 2373557 2384987 2396417 2407847 2428996 2450144 2471293 2492441 2513590 2534739 2555887 2577036 2598184 2619333 2645419 2671504 2697590 2723676 2749762 2775847 2801933 2828019 2854104 2880190 2904442 2928695 2952947 2977200 3001452 3025704 3049957 3074209 3098462 3122714 3144677 3166640 3188604 3210567 3232530 3254493 3276456 3298420 3320383 3342346 3370371 3398396 3426422 3454447 3482472 3510497 3538522 3566548 3594573 3622598 3662798 3702997 3743197 3783397 3823596 3863796 3903996 3944196 3984395 4024595 4075123 4125651 4176178 4226706 4277234 4327762 4378290 4428817 4479345 4529873 4592189 4654504 4716820 4779136 4841452 4903767 4966083 5028399 5090714 5153030 5229269 5305508 5381748 5457987 5534226 5610465 5686704 5762944 5839183 5915422 6008525 6101628 6194731 6287834 6380938 6474041 6567144 6660247 6753350 6846453 6949313 7052173 7155032 7257892 7360752 7463612 7566472 7669331 7772191 7875051 7973618 8072185 8170752 8269319 8367886 8466454 8565021 8663588 8762155 8860722 8977354 9093987 9210620 9327252 9443884 9560517 9677150 9793782 9910414 10027047 10039214 10051380 10063547 10075714 10087880 10100047 10112214 10124381 10136547 10148714 10161413 10174111 10186810 10199509 10212208 10224906 10237605 10250304 10263002 10275701 10288842 10301982 10315123 10328263 10341404 10354545 10367685 10380826 10393966 10407107 10420621 10434134 10447648 10461162 10474676 10488189 10501703 10515217 10528730 10542244 10556083 10569922 10583760 10597599 10611438 10625277 10639116 10652954 10666793 10680632 10694771 10708909 10723048 10737186 10751325 10765464 10779602 10793741 10807879 10822018 12042600 13263182 14483765 15704347 16924929 +New Zealand 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 1e+05 99172 98345 97517 96689 95862 95034 94206 93378 92551 91723 90799 89874 88950 88025 87101 86177 85252 84328 83403 82479 83724 84970 86216 87461 88706 89952 91198 92443 93688 94934 101152 107370 113588 119806 126024 132242 138460 144678 150896 157114 171507 185900 200293 214686 229080 243473 257866 272259 286652 301045 321447 341849 362251 382653 403055 423457 443859 464261 484663 505065 521557 538049 554541 571033 587525 604017 620509 637001 653493 669985 684538 699092 713645 728199 742752 757305 771859 786412 800966 815519 838401 861283 884165 907047 929930 952812 975694 998576 1021458 1044340 1063546 1082751 1101956 1121162 1140368 1159573 1178778 1197984 1217190 1236395 1261949 1287503 1313058 1338612 1364166 1389720 1415274 1440829 1466383 1491937 1505730 1519523 1533317 1547110 1560903 1574696 1588489 1602283 1616076 1629869 1657682 1685495 1713309 1741122 1768935 1796748 1824561 1852375 1880188 1908001 1911981 1915961 1919941 1923921 1927902 1931882 1935862 1939842 1943822 1947802 1952284 1956765 1961247 1965729 1970210 1974692 1979174 1983656 1988137 1992619 1997359 2002098 2006838 2011577 2016317 2021057 2025796 2030536 2035275 2040015 2044833 2049651 2054469 2059287 2064104 2068922 2073740 2078558 2083376 2088194 2092975 2097755 2102536 2107316 2112097 2116878 2121658 2126439 2131219 2136000 2140694 2145389 2150083 2154777 2159472 2164166 2168860 2173554 2178249 2182943 2652060 3121176 3590293 4059409 4528526 +Nicaragua 219387 219387 219387 219387 219387 219387 219387 219387 219387 219387 219387 220356 221325 222293 223262 224231 225200 226169 227137 228106 229075 232016 234957 237898 240839 243780 246720 249661 252602 255543 258484 262949 267414 271879 276344 280810 285275 289740 294205 298670 303135 307359 311583 315807 320031 324254 328478 332702 336926 341150 345374 348428 351481 354535 357589 360642 363696 366750 369804 372857 375911 378878 381845 384812 387779 390746 393714 396681 399648 402615 405582 409987 414392 418797 423202 427608 432013 436418 440823 445228 449633 455227 460821 466415 472009 477603 483197 488791 494385 499979 505573 512151 518729 525307 531885 538462 545040 551618 558196 564774 571352 580137 588921 597706 606491 615276 624060 632845 641630 650414 659199 669270 679342 689414 699485 709556 719628 729700 739771 749842 759914 765441 770969 776496 782023 787550 793078 798605 804132 809660 815187 832286 849385 866484 883583 900682 917782 934881 951980 969079 986178 1017060 1047941 1078822 1109704 1140586 1171467 1202348 1233230 1264112 1294993 1298668 1302342 1306017 1309692 1313366 1317041 1320716 1324391 1328065 1331740 1335718 1339697 1343676 1347654 1351632 1355611 1359590 1363568 1367546 1371525 1375800 1380075 1384350 1388625 1392900 1397176 1401451 1405726 1410001 1414276 1418833 1423391 1427948 1432506 1437063 1441620 1446178 1450735 1455293 1459850 1464667 1469484 1474301 1479118 1483935 1488752 1493569 1498386 1503203 1508020 1513065 1518111 1523156 1528201 1533246 1538292 1543337 1548382 1553428 1558473 2463185 3367897 4272608 5177320 6082032 +Niger 1244861 1244861 1244861 1244861 1244861 1244861 1244861 1244861 1244861 1244861 1244861 1246603 1248345 1250087 1251829 1253570 1255312 1257054 1258796 1260538 1262280 1267308 1272335 1277363 1282391 1287418 1292446 1297474 1302502 1307529 1312557 1319625 1326693 1333761 1340829 1347897 1354965 1362033 1369101 1376169 1383237 1390686 1398134 1405583 1413031 1420480 1427929 1435377 1442826 1450274 1457723 1466293 1474863 1483433 1492003 1500573 1509143 1517713 1526283 1534853 1543423 1552493 1561564 1570634 1579705 1588775 1597845 1606916 1615986 1625057 1634127 1643696 1653266 1662836 1672405 1681974 1691544 1701114 1710683 1720252 1729822 1739945 1750067 1760190 1770312 1780435 1790558 1800680 1810803 1820925 1831048 1841796 1852544 1863293 1874041 1884789 1895537 1906285 1917034 1927782 1938530 1949882 1961234 1972587 1983939 1995291 2006643 2017995 2029348 2040700 2052052 2063756 2075459 2087163 2098867 2110570 2122274 2133978 2145682 2157385 2169089 2180769 2192450 2204130 2215810 2227490 2239171 2250851 2262531 2274212 2285892 2298201 2310511 2322820 2335129 2347438 2359748 2372057 2384366 2396676 2408985 2424057 2439129 2454200 2469272 2484344 2499416 2514488 2529559 2544631 2559703 2567491 2575279 2583067 2590855 2598642 2606430 2614218 2622006 2629794 2637582 2645528 2653475 2661422 2669368 2677314 2685261 2693208 2701154 2709100 2717047 2725086 2733125 2741163 2749202 2757241 2765280 2773319 2781357 2789396 2797435 2805531 2813627 2821723 2829819 2837915 2846011 2854107 2862203 2870299 2878395 2886545 2894695 2902845 2910995 2919146 2927296 2935446 2943596 2951746 2959896 2968130 2976363 2984596 2992830 3001064 3009297 3017530 3025764 3033998 3042231 6413609 9784987 13156364 16527742 19899120 +Nigeria 12100855 12100855 12100855 12100855 12100855 12100855 12100855 12100855 12100855 12100855 12100855 12114601 12128348 12142094 12155841 12169587 12183333 12197080 12210826 12224573 12238319 12277820 12317321 12356822 12396323 12435824 12475326 12514827 12554328 12593829 12633330 12688479 12743629 12798778 12853927 12909076 12964226 13019375 13074524 13129674 13184823 13242380 13299936 13357493 13415050 13472606 13530163 13587720 13645277 13702833 13760390 13821765 13883140 13944516 14005891 14067266 14128641 14190016 14251392 14312767 14374142 14438253 14502365 14566476 14630588 14694699 14758810 14822922 14887033 14951145 15015256 15082044 15148833 15215621 15282409 15349198 15415986 15482774 15549562 15616351 15683139 15752877 15822614 15892352 15962090 16031828 16101565 16171303 16241041 16310778 16380516 16453572 16526628 16599684 16672740 16745796 16818852 16891908 16964964 17038020 17111076 17187258 17263441 17339623 17415805 17491988 17568170 17644352 17720534 17796717 17872899 17952023 18031147 18110271 18189395 18268518 18347642 18426766 18505890 18585014 18664138 18719774 18775410 18831046 18886682 18942318 18997955 19053591 19109227 19164863 19220499 19960950 20701402 21441853 22182304 22922756 23663207 24403658 25144109 25884561 26625012 27748485 28871959 29995432 31118905 32242378 33365852 34489325 35612798 36736272 37859745 37916903 37974061 38031218 38088376 38145534 38202692 38259850 38317007 38374165 38431323 38493174 38555025 38616875 38678726 38740577 38802428 38864279 38926129 38987980 39049831 39115628 39181424 39247220 39313017 39378814 39444610 39510406 39576203 39642000 39707796 39776994 39846191 39915388 39984586 40053784 40122981 40192178 40261376 40330574 40399771 40472027 40544283 40616540 40688796 40761052 40833308 40905564 40977821 41050077 41122333 41197518 41272704 41347889 41423074 41498260 41573445 41648630 41723815 41799001 41874186 69939741 98005296 126070852 154136407 182201962 +Norway 868570 873553 878536 883518 888501 893484 898467 903450 908432 913415 918398 926149 933899 941650 949400 957151 964902 972652 980403 988153 995904 1007880 1019857 1031833 1043809 1055786 1067762 1079738 1091714 1103691 1115667 1129348 1143029 1156710 1170391 1184072 1197752 1211433 1225114 1238795 1252476 1267390 1282305 1297219 1312133 1327048 1341962 1356876 1371790 1386705 1401619 1419494 1437368 1455243 1473118 1490992 1508867 1526742 1544617 1562491 1580366 1597001 1613636 1630272 1646907 1663542 1680177 1696812 1713448 1730083 1746718 1760418 1774118 1787817 1801517 1815217 1828917 1842617 1856316 1870016 1883716 1895740 1907764 1919787 1931811 1943835 1955859 1967883 1979906 1991930 2003954 2025051 2046148 2067245 2088342 2109438 2130535 2151632 2172729 2193826 2214923 2231794 2248665 2265535 2282406 2299277 2316148 2333019 2349889 2366760 2383631 2408731 2433832 2458932 2484033 2509133 2534233 2559334 2584434 2609535 2634635 2651964 2669292 2686621 2703950 2721278 2738607 2755936 2773265 2790593 2807922 2824284 2840647 2857009 2873372 2889734 2906096 2922459 2938821 2955184 2971546 3000919 3030292 3059666 3089039 3118412 3147785 3177158 3206532 3235905 3265278 3268792 3272307 3275821 3279336 3282850 3286364 3289879 3293393 3296908 3300422 3303769 3307117 3310464 3313811 3317158 3320506 3323853 3327200 3330548 3333895 3337134 3340372 3343611 3346849 3350088 3353327 3356565 3359804 3363042 3366281 3369456 3372630 3375805 3378980 3382154 3385329 3388504 3391679 3394853 3398028 3401168 3404309 3407449 3410589 3413730 3416870 3420010 3423150 3426291 3429431 3432552 3435673 3438794 3441915 3445036 3448156 3451277 3454398 3457519 3460640 3810705 4160771 4510836 4860902 5210967 +Oman 318000 318000 318000 318000 318000 318000 318000 318000 318000 318000 318000 318241 318482 318723 318964 319206 319447 319688 319929 320170 320411 321100 321788 322476 323165 323854 324542 325230 325919 326608 327296 328248 329199 330151 331102 332054 333006 333957 334909 335860 336812 337791 338771 339750 340730 341709 342688 343668 344647 345627 346606 347587 348567 349548 350529 351510 352490 353471 354452 355432 356413 357575 358738 359900 361063 362225 363387 364550 365712 366875 368037 369517 370997 372477 373957 375437 376917 378397 379877 381357 382837 384535 386233 387931 389629 391326 393024 394722 396420 398118 399816 401595 403374 405153 406932 408711 410490 412269 414048 415827 417606 419461 421315 423170 425024 426879 428734 430588 432443 434297 436152 436943 437734 438526 439317 440108 440899 441690 442482 443273 444064 444396 444729 445061 445393 445726 446058 446390 446722 447055 447387 447722 448057 448391 448726 449061 449396 449731 450065 450400 450735 451303 451872 452440 453008 453576 454145 454713 455281 455850 456418 457002 457586 458170 458754 459338 459921 460505 461089 461673 462257 462966 463676 464385 465094 465804 466513 467222 467931 468641 469350 470159 470967 471776 472585 473394 474202 475011 475820 476628 477437 478324 479212 480099 480986 481874 482761 483648 484535 485423 486310 487261 488213 489164 490116 491067 492018 492970 493921 494873 495824 496830 497837 498844 499850 500856 501863 502870 503876 504882 505889 1302819 2099750 2896680 3693611 4490541 +Pakistan 13123633 13149837 13176041 13202245 13228449 13254652 13280856 13307060 13333264 13359468 13385672 13417101 13448530 13479959 13511388 13542817 13574246 13605675 13637104 13668533 13699962 13740972 13781981 13822991 13864001 13905010 13946020 13987030 14028040 14069049 14110059 14157220 14204380 14251541 14298702 14345862 14393023 14440184 14487345 14534505 14581666 14630403 14679140 14727877 14776614 14825351 14874088 14922825 14971562 15020299 15069036 15120808 15172580 15224353 15276125 15327897 15379669 15431441 15483214 15534986 15586758 15648048 15709338 15770628 15831918 15893208 15954498 16015788 16077078 16138368 16199658 16277451 16355244 16433036 16510829 16588622 16666415 16744208 16822000 16899793 16977586 17067137 17156689 17246240 17335792 17425343 17514894 17604446 17693997 17783549 17873100 17967712 18062324 18156935 18251547 18346159 18440771 18535383 18629994 18724606 18819218 18918633 19018048 19117462 19216877 19316292 19415707 19515122 19614536 19713951 19813366 19963798 20114229 20264661 20415093 20565524 20715956 20866388 21016820 21167251 21317683 21521786 21725888 21929990 22134093 22338196 22542298 22746400 22950503 23154606 23358708 23807604 24256501 24705397 25154293 25603190 26052086 26500982 26949878 27398775 27847671 28817142 29786613 30756084 31725555 32695026 33664496 34633967 35603438 36572909 37542380 37585750 37629119 37672488 37715858 37759228 37802597 37845966 37889336 37932706 37976075 38027002 38077928 38128855 38179781 38230708 38281635 38332561 38383488 38434414 38485341 38543394 38601447 38659500 38717553 38775606 38833659 38891712 38949765 39007818 39065871 39130691 39195512 39260332 39325152 39389972 39454793 39519613 39584433 39649254 39714074 39785374 39856674 39927973 39999273 40070573 40141873 40213173 40284472 40355772 40427072 40504638 40582203 40659769 40737335 40814900 40892466 40970032 41047598 41125163 41202729 70747158 100291587 129836016 159380445 188924874 +Panama 78842 78842 78842 78842 78842 78842 78842 78842 78842 78842 78842 79237 79631 80026 80420 80815 81210 81604 81999 82393 82788 83997 85206 86415 87624 88834 90043 91252 92461 93670 94879 96742 98605 100468 102331 104194 106057 107920 109783 111646 113509 115554 117598 119643 121687 123732 125777 127821 129866 131910 133955 136023 138091 140160 142228 144296 146364 148432 150501 152569 154637 156836 159035 161234 163433 165632 167831 170030 172229 174428 176627 179128 181629 184130 186631 189132 191633 194134 196635 199136 201637 204496 207356 210216 213075 215934 218794 221654 224513 227372 230232 233856 237480 241104 244728 248352 251976 255600 259224 262848 266472 272441 278411 284380 290349 296318 302288 308257 314226 320196 326165 341543 356920 372298 387676 403054 418431 433809 449187 464564 479942 483542 487141 490741 494340 497940 501540 505139 508739 512338 515938 533436 550934 568432 585930 603428 620925 638423 655921 673419 690917 707791 724666 741540 758414 775288 792163 809037 825911 842786 859660 861829 863997 866166 868334 870503 872672 874840 877009 879177 881346 883650 885954 888258 890562 892866 895171 897475 899779 902083 904387 906820 909252 911685 914117 916550 918983 921415 923848 926280 928713 931269 933825 936381 938937 941492 944048 946604 949160 951716 954272 956948 959624 962300 964976 967652 970328 973004 975680 978356 981032 983827 986621 989416 992211 995006 997800 1000595 1003390 1006184 1008979 1593011 2177044 2761076 3345109 3929141 +Papua New Guinea 754894 754894 754894 754894 754894 754894 754894 754894 754894 754894 754894 756164 757433 758703 759973 761242 762512 763782 765052 766321 767591 771274 774956 778638 782321 786004 789686 793368 797051 800734 804416 809631 814846 820062 825277 830492 835707 840922 846138 851353 856568 862121 867674 873228 878781 884334 889887 895440 900994 906547 912100 917984 923868 929752 935636 941520 947403 953287 959171 965055 970939 977202 983466 989729 995993 1002256 1008519 1014783 1021046 1027310 1033573 1040213 1046853 1053493 1060133 1066772 1073412 1080052 1086692 1093332 1099972 1107035 1114099 1121162 1128226 1135289 1142352 1149416 1156479 1163543 1170606 1178157 1185709 1193260 1200812 1208363 1215914 1223466 1231017 1238569 1246120 1254138 1262155 1270173 1278190 1286208 1294226 1302243 1310261 1318278 1326296 1334862 1343429 1351995 1360561 1369128 1377694 1386260 1394826 1403393 1411959 1421113 1430267 1439421 1448575 1457728 1466882 1476036 1485190 1494344 1503498 1513245 1522993 1532740 1542488 1552235 1561982 1571730 1581477 1591225 1600972 1611694 1622416 1633138 1643860 1654582 1665304 1676026 1686748 1697470 1708192 1710298 1712404 1714511 1716617 1718723 1720829 1722935 1725042 1727148 1729254 1731417 1733580 1735743 1737906 1740068 1742231 1744394 1746557 1748720 1750883 1753128 1755373 1757617 1759862 1762107 1764352 1766597 1768841 1771086 1773331 1775679 1778026 1780374 1782722 1785070 1787417 1789765 1792113 1794460 1796808 1799277 1801746 1804214 1806683 1809152 1811621 1814090 1816558 1819027 1821496 1824100 1826704 1829307 1831911 1834515 1837119 1839723 1842326 1844930 1847534 3001891 4156249 5310606 6464964 7619321 +Paraguay 143000 143000 143000 143000 143000 143000 143000 143000 143000 143000 143000 144244 145488 146731 147975 149219 150463 151707 152950 154194 155438 159482 163525 167569 171613 175656 179700 183744 187788 191831 195875 202685 209494 216304 223113 229923 236733 243542 250352 257161 263971 270535 277100 283664 290229 296793 303357 309922 316486 323051 329615 333415 337215 341016 344816 348616 352416 356216 360017 363817 367617 369442 371266 373091 374916 376740 378565 380390 382215 384039 385864 387755 389646 391537 393428 395319 397210 399101 400992 402883 404774 406746 408718 410691 412663 414635 416607 418579 420552 422524 424496 427764 431033 434302 437570 440838 444107 447376 450644 453912 457181 467689 478196 488704 499211 509719 520227 530734 541242 551749 562257 577032 591807 606582 621357 636132 650907 665682 680457 695232 710007 728426 746845 765263 783682 802101 820520 838939 857357 875776 894195 917659 941123 964586 988050 1011514 1034978 1058442 1081905 1105369 1128833 1163274 1197715 1232157 1266598 1301039 1335480 1369921 1404363 1438804 1473245 1477097 1480949 1484801 1488653 1492504 1496356 1500208 1504060 1507912 1511764 1515664 1519564 1523464 1527364 1531264 1535163 1539063 1542963 1546863 1550763 1554736 1558710 1562683 1566657 1570630 1574603 1578577 1582550 1586524 1590497 1594566 1598635 1602704 1606773 1610842 1614910 1618979 1623048 1627117 1631186 1635368 1639550 1643732 1647914 1652096 1656279 1660461 1664643 1668825 1673007 1677317 1681627 1685936 1690246 1694556 1698866 1703176 1707485 1711795 1716105 2700709 3685312 4669916 5654519 6639123 +Peru 1314151 1314293 1314436 1314578 1314721 1314863 1315005 1315148 1315290 1315433 1315575 1320733 1325891 1331049 1336207 1341365 1346523 1351681 1356839 1361997 1367155 1382384 1397614 1412844 1428073 1443302 1458532 1473762 1488991 1504220 1519450 1542184 1564918 1587651 1610385 1633119 1655853 1678587 1701320 1724054 1746788 1772500 1798211 1823923 1849634 1875346 1901058 1926769 1952481 1978192 2003904 2032940 2061977 2091013 2120050 2149086 2178122 2207159 2236195 2265232 2294268 2326520 2358772 2391024 2423276 2455528 2487781 2520033 2552285 2584537 2616789 2652274 2687760 2723245 2758731 2794216 2829701 2865187 2900672 2936158 2971643 3008277 3044910 3081544 3118177 3154811 3191445 3228078 3264712 3301345 3337979 3372215 3406452 3440688 3474924 3509160 3543397 3577633 3611869 3646106 3680342 3729739 3779136 3828532 3877929 3927326 3976723 4026120 4075516 4124913 4174310 4231033 4287756 4344478 4401201 4457924 4514647 4571370 4628092 4684815 4741538 4820984 4900431 4979877 5059324 5138770 5218216 5297663 5377109 5456556 5536002 5633055 5730107 5827160 5924212 6021265 6118318 6215370 6312423 6409475 6506528 6628649 6750769 6872890 6995011 7117132 7239252 7361373 7483494 7605614 7727735 7747382 7767029 7786676 7806323 7825970 7845618 7865265 7884912 7904559 7924206 7944638 7965070 7985502 8005934 8026366 8046797 8067229 8087661 8108093 8128525 8149710 8170896 8192081 8213267 8234452 8255637 8276823 8298008 8319194 8340379 8362313 8384247 8406182 8428116 8450050 8471984 8493918 8515853 8537787 8559721 8582424 8605127 8627831 8650534 8673237 8695940 8718643 8741347 8764050 8786753 8810274 8833794 8857315 8880836 8904356 8927877 8951398 8974919 8998439 9021960 13492902 17963844 22434786 26905728 31376670 +Philippines 1894389 1894389 1894389 1894389 1894389 1894389 1894389 1894389 1894389 1894389 1894389 1903288 1912188 1921087 1929987 1938886 1947785 1956685 1965584 1974484 1983383 2010521 2037660 2064798 2091937 2119075 2146213 2173352 2200490 2227629 2254767 2296262 2337756 2379251 2420745 2462240 2503735 2545229 2586724 2628218 2669713 2718837 2767961 2817085 2866209 2915332 2964456 3013580 3062704 3111828 3160952 3219536 3278120 3336704 3395288 3453872 3512455 3571039 3629623 3688207 3746791 3810354 3873916 3937478 4001041 4064604 4128166 4191728 4255291 4318854 4382416 4445323 4508230 4571136 4634043 4696950 4759857 4822764 4885670 4948577 5011484 5077170 5142857 5208543 5274230 5339916 5405602 5471289 5536975 5602662 5668348 5749572 5830796 5912020 5993244 6074468 6155693 6236917 6318141 6399365 6480589 6609642 6738694 6867747 6996800 7125852 7254905 7383958 7513011 7642063 7771116 7935047 8098978 8262908 8426839 8590770 8754701 8918632 9082562 9246493 9410424 9627180 9843937 10060693 10277450 10494206 10710962 10927719 11144475 11361232 11577988 11875429 12172869 12470310 12767751 13065192 13362632 13660073 13957514 14254954 14552395 14955204 15358013 15760823 16163632 16566441 16969250 17372059 17774869 18177678 18580487 18647099 18713712 18780324 18846937 18913549 18980161 19046774 19113386 19179999 19246611 19316516 19386421 19456325 19526230 19596135 19666040 19735945 19805849 19875754 19945659 20018147 20090635 20163124 20235612 20308100 20380588 20453076 20525565 20598053 20670541 20745097 20819653 20894208 20968764 21043320 21117876 21192432 21266987 21341543 21416099 21492399 21568700 21645000 21721301 21797601 21873901 21950202 22026502 22102803 22179103 22257028 22334954 22412879 22490805 22568730 22646655 22724581 22802506 22880432 22958357 38506565 54054772 69602980 85151187 100699395 +Poland 9508747 9553941 9599135 9644329 9689523 9734717 9779911 9825105 9870299 9915493 9960687 10015456 10070225 10124993 10179762 10234531 10289300 10344069 10398837 10453606 10508375 10580823 10653271 10725720 10798168 10870616 10943064 11015512 11087961 11160409 11232857 11318587 11404318 11490048 11575779 11661509 11747239 11832970 11918700 12004431 12090161 12203136 12316112 12429087 12542062 12655038 12768013 12880988 12993963 13106939 13219914 13382782 13545651 13708520 13871388 14034256 14197125 14359994 14522862 14685730 14848599 15065118 15281637 15498155 15714674 15931193 16147712 16364231 16580749 16797268 17013787 17279367 17544947 17810527 18076107 18341687 18607267 18872847 19138427 19404007 19669587 19964522 20259456 20554391 20849325 21144260 21439195 21734129 22029064 22323998 22618933 22827136 23035339 23243543 23451746 23659949 23868152 24076355 24284559 24492762 24700965 24880211 25059456 25238702 25417948 25597194 25776439 25955685 26134931 26314176 26493422 26260680 26027939 25795197 25562456 25329714 25096972 24864231 24631489 24398748 24166006 24566398 24966789 25367181 25767572 26167964 26568356 26968747 27369139 27769530 28169922 28357036 28544150 28731264 28918378 29105492 29292606 29479720 29666834 29853948 30041062 29519357 28997652 28475947 27954242 27432538 26910833 26389128 25867423 25345718 24824013 24868015 24912016 24956018 25000019 25044021 25088023 25132024 25176026 25220027 25264029 25311451 25358874 25406296 25453719 25501141 25548563 25595986 25643408 25690831 25738253 25788096 25837938 25887781 25937623 25987466 26037309 26087151 26136994 26186836 26236679 26288014 26339348 26390683 26442018 26493352 26544687 26596022 26647357 26698691 26750026 26801998 26853970 26905942 26957914 27009886 27061857 27113829 27165801 27217773 27269745 27321570 27373395 27425221 27477046 27528871 27580696 27632521 27684347 27736172 27787997 29952756 32117516 34282275 36447035 38611794 +Portugal 3033454 3046458 3059461 3072464 3085468 3098472 3111475 3124478 3137482 3150486 3163489 3178343 3193196 3208050 3222903 3237757 3252611 3267464 3282318 3297171 3312025 3329856 3347687 3365517 3383348 3401179 3419010 3436841 3454671 3472502 3490333 3508524 3526714 3544904 3563095 3581286 3599476 3617666 3635857 3654048 3672238 3687171 3702105 3717038 3731971 3746904 3761838 3776771 3791704 3806638 3821571 3843332 3865093 3886854 3908615 3930376 3952137 3973898 3995659 4017420 4039181 4068100 4097020 4125939 4154858 4183778 4212697 4241616 4270535 4299455 4328374 4359358 4390341 4421324 4452308 4483292 4514275 4545258 4576242 4607226 4638209 4677369 4716529 4755689 4794849 4834010 4873170 4912330 4951490 4990650 5029810 5069477 5109144 5148811 5188478 5228145 5267812 5307479 5347146 5386813 5426480 5473384 5520287 5567191 5614094 5660998 5707902 5754805 5801709 5848612 5895516 5911746 5927976 5944206 5960436 5976666 5992895 6009125 6025355 6041585 6057815 6132464 6207112 6281761 6356410 6431058 6505707 6580356 6655005 6729653 6804302 6893192 6982082 7070972 7159862 7248752 7337641 7426531 7515421 7604311 7693201 7765578 7837955 7910331 7982708 8055085 8127462 8199839 8272215 8344592 8416969 8418393 8419817 8421240 8422664 8424088 8425512 8426936 8428359 8429783 8431207 8435449 8439691 8443933 8448175 8452418 8456660 8460902 8465144 8469386 8473628 8479484 8485341 8491198 8497054 8502910 8508767 8514624 8520480 8526336 8532193 8538696 8545199 8551703 8558206 8564709 8571212 8577715 8584219 8590722 8597225 8603644 8610064 8616483 8622902 8629322 8635741 8642160 8648579 8654999 8661418 8667268 8673117 8678967 8684816 8690666 8696516 8702365 8708215 8714064 8719914 9045892 9371870 9697847 10023825 10349803 +Qatar 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14092 14086 14080 14074 14068 14062 14055 14049 14043 14037 14031 14046 14060 14075 14089 14104 14119 14133 14148 14162 14177 14230 14283 14337 14390 14443 14496 14549 14603 14656 14709 14786 14863 14940 15017 15094 15170 15247 15324 15401 15478 15559 15640 15722 15803 15884 15965 16046 16128 16209 16290 16375 16461 16546 16631 16716 16802 16887 16972 17058 17143 17280 17417 17554 17691 17828 17966 18103 18240 18377 18514 18689 18864 19039 19214 19389 19564 19739 19914 20089 20264 20456 20647 20838 21030 21222 21413 21604 21796 21988 22179 22461 22743 23025 23307 23589 23871 24153 24435 24717 24999 25247 25494 25742 25989 26237 26485 26732 26980 27227 27475 27712 27949 28185 28422 28659 28896 29133 29369 29606 29843 30062 30280 30499 30717 30936 31155 31373 31592 31810 32029 32228 32426 32625 32824 33022 33221 33420 33619 33817 34016 34198 34380 34562 34744 34926 35107 35289 35471 35653 35835 36010 36184 36359 36533 36708 36883 37057 37232 37406 37581 477136 916691 1356245 1795800 2235355 +Romania 5464085 5509186 5554287 5599389 5644490 5689591 5734692 5779793 5824895 5869996 5915097 5962632 6010168 6057703 6105238 6152774 6200309 6247844 6295379 6342915 6390450 6440743 6491037 6541330 6591624 6641917 6692210 6742504 6792797 6843091 6893384 6947039 7000694 7054348 7108003 7161658 7215313 7268968 7322622 7376277 7429932 7486393 7542854 7599316 7655777 7712238 7768699 7825160 7881622 7938083 7994544 8051985 8109426 8166867 8224308 8281748 8339189 8396630 8454071 8511512 8568953 8627192 8685431 8743670 8801909 8860148 8918387 8976626 9034865 9093104 9151343 9209786 9268229 9326673 9385116 9443559 9502002 9560445 9618889 9677332 9735775 9795603 9855431 9915258 9975086 10034914 10094742 10154570 10214397 10274225 10334053 10398503 10462952 10527402 10591851 10656301 10720751 10785200 10849650 10914099 10978549 11068544 11158540 11248535 11338530 11428526 11518521 11608516 11698511 11788507 11878502 11922733 11966964 12011195 12055426 12099656 12143887 12188118 12232349 12276580 12320811 12495174 12669537 12843899 13018262 13192625 13366988 13541351 13715713 13890076 14064439 14229576 14394712 14559849 14724985 14890122 15055259 15220395 15385532 15550668 15715805 15767854 15819902 15871951 15924000 15976048 16028097 16080146 16132195 16184243 16236292 16263930 16291568 16319206 16346844 16374482 16402120 16429758 16457396 16485034 16512672 16537897 16563122 16588346 16613571 16638796 16664021 16689246 16714470 16739695 16764920 16789000 16813081 16837162 16861242 16885322 16909403 16933484 16957564 16981644 17005725 17029533 17053341 17077150 17100958 17124766 17148574 17172382 17196191 17219999 17243807 17267817 17291828 17315838 17339849 17363859 17387869 17411880 17435890 17459901 17483911 17508178 17532446 17556713 17580980 17605248 17629515 17653782 17678049 17702317 17726584 18083532 18440480 18797428 19154376 19511324 +Russia 31088398 31088398 31088398 31088398 31088398 31088398 31088398 31088398 31088398 31088398 31088398 31165711 31243024 31320336 31397649 31474962 31552275 31629588 31706900 31784213 31861526 32088816 32316107 32543397 32770688 32997978 33225268 33452559 33679849 33907140 34134430 34463078 34791727 35120375 35449023 35777672 36106320 36434968 36763616 37092265 37420913 37781204 38141495 38501785 38862076 39222367 39582658 39942949 40303239 40663530 41023821 41418108 41812394 42206680 42600967 42995254 43389540 43783826 44178113 44572400 44966686 45398868 45831050 46263231 46695413 47127595 47559777 47991959 48424140 48856322 49288504 49759334 50230165 50700995 51171825 51642656 52113486 52584316 53055146 53525977 53996807 54512280 55027752 55543225 56058698 56574170 57089643 57605116 58120589 58636061 59151534 59720048 60288562 60857076 61425590 61994104 62562619 63131133 63699647 64268161 64836675 65457428 66078181 66698935 67319688 67940441 68561194 69181947 69802701 70423454 71044207 71726985 72409763 73092541 73775319 74458097 75140875 75823653 76506431 77189209 77871987 78621743 79371499 80121256 80871012 81620768 82370524 83120280 83870037 84619793 85369549 86191492 87013435 87835379 88657322 89479265 90301208 91123151 91945095 92767038 93588981 94509949 95430916 96351884 97272851 98193819 99114787 100035754 100956722 101877689 102798657 102949427 103100196 103250966 103401736 103552506 103703275 103854045 104004815 104155584 104306354 104472663 104638972 104805280 104971589 105137898 105304207 105470516 105636824 105803133 105969442 106145452 106321462 106497472 106673482 106849492 107025501 107201511 107377521 107553531 107729541 107910374 108091206 108272039 108452872 108633704 108814537 108995370 109176203 109357035 109537868 109719604 109901339 110083075 110264810 110446546 110628282 110810017 110991753 111173488 111355224 111534936 111714649 111894361 112074073 112253786 112433498 112613210 112792922 112972635 113152347 119213261 125274175 131335090 137396004 143456918 +Rwanda 928368 928368 928368 928368 928368 928368 928368 928368 928368 928368 928368 929903 931438 932972 934507 936042 937577 939112 940646 942181 943716 948165 952614 957063 961512 965962 970411 974860 979309 983758 988207 994503 1000799 1007095 1013391 1019687 1025983 1032279 1038575 1044871 1051167 1057864 1064561 1071258 1077955 1084652 1091350 1098047 1104744 1111441 1118138 1126114 1134090 1142065 1150041 1158017 1165993 1173969 1181944 1189920 1197896 1206434 1214972 1223511 1232049 1240587 1249125 1257663 1266202 1274740 1283278 1292385 1301491 1310598 1319705 1328812 1337918 1347025 1356132 1365238 1374345 1384087 1393829 1403571 1413313 1423056 1432798 1442540 1452282 1462024 1471766 1482233 1492700 1503167 1513634 1524101 1534568 1545035 1555502 1565969 1576436 1587614 1598791 1609968 1621146 1632324 1643501 1654678 1665856 1677034 1688211 1699784 1711358 1722932 1734505 1746078 1757652 1769226 1780799 1792372 1803946 1815439 1826932 1838426 1849919 1861412 1872905 1884398 1895892 1907385 1918878 1931104 1943329 1955554 1967780 1980006 1992231 2004456 2016682 2028908 2041133 2055638 2070144 2084649 2099155 2113660 2128165 2142671 2157176 2171682 2186187 2192636 2199085 2205533 2211982 2218431 2224880 2231329 2237777 2244226 2250675 2256938 2263201 2269464 2275727 2281990 2288254 2294517 2300780 2307043 2313306 2319820 2326333 2332847 2339360 2345874 2352388 2358901 2365415 2371928 2378442 2385479 2392516 2399554 2406591 2413628 2420665 2427702 2434740 2441777 2448814 2456485 2464156 2471827 2479498 2487169 2494840 2502511 2510182 2517853 2525524 2533766 2542008 2550250 2558492 2566734 2574977 2583219 2591461 2599703 2607945 4408289 6208633 8008978 9809322 11609666 +Samoa 47300 47292 47284 47276 47268 47260 47252 47244 47236 47228 47220 47212 47204 47196 47188 47180 47171 47163 47155 47147 47139 47131 47123 47115 47107 47099 47091 47083 47075 47067 47059 47051 47043 47035 47027 47019 47011 47003 46995 46987 46979 46889 46799 46708 46618 46528 46438 46348 46257 46167 46077 45847 45618 45388 45159 44929 44699 44470 44240 44011 43781 43486 43191 42897 42602 42307 42012 41717 41423 41128 40833 40557 40281 40004 39728 39452 39176 38900 38623 38347 38071 37813 37556 37298 37041 36783 36525 36268 36010 35753 35495 35376 35258 35140 35021 34902 34784 34666 34547 34428 34310 34664 35018 35372 35726 36080 36434 36788 37142 37496 37850 37699 37547 37396 37245 37094 36942 36791 36640 36488 36337 37299 38261 39224 40186 41148 42110 43072 44035 44997 45959 47493 49026 50560 52094 53628 55161 56695 58229 59762 61296 63377 65457 67538 69618 71699 73780 75860 77941 80021 82102 82336 82569 82803 83037 83270 83504 83738 83972 84205 84439 84677 84915 85153 85391 85628 85866 86104 86342 86580 86818 87060 87301 87543 87785 88026 88268 88510 88752 88993 89235 89481 89727 89973 90219 90465 90711 90957 91203 91449 91695 91946 92198 92449 92701 92952 93203 93455 93706 93958 94209 94468 94727 94987 95246 95505 95764 96023 96283 96542 96801 116086 135372 154657 173943 193228 +Sao Tome and Principe 22731 22731 22731 22731 22731 22731 22731 22731 22731 22731 22731 22777 22822 22868 22913 22959 23005 23050 23096 23141 23187 23320 23453 23586 23719 23852 23986 24119 24252 24385 24518 24708 24898 25088 25278 25468 25659 25849 26039 26229 26419 26624 26829 27033 27238 27443 27648 27853 28057 28262 28467 28691 28915 29139 29363 29587 29811 30035 30259 30483 30707 30949 31190 31432 31674 31916 32157 32399 32641 32882 33124 33383 33643 33902 34162 34421 34680 34940 35199 35459 35718 35998 36277 36556 36836 37116 37395 37674 37954 38234 38513 38816 39119 39422 39725 40028 40332 40635 40938 41241 41544 41870 42196 42522 42848 43174 43499 43825 44151 44477 44803 45154 45504 45855 46205 46556 46907 47257 47608 47958 48309 48684 49058 49432 49807 50182 50556 50930 51305 51680 52054 52458 52861 53264 53668 54072 54475 54878 55282 55686 56089 56480 56871 57262 57653 58044 58436 58827 59218 59609 60000 59920 59841 59761 59681 59602 59522 59442 59362 59283 59203 59135 59067 59000 58932 58864 58796 58728 58661 58593 58525 58489 58453 58416 58380 58344 58308 58272 58235 58199 58163 58170 58178 58186 58193 58200 58208 58216 58223 58230 58238 58292 58347 58401 58456 58510 58564 58619 58673 58728 58782 58878 58974 59071 59167 59263 59359 59455 59552 59648 59744 85864 111984 138104 164224 190344 +Saudi Arabia 2091000 2091000 2091000 2091000 2091000 2091000 2091000 2091000 2091000 2091000 2091000 2092232 2093465 2094698 2095930 2097162 2098395 2099628 2100860 2102092 2103325 2106834 2110343 2113852 2117361 2120870 2124378 2127887 2131396 2134905 2138414 2143243 2148072 2152901 2157730 2162559 2167388 2172217 2177046 2181875 2186704 2191642 2196580 2201518 2206456 2211394 2216332 2221270 2226208 2231146 2236084 2240914 2245744 2250574 2255404 2260234 2265064 2269894 2274724 2279554 2284384 2289883 2295382 2300881 2306380 2311880 2317379 2322878 2328377 2333876 2339375 2346030 2352684 2359339 2365993 2372648 2379303 2385957 2392612 2399266 2405921 2413340 2420759 2428177 2435596 2443015 2450434 2457853 2465271 2472690 2480109 2487774 2495439 2503104 2510769 2518434 2526098 2533763 2541428 2549093 2556758 2564649 2572541 2580432 2588323 2596214 2604106 2611997 2619888 2627780 2635671 2645851 2656031 2666210 2676390 2686570 2696750 2706930 2717109 2727289 2737469 2749098 2760728 2772358 2783987 2795616 2807246 2818876 2830505 2842134 2853764 2865888 2878011 2890134 2902258 2914382 2926505 2938628 2950752 2962876 2974999 2989633 3004266 3018900 3033534 3048168 3062801 3077435 3092069 3106702 3121336 3129058 3136779 3144500 3152222 3159944 3167665 3175386 3183108 3190830 3198551 3207026 3215501 3223975 3232450 3240925 3249400 3257875 3266349 3274824 3283299 3292231 3301163 3310094 3319026 3327958 3336890 3345822 3354753 3363685 3372617 3381811 3391004 3400198 3409392 3418586 3427779 3436973 3446167 3455360 3464554 3473915 3483276 3492637 3501998 3511359 3520720 3530081 3539442 3548803 3558164 3567704 3577244 3586784 3596324 3605864 3615403 3624943 3634483 3644023 3653563 9230925 14808287 20385648 25963010 31540372 +Senegal 1009886 1009886 1009886 1009886 1009886 1009886 1009886 1009886 1009886 1009886 1009886 1011703 1013521 1015338 1017156 1018973 1020790 1022608 1024425 1026243 1028060 1033341 1038623 1043904 1049185 1054466 1059748 1065029 1070310 1075592 1080873 1088375 1095878 1103380 1110882 1118384 1125887 1133389 1140891 1148394 1155896 1163919 1171942 1179965 1187988 1196011 1204034 1212057 1220080 1228103 1236126 1245114 1254101 1263088 1272076 1281064 1290051 1299038 1308026 1317014 1326001 1335641 1345280 1354920 1364559 1374199 1383839 1393478 1403118 1412757 1422397 1432692 1442988 1453283 1463579 1473874 1484169 1494465 1504760 1515056 1525351 1536385 1547419 1558454 1569488 1580522 1591556 1602590 1613625 1624659 1635693 1647579 1659465 1671351 1683237 1695124 1707010 1718896 1730782 1742668 1754554 1767268 1779982 1792696 1805410 1818124 1830839 1843553 1856267 1868981 1881695 1895156 1908617 1922077 1935538 1948999 1962460 1975921 1989381 2002842 2016303 2030298 2044293 2058288 2072283 2086278 2100274 2114269 2128264 2142259 2156254 2171220 2186187 2201153 2216120 2231086 2246052 2261019 2275985 2290952 2305918 2322990 2340062 2357134 2374206 2391278 2408350 2425422 2442494 2459566 2476638 2481944 2487250 2492556 2497862 2503168 2508475 2513781 2519087 2524393 2529699 2535411 2541123 2546834 2552546 2558258 2563970 2569682 2575393 2581105 2586817 2592931 2599045 2605158 2611272 2617386 2623500 2629614 2635727 2641841 2647955 2654463 2660972 2667480 2673988 2680496 2687005 2693513 2700021 2706530 2713038 2719930 2726821 2733713 2740605 2747496 2754388 2761280 2768172 2775063 2781955 2789214 2796474 2803733 2810993 2818252 2825511 2832771 2840030 2847290 2854549 5309494 7764439 10219383 12674328 15129273 +Serbia 2147197 2147197 2147197 2147197 2147197 2147197 2147197 2147197 2147197 2147197 2147197 2152296 2157395 2162494 2167593 2172692 2177791 2182890 2187989 2193088 2198187 2213149 2228112 2243074 2258036 2272998 2287961 2302923 2317885 2332848 2347810 2369382 2390955 2412527 2434100 2455672 2477244 2498817 2520389 2541962 2563534 2587088 2610643 2634198 2657752 2681306 2704861 2728416 2751970 2775524 2799079 2824688 2850296 2875905 2901513 2927122 2952731 2978339 3003948 3029556 3055165 3083117 3111068 3139020 3166971 3194923 3222875 3250826 3278778 3306729 3334681 3365012 3395343 3425673 3456004 3486335 3516666 3546997 3577327 3607658 3637989 3671058 3704127 3737196 3770265 3803334 3836403 3869472 3902541 3935610 3968679 4004988 4041297 4077606 4113915 4150224 4186534 4222843 4259152 4295461 4331770 4371255 4410740 4450224 4489709 4529194 4568679 4608164 4647648 4687133 4726618 4769897 4813176 4856454 4899733 4943012 4986291 5029570 5072848 5116127 5159406 5206812 5254218 5301624 5349030 5396436 5443843 5491249 5538655 5586061 5633467 5685229 5736991 5788753 5840515 5892276 5944038 5995800 6047562 6099324 6151086 6209203 6267320 6325437 6383554 6441671 6499788 6557905 6616022 6674139 6732256 6744359 6756463 6768566 6780669 6792772 6804876 6816979 6829082 6841186 6853289 6864300 6875310 6886321 6897332 6908342 6919353 6930364 6941375 6952385 6963396 6973373 6983351 6993328 7003305 7013282 7023260 7033237 7043214 7053192 7063169 7072189 7081208 7090228 7099248 7108268 7117287 7126307 7135327 7144346 7153366 7161521 7169676 7177831 7185986 7194141 7202296 7210451 7218606 7226761 7234916 7242318 7249719 7257120 7264522 7271924 7279325 7286726 7294128 7301530 7308931 7617340 7925749 8234157 8542566 8850975 +Seychelles 12522 12522 12522 12522 12522 12522 12522 12522 12522 12522 12522 12534 12545 12556 12568 12580 12591 12602 12614 12626 12637 12670 12703 12735 12768 12801 12834 12867 12899 12932 12965 13010 13056 13102 13147 13192 13238 13284 13329 13374 13420 13467 13514 13561 13608 13656 13703 13750 13797 13844 13891 13940 13989 14037 14086 14135 14184 14233 14281 14330 14379 14430 14480 14530 14581 14632 14682 14732 14783 14834 14884 14936 14988 15041 15093 15145 15197 15249 15302 15354 15406 15480 15555 15630 15704 15778 15853 15928 16002 16076 16151 16410 16668 16927 17186 17444 17703 17962 18221 18479 18738 19116 19495 19873 20252 20630 21008 21387 21765 22144 22522 22749 22976 23203 23430 23657 23884 24111 24338 24565 24792 24992 25192 25392 25592 25792 25992 26192 26392 26592 26792 27220 27648 28076 28504 28932 29361 29789 30217 30645 31073 31598 32123 32648 33173 33698 34222 34747 35272 35797 36322 36378 36434 36490 36546 36602 36659 36715 36771 36827 36883 36938 36994 37050 37105 37160 37216 37272 37327 37382 37438 37491 37544 37596 37649 37702 37755 37808 37860 37913 37966 38015 38063 38112 38161 38210 38258 38307 38356 38404 38453 38498 38543 38588 38633 38678 38724 38769 38814 38859 38904 38947 38990 39032 39075 39118 39161 39204 39246 39289 39332 50760 62188 73615 85043 96471 +Sierra Leone 794264 794264 794264 794264 794264 794264 794264 794264 794264 794264 794264 795689 797114 798539 799964 801389 802814 804239 805664 807089 808514 812655 816795 820936 825076 829217 833358 837498 841639 845779 849920 855801 861682 867563 873444 879325 885206 891087 896968 902849 908730 915018 921306 927594 933882 940170 946457 952745 959033 965321 971609 978696 985784 992871 999958 1007046 1014133 1021220 1028307 1035395 1042482 1050085 1057688 1065290 1072893 1080496 1088099 1095702 1103304 1110907 1118510 1126632 1134754 1142876 1150998 1159120 1167241 1175363 1183485 1191607 1199729 1208435 1217142 1225848 1234554 1243260 1251967 1260673 1269379 1278086 1286792 1296172 1305551 1314931 1324310 1333690 1343070 1352449 1361829 1371208 1380588 1390623 1400658 1410693 1420728 1430764 1440799 1450834 1460869 1470904 1480939 1491544 1502149 1512754 1523359 1533964 1544570 1555175 1565780 1576385 1586990 1597971 1608952 1619933 1630914 1641896 1652877 1663858 1674839 1685820 1696801 1708542 1720283 1732024 1743765 1755506 1767246 1778987 1790728 1802469 1814210 1827189 1840168 1853147 1866126 1879106 1892085 1905064 1918043 1931022 1944001 1945883 1947764 1949646 1951528 1953410 1955291 1957173 1959055 1960936 1962818 1964868 1966919 1968969 1971019 1973070 1975120 1977170 1979220 1981271 1983321 1985505 1987689 1989873 1992057 1994242 1996426 1998610 2000794 2002978 2005162 2007453 2009744 2012034 2014325 2016616 2018907 2021198 2023488 2025779 2028070 2030448 2032825 2035202 2037580 2039958 2042335 2044712 2047090 2049468 2051845 2054297 2056748 2059200 2061652 2064104 2066555 2069007 2071459 2073910 2076362 2951726 3827091 4702455 5577820 6453184 +Singapore 30000 30000 30000 30000 30000 30000 30000 30000 30000 30000 30000 30176 30352 30528 30704 30880 31057 31233 31409 31585 31761 32308 32855 33402 33949 34496 35044 35591 36138 36685 37232 38093 38954 39815 40676 41538 42399 43260 44121 44982 45843 46894 47945 48997 50048 51099 52150 53201 54253 55304 56355 57629 58903 60177 61451 62724 63998 65272 66546 67820 69094 70936 72778 74620 76462 78304 80147 81989 83831 85673 87515 90378 93241 96104 98967 101830 104692 107555 110418 113281 116144 120302 124460 128618 132776 136934 141092 145250 149408 153566 157724 163539 169354 175169 180984 186800 192615 198430 204245 210060 215875 223697 231518 239340 247162 254984 262805 270627 278449 286270 294092 304280 314469 324657 334845 345034 355222 365410 375598 385787 395975 414125 432276 450426 468576 486726 504877 523027 541177 559328 577478 594596 611714 628832 645950 663068 680185 697303 714421 731539 748657 776001 803345 830689 858033 885378 912722 940066 967410 994754 1022098 1026685 1031271 1035858 1040444 1045031 1049618 1054204 1058791 1063377 1067964 1073195 1078427 1083658 1088889 1094120 1099352 1104583 1109814 1115046 1120277 1126057 1131836 1137616 1143396 1149176 1154955 1160735 1166515 1172294 1178074 1184295 1190516 1196737 1202958 1209178 1215399 1221620 1227841 1234062 1240283 1246828 1253373 1259917 1266462 1273007 1279552 1286097 1292641 1299186 1305731 1312470 1319209 1325948 1332687 1339426 1346165 1352904 1359643 1366382 1373121 2219245 3065369 3911492 4757616 5603740 +Slovak Republic 2140651 2140651 2140651 2140651 2140651 2140651 2140651 2140651 2140651 2140651 2140651 2142719 2144786 2146854 2148922 2150990 2153057 2155125 2157193 2159260 2161328 2167253 2173177 2179102 2185026 2190951 2196876 2202800 2208725 2214649 2220574 2228809 2237043 2245278 2253513 2261748 2269982 2278217 2286452 2294686 2302921 2311461 2320001 2328541 2337081 2345622 2354162 2362702 2371242 2379782 2388322 2397016 2405710 2414405 2423099 2431793 2440487 2449181 2457876 2466570 2475264 2484274 2493285 2502296 2511306 2520316 2529327 2538338 2547348 2556358 2565369 2574685 2584001 2593317 2602633 2611950 2621266 2630582 2639898 2649214 2658530 2668182 2677834 2687485 2697137 2706789 2716441 2726093 2735744 2745396 2755048 2765077 2775105 2785134 2795162 2805191 2815220 2825248 2835277 2845305 2855334 2865712 2876090 2886468 2896846 2907224 2917601 2927979 2938357 2948735 2959113 2969949 2980785 2991621 3002457 3013292 3024128 3034964 3045800 3056636 3067472 3078847 3090223 3101598 3112973 3124348 3135724 3147099 3158474 3169850 3181225 3193022 3204819 3216617 3228414 3240211 3252008 3263805 3275603 3287400 3299197 3312935 3326672 3340410 3354148 3367886 3381623 3395361 3409099 3422836 3436574 3443912 3451251 3458589 3465927 3473266 3480604 3487942 3495280 3502619 3509957 3517557 3525158 3532758 3540358 3547958 3555559 3563159 3570759 3578360 3585960 3593635 3601309 3608984 3616659 3624334 3632008 3639683 3647358 3655032 3662707 3670304 3677900 3685497 3693094 3700690 3708287 3715884 3723481 3731077 3738674 3746076 3753478 3760881 3768283 3775685 3783087 3790489 3797892 3805294 3812696 3819824 3826952 3834080 3841208 3848336 3855465 3862593 3869721 3876849 3883977 4192433 4500889 4809346 5117802 5426258 +Slovenia 469664 469664 469664 469664 469664 469664 469664 469664 469664 469664 469664 470780 471895 473011 474127 475242 476358 477474 478590 479705 480821 484095 487369 490642 493916 497190 500464 503738 507011 510285 513559 518279 523000 527720 532440 537160 541881 546601 551321 556042 560762 565916 571070 576224 581378 586532 591687 596841 601995 607149 612303 617933 623562 629192 634821 640451 646081 651710 657340 662969 668599 674746 680894 687041 693188 699336 705483 711630 717777 723925 730072 736745 743419 750092 756766 763439 770112 776786 783459 790133 796806 804085 811364 818643 825922 833200 840479 847758 855037 862316 869595 877590 885585 893581 901576 909571 917566 925561 933557 941552 949547 958245 966943 975642 984340 993038 1001736 1010434 1019133 1027831 1036529 1046052 1055575 1065099 1074622 1084145 1093668 1103191 1112715 1122238 1131761 1142163 1152566 1162968 1173370 1183772 1194175 1204577 1214979 1225382 1235784 1247142 1258501 1269860 1281218 1292576 1303935 1315294 1326652 1338010 1349369 1361742 1374114 1386486 1398859 1411232 1423604 1435976 1448349 1460722 1473094 1473948 1474803 1475657 1476511 1477366 1478220 1479074 1479928 1480783 1481637 1482641 1483644 1484648 1485651 1486655 1487659 1488662 1489666 1490669 1491673 1492789 1493906 1495022 1496139 1497255 1498371 1499488 1500604 1501721 1502837 1504032 1505227 1506423 1507618 1508813 1510008 1511203 1512399 1513594 1514789 1516031 1517272 1518514 1519755 1520997 1522239 1523480 1524722 1525963 1527205 1528463 1529721 1530979 1532237 1533496 1534754 1536012 1537270 1538528 1539786 1645334 1750882 1856430 1961978 2067526 +Solomon Islands 56998 56998 56998 56998 56998 56998 56998 56998 56998 56998 56998 57066 57135 57203 57272 57340 57408 57477 57545 57614 57682 57879 58075 58272 58468 58665 58862 59058 59255 59451 59648 59923 60198 60473 60748 61023 61298 61573 61848 62123 62398 62686 62973 63261 63548 63836 64124 64411 64699 64986 65274 65411 65549 65686 65824 65961 66098 66236 66373 66511 66648 66784 66920 67057 67193 67329 67465 67601 67738 67874 68010 68144 68277 68411 68544 68678 68812 68945 69079 69212 69346 69478 69609 69740 69872 70004 70135 70266 70398 70530 70661 70791 70921 71051 71181 71311 71441 71571 71701 71831 71961 72087 72214 72340 72466 72592 72719 72845 72971 73098 73224 73419 73613 73808 74002 74197 74392 74586 74781 74975 75170 75517 75863 76210 76556 76903 77250 77596 77943 78289 78636 79158 79681 80203 80725 81248 81770 82292 82814 83337 83859 84452 85046 85639 86233 86826 87419 88013 88606 89200 89793 89994 90196 90398 90599 90800 91002 91204 91405 91606 91808 92035 92262 92489 92716 92944 93171 93398 93625 93852 94079 94327 94575 94824 95072 95320 95568 95816 96065 96313 96561 96827 97093 97359 97625 97891 98157 98423 98689 98955 99221 99502 99782 100063 100343 100624 100905 101185 101466 101746 102027 102320 102614 102908 103201 103494 103788 104082 104375 104668 104962 200688 296414 392139 487865 583591 +Somalia 991488 991913 992338 992763 993188 993613 994038 994463 994888 995313 995738 997736 999733 1001731 1003728 1005726 1007724 1009721 1011719 1013716 1015714 1020707 1025701 1030694 1035688 1040681 1045674 1050668 1055661 1060655 1065648 1072562 1079475 1086389 1093302 1100216 1107130 1114043 1120957 1127870 1134784 1142146 1149508 1156871 1164233 1171595 1178957 1186319 1193682 1201044 1208406 1216146 1223886 1231626 1239366 1247106 1254846 1262586 1270326 1278066 1285806 1294042 1302278 1310513 1318749 1326985 1335221 1343457 1351692 1359928 1368164 1376891 1385618 1394344 1403071 1411798 1420525 1429252 1437978 1446705 1455432 1464711 1473990 1483270 1492549 1501828 1511107 1520386 1529666 1538945 1548224 1558140 1568057 1577973 1587889 1597806 1607722 1617638 1627554 1637471 1647387 1657911 1668434 1678958 1689481 1700005 1710529 1721052 1731576 1742099 1752623 1763892 1775160 1786429 1797698 1808966 1820235 1831504 1842773 1854041 1865310 1877412 1889513 1901614 1913716 1925818 1937919 1950020 1962122 1974224 1986325 1999212 2012098 2024985 2037872 2050758 2063645 2076532 2089419 2102305 2115192 2130081 2144970 2159859 2174748 2189636 2204525 2219414 2234303 2249192 2264081 2268430 2272780 2277130 2281479 2285828 2290178 2294528 2298877 2303226 2307576 2312000 2316423 2320846 2325270 2329694 2334117 2338540 2342964 2347388 2351811 2356337 2360862 2365388 2369913 2374439 2378965 2383490 2388016 2392541 2397067 2401718 2406369 2411020 2415671 2420322 2424972 2429623 2434274 2438925 2443576 2448371 2453167 2457962 2462758 2467553 2472348 2477144 2481939 2486735 2491530 2496484 2501437 2506391 2511345 2516298 2521252 2526206 2531160 2536113 2541067 4190274 5839482 7488689 9137897 10787104 +South Africa 1440820 1446216 1451612 1457008 1462404 1467800 1473195 1478591 1483987 1489383 1494779 1503014 1511248 1519483 1527717 1535952 1544187 1552421 1560656 1568890 1577125 1590910 1604694 1618478 1632263 1646048 1659832 1673616 1687401 1701186 1714970 1732880 1750790 1768700 1786610 1804520 1822430 1840340 1858250 1876160 1894070 1913850 1933631 1953411 1973191 1992972 2012752 2032532 2052312 2072093 2091873 2113704 2135534 2157365 2179195 2201026 2222857 2244687 2266518 2288348 2310179 2342145 2374110 2406076 2438042 2470008 2501973 2533939 2565905 2597870 2629836 2681059 2732282 2783505 2834728 2885951 2937174 2988397 3039620 3090843 3142066 3212444 3282823 3353201 3423579 3493958 3564336 3634714 3705092 3775471 3845849 3933378 4020906 4108434 4195963 4283492 4371020 4458548 4546077 4633606 4721134 4827609 4934085 5040560 5147035 5253510 5359986 5466461 5572936 5679412 5785887 5922828 6059769 6196711 6333652 6470593 6607534 6744475 6881417 7018358 7155299 7327821 7500344 7672866 7845388 8017910 8190433 8362955 8535477 8708000 8880522 9094641 9308761 9522880 9736999 9951118 10165238 10379357 10593476 10807596 11021715 11287860 11554004 11820149 12086294 12352438 12618583 12884728 13150873 13417017 13683162 13714235 13745307 13776380 13807452 13838525 13869598 13900670 13931743 13962815 13993888 14026740 14059592 14092444 14125296 14158148 14191001 14223853 14256705 14289557 14322409 14356682 14390955 14425228 14459501 14493774 14528047 14562320 14596593 14630866 14665139 14700588 14736036 14771485 14806934 14842382 14877831 14913280 14948729 14984177 15019626 15056119 15092612 15129105 15165598 15202092 15238585 15275078 15311571 15348064 15384557 15422082 15459608 15497134 15534659 15572184 15609710 15647236 15684761 15722286 15759812 23505931 31252050 38998168 46744287 54490406 +Spain 11549294 11581694 11614095 11646495 11678896 11711296 11743696 11776097 11808497 11840898 11873298 11919287 11965277 12011266 12057256 12103245 12149234 12195224 12241213 12287203 12333192 12405049 12476906 12548763 12620620 12692477 12764334 12836191 12908048 12979905 13051762 13141391 13231019 13320648 13410276 13499905 13589534 13679162 13768791 13858419 13948048 14037929 14127810 14217691 14307572 14397452 14487333 14577214 14667095 14756976 14846857 14923112 14999367 15075622 15151877 15228132 15304386 15380641 15456896 15533151 15609406 15671078 15732749 15794421 15856093 15917764 15979436 16041108 16102780 16164451 16226123 16295611 16365099 16434587 16504075 16573564 16643052 16712540 16782028 16851516 16921004 17007283 17093562 17179840 17266119 17352398 17438677 17524956 17611234 17697513 17783792 17870657 17957523 18044388 18131254 18218119 18304984 18391850 18478715 18565581 18652446 18778286 18904127 19029967 19155807 19281648 19407488 19533328 19659168 19785009 19910849 20050608 20190367 20330127 20469886 20609645 20749404 20889163 21028923 21168682 21308441 21528968 21749494 21970021 22190548 22411074 22631601 22852128 23072655 23293181 23513708 23745167 23976627 24208086 24439546 24671005 24902464 25133924 25365383 25596843 25828302 26052446 26276589 26500732 26724876 26949020 27173163 27397306 27621450 27845594 28069737 28086496 28103254 28120013 28136771 28153530 28170289 28187047 28203806 28220564 28237323 28256635 28275947 28295259 28314571 28333882 28353194 28372506 28391818 28411130 28430442 28451577 28472712 28493846 28514981 28536116 28557251 28578386 28599520 28620655 28641790 28664226 28686662 28709098 28731534 28753970 28776406 28798842 28821278 28843714 28866150 28889575 28912999 28936424 28959848 28983273 29006698 29030122 29053547 29076971 29100396 29124717 29149037 29173358 29197678 29221999 29246320 29270640 29294961 29319281 29343602 32699221 36054841 39410460 42766080 46121699 +Sri Lanka 1213000 1213000 1213000 1213000 1213000 1213000 1213000 1213000 1213000 1213000 1213000 1219860 1226720 1233581 1240441 1247301 1254161 1261021 1267882 1274742 1281602 1302850 1324098 1345347 1366595 1387843 1409091 1430339 1451588 1472836 1494084 1527350 1560615 1593881 1627146 1660412 1693678 1726943 1760209 1793474 1826740 1861779 1896819 1931858 1966898 2001937 2036976 2072016 2107055 2142095 2177134 2208806 2240478 2272150 2303822 2335494 2367166 2398838 2430510 2462182 2493854 2521996 2550138 2578279 2606421 2634563 2662705 2690847 2718988 2747130 2775272 2802167 2829062 2855956 2882851 2909746 2936641 2963536 2990430 3017325 3044220 3078571 3112922 3147273 3181624 3215976 3250327 3284678 3319029 3353380 3387731 3446970 3506210 3565449 3624689 3683928 3743167 3802407 3861646 3920886 3980125 4051352 4122580 4193807 4265035 4336262 4407489 4478717 4549944 4621172 4692399 4751291 4810184 4869076 4927968 4986860 5045753 5104645 5163537 5222430 5281322 5328016 5374709 5421403 5468097 5514790 5561484 5608178 5654872 5701565 5748259 5791025 5833791 5876558 5919324 5962090 6004856 6047622 6090389 6133155 6175921 6365910 6555899 6745888 6935877 7125866 7315854 7505843 7695832 7885821 8075810 8088380 8100949 8113518 8126088 8138658 8151227 8163796 8176366 8188936 8201505 8215233 8228961 8242688 8256416 8270144 8283872 8297600 8311327 8325055 8338783 8353830 8368876 8383923 8398969 8414016 8429063 8444109 8459156 8474202 8489249 8505702 8522156 8538610 8555063 8571516 8587970 8604424 8620877 8637330 8653784 8671660 8689535 8707411 8725287 8743162 8761038 8778914 8796790 8814665 8832541 8851778 8871015 8890252 8909489 8928726 8947963 8967200 8986437 9005674 9024911 11362931 13700951 16038970 18376990 20715010 +Sudan 3994154 3999479 4004805 4010130 4015456 4020781 4026106 4031432 4036757 4042083 4047408 4056216 4065024 4073832 4082640 4091448 4100256 4109064 4117872 4126680 4135488 4150850 4166211 4181573 4196935 4212296 4227658 4243020 4258382 4273743 4289105 4308604 4328102 4347601 4367100 4386598 4406097 4425596 4445095 4464593 4484092 4504477 4524862 4545248 4565633 4586018 4606403 4626788 4647174 4667559 4687944 4693092 4698240 4703388 4708536 4713684 4718832 4723980 4729128 4734276 4739424 4744071 4748719 4753366 4758013 4762660 4767308 4771955 4776602 4781250 4785897 4789927 4793957 4797987 4802017 4806047 4810077 4814107 4818137 4822167 4826197 4829602 4833008 4836414 4839819 4843224 4846630 4850036 4853441 4856846 4860252 4863043 4865833 4868624 4871414 4874205 4876996 4879786 4882577 4885367 4888158 4890159 4892160 4894161 4896162 4898164 4900165 4902166 4904167 4906168 4908169 4916410 4924651 4932892 4941133 4949374 4957616 4965857 4974098 4982339 4990580 5013268 5035955 5058643 5081331 5104018 5126706 5149394 5172082 5194769 5217457 5241176 5264895 5288614 5312333 5336052 5359772 5383491 5407210 5430929 5454648 5482578 5510507 5538437 5566366 5594296 5622226 5650155 5678085 5706014 5733944 5748917 5763889 5778862 5793834 5808807 5823780 5838752 5853725 5868697 5883670 5899212 5914753 5930295 5945836 5961378 5976920 5992461 6008003 6023544 6039086 6055227 6071367 6087508 6103648 6119789 6135930 6152070 6168211 6184351 6200492 6217264 6234036 6250808 6267580 6284352 6301123 6317895 6334667 6351439 6368211 6385648 6403085 6420523 6437960 6455397 6472834 6490271 6507709 6525146 6542583 6560722 6578860 6596998 6615137 6633276 6651414 6669552 6687691 6705830 6723968 13426151 20128334 26830516 33532699 40234882 +Suriname 80721 80721 80721 80721 80721 80721 80721 80721 80721 80721 80721 80885 81048 81212 81375 81539 81703 81866 82030 82193 82357 82834 83312 83789 84266 84744 85221 85698 86175 86653 87130 87812 88494 89176 89858 90540 91221 91903 92585 93267 93949 94684 95420 96155 96890 97626 98361 99096 99831 100567 101302 102080 102857 103635 104413 105190 105968 106746 107524 108301 109079 109916 110754 111591 112429 113266 114103 114941 115778 116616 117453 118350 119247 120144 121041 121938 122836 123733 124630 125527 126424 127389 128354 129319 130284 131249 132214 133179 134144 135109 136074 137118 138163 139208 140252 141296 142341 143386 144430 145474 146519 147640 148761 149882 151003 152124 153246 154367 155488 156609 157730 158948 160166 161384 162602 163820 165038 166256 167474 168692 169910 171240 172570 173899 175229 176559 177889 179219 180548 181878 183208 184642 186076 187510 188944 190378 191812 193246 194680 196114 197548 199293 201038 202783 204528 206274 208019 209764 211509 213254 214999 215767 216535 217303 218071 218839 219607 220375 221143 221911 222679 223376 224074 224771 225469 226166 226863 227561 228258 228956 229653 230322 230992 231662 232331 233000 233670 234340 235009 235678 236348 237022 237696 238370 239044 239718 240391 241065 241739 242413 243087 243788 244488 245189 245890 246590 247291 247992 248693 249393 250094 250833 251572 252311 253050 253790 254529 255268 256007 256746 257485 314583 371681 428779 485877 542975 +Swaziland 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86000 86030 86059 86089 86118 86148 86178 86207 86237 86266 86296 86326 86355 86385 86414 86444 86474 86503 86533 86562 86592 86622 86651 86680 86710 86740 86769 86798 86828 86858 86887 86917 86946 86976 87005 87035 87065 87094 87124 87153 87183 87240 87297 87354 87411 87468 87525 87582 87639 87696 87753 89676 91599 93522 95445 97368 99291 101214 103137 105060 106983 107802 108622 109441 110260 111080 111899 112718 113537 114357 115176 117741 120306 122871 125436 128002 130567 133132 135697 138262 140827 144006 147186 150366 153545 156724 159904 163084 166263 169442 172622 182660 192698 202735 212773 222811 232849 242887 252924 262962 273000 273595 274190 274786 275381 275976 276571 277166 277762 278357 278952 279591 280229 280868 281506 282145 282784 283422 284061 284699 285338 286023 286708 287393 288078 288764 289449 290134 290819 291504 292189 292920 293652 294383 295114 295846 296577 297308 298039 298771 299502 300277 301051 301826 302601 303376 304150 304925 305700 306474 307249 308060 308871 309683 310494 311305 312116 312927 313739 314550 315361 509683 704005 898326 1092648 1286970 +Sweden 2354189 2361589 2368988 2376388 2383787 2391187 2398587 2405986 2413386 2420785 2428185 2444519 2460852 2477186 2493519 2509853 2526187 2542520 2558854 2575187 2591521 2617946 2644372 2670797 2697222 2723648 2750073 2776498 2802923 2829349 2855774 2883486 2911198 2938909 2966621 2994333 3022045 3049757 3077468 3105180 3132892 3163662 3194432 3225202 3255972 3286742 3317513 3348283 3379053 3409823 3440593 3477487 3514381 3551276 3588170 3625064 3661958 3698852 3735747 3772641 3809535 3846018 3882501 3918984 3955467 3991950 4028433 4064916 4101399 4137882 4174365 4207238 4240111 4272984 4305857 4338730 4371603 4404476 4437349 4470222 4503095 4530796 4558498 4586199 4613901 4641602 4669303 4697005 4724706 4752408 4780109 4813208 4846306 4879405 4912503 4945602 4978701 5011799 5044898 5077996 5111095 5149261 5187427 5225594 5263760 5301926 5340092 5378258 5416425 5454591 5492757 5530523 5568289 5606055 5643821 5681588 5719354 5757120 5794886 5832652 5870418 5897433 5924448 5951462 5978477 6005492 6032507 6059522 6086536 6113551 6140566 6161848 6183129 6204410 6225692 6246974 6268255 6289536 6310818 6332100 6353381 6419034 6484687 6550341 6615994 6681647 6747300 6812953 6878607 6944260 7009913 7016130 7022346 7028563 7034780 7040996 7047213 7053430 7059647 7065863 7072080 7077426 7082772 7088118 7093464 7098810 7104155 7109501 7114847 7120193 7125539 7130297 7135055 7139814 7144572 7149330 7154088 7158846 7163605 7168363 7173121 7177526 7181932 7186338 7190743 7195148 7199554 7203960 7208365 7212770 7217176 7221416 7225657 7229897 7234137 7238378 7242618 7246858 7251098 7255339 7259579 7263792 7268005 7272218 7276431 7280644 7284856 7289069 7293282 7297495 7301708 7797252 8292795 8788339 9283882 9779426 +Switzerland 1826051 1833942 1841833 1849724 1857615 1865506 1873398 1881289 1889180 1897071 1904962 1913880 1922799 1931718 1940636 1949554 1958473 1967392 1976310 1985228 1994147 2004837 2015527 2026217 2036907 2047598 2058288 2068978 2079668 2090358 2101048 2113881 2126715 2139548 2152381 2165214 2178048 2190881 2203714 2216548 2229381 2243533 2257686 2271838 2285991 2300143 2314295 2328448 2342600 2356753 2370905 2384972 2399039 2413105 2427172 2441239 2455306 2469373 2483439 2497506 2511573 2526806 2542039 2557272 2572505 2587738 2602972 2618205 2633438 2648671 2663904 2679811 2695719 2711626 2727534 2743441 2759348 2775256 2791163 2807071 2822978 2837924 2852871 2867817 2882764 2897710 2912656 2927603 2942549 2957496 2972442 3004921 3037400 3069879 3102358 3134837 3167316 3199795 3232274 3264753 3297232 3340148 3383064 3425980 3468896 3511812 3554728 3597644 3640560 3683476 3726392 3740322 3754252 3768181 3782111 3796041 3809971 3823901 3837830 3851760 3865690 3883352 3901014 3918676 3936338 3954000 3971662 3989324 4006986 4024648 4042310 4060039 4077767 4095496 4113224 4130953 4148682 4166410 4184139 4201867 4219596 4264445 4309294 4354144 4398993 4443842 4488691 4533540 4578390 4623239 4668088 4673908 4679727 4685546 4691366 4697186 4703005 4708824 4714644 4720464 4726283 4732550 4738818 4745086 4751353 4757620 4763888 4770156 4776423 4782690 4788958 4795261 4801564 4807867 4814170 4820472 4826775 4833078 4839381 4845684 4851987 4858077 4864167 4870256 4876346 4882436 4888526 4894616 4900705 4906795 4912885 4918678 4924470 4930262 4936055 4941848 4947640 4953432 4959225 4965018 4970810 4976395 4981981 4987566 4993152 4998737 5004322 5009908 5015493 5021079 5026664 5681064 6335464 6989863 7644263 8298663 +Syria 1337000 1337000 1337000 1337000 1337000 1337000 1337000 1337000 1337000 1337000 1337000 1338192 1339385 1340577 1341770 1342962 1344154 1345347 1346539 1347732 1348924 1352336 1355748 1359161 1362573 1365985 1369397 1372809 1376222 1379634 1383046 1387780 1392513 1397246 1401980 1406714 1411447 1416180 1420914 1425648 1430381 1435276 1440172 1445067 1449963 1454858 1459753 1464649 1469544 1474440 1479335 1484322 1489309 1494295 1499282 1504269 1509256 1514243 1519229 1524216 1529203 1535219 1541235 1547251 1553267 1559283 1565299 1571315 1577331 1583347 1589363 1597184 1605005 1612826 1620647 1628468 1636288 1644109 1651930 1659751 1667572 1676670 1685769 1694867 1703966 1713064 1722162 1731261 1740359 1749458 1758556 1768188 1777821 1787453 1797086 1806718 1816350 1825983 1835615 1845248 1854880 1865017 1875155 1885292 1895429 1905566 1915704 1925841 1935978 1946116 1956253 1980656 2005059 2029461 2053864 2078267 2102670 2127073 2151475 2175878 2200281 2234686 2269091 2303496 2337901 2372306 2406711 2441116 2475521 2509926 2544331 2584116 2623901 2663685 2703470 2743255 2783040 2822825 2862609 2902394 2942179 2989294 3036409 3083524 3130639 3177754 3224869 3271984 3319099 3366214 3413329 3422061 3430793 3439525 3448257 3456990 3465722 3474454 3483186 3491918 3500650 3510108 3519565 3529023 3538481 3547938 3557396 3566854 3576312 3585769 3595227 3605408 3615590 3625771 3635953 3646134 3656315 3666497 3676678 3686860 3697041 3707935 3718830 3729724 3740619 3751513 3762407 3773302 3784196 3795091 3805985 3817573 3829161 3840749 3852337 3863924 3875512 3887100 3898688 3910276 3921864 3934117 3946369 3958622 3970874 3983127 3995380 4007632 4019885 4032137 4044390 6935995 9827599 12719204 15610808 18502413 +Tajikistan 466629 466629 466629 466629 466629 466629 466629 466629 466629 466629 466629 467783 468937 470091 471245 472398 473552 474706 475860 477014 478168 481560 484951 488342 491734 495126 498517 501908 505300 508692 512083 516985 521887 526790 531692 536594 541496 546398 551301 556203 561105 566476 571848 577219 582591 587962 593333 598705 604076 609448 614819 620636 626452 632269 638086 643902 649719 655536 661353 667169 672986 679353 685720 692086 698453 704820 711187 717554 723920 730287 736654 743580 750507 757434 764360 771286 778213 785140 792066 798992 805919 813492 821064 828637 836210 843782 851355 858928 866501 874073 881646 889987 898327 906668 915008 923349 931690 940030 948371 956711 965052 974146 983241 992335 1001429 1010524 1019618 1028712 1037806 1046901 1055995 1066018 1076041 1086064 1096087 1106110 1116134 1126157 1136180 1146203 1156226 1167294 1178363 1189432 1200500 1211568 1222637 1233706 1244774 1255842 1266911 1279039 1291167 1303295 1315423 1327552 1339680 1351808 1363936 1376064 1388192 1402523 1416854 1431185 1445516 1459847 1474178 1488509 1502840 1517171 1531502 1535997 1540492 1544988 1549483 1553978 1558473 1562968 1567464 1571959 1576454 1581263 1586072 1590880 1595689 1600498 1605307 1610116 1614924 1619733 1624542 1629500 1634457 1639414 1644372 1649330 1654287 1659244 1664202 1669160 1674117 1679126 1684134 1689143 1694152 1699160 1704169 1709178 1714187 1719195 1724204 1729234 1734264 1739294 1744324 1749354 1754384 1759414 1764444 1769474 1774504 1779597 1784691 1789784 1794877 1799970 1805064 1810157 1815250 1820344 1825437 3156721 4488004 5819288 7150571 8481855 +Tanzania 3019768 3019768 3019768 3019768 3019768 3019768 3019768 3019768 3019768 3019768 3019768 3022596 3025425 3028254 3031082 3033910 3036739 3039568 3042396 3045224 3048053 3056153 3064254 3072354 3080455 3088555 3096655 3104756 3112856 3120957 3129057 3140307 3151558 3162808 3174058 3185308 3196559 3207809 3219059 3230310 3241560 3253215 3264870 3276524 3288179 3299834 3311489 3323144 3334798 3346453 3358108 3369635 3381162 3392690 3404217 3415744 3427271 3438798 3450326 3461853 3473380 3485302 3497224 3509146 3521068 3532990 3544913 3556835 3568757 3580679 3592601 3604902 3617203 3629504 3641805 3654106 3666406 3678707 3691008 3703309 3715610 3728328 3741046 3753764 3766482 3779200 3791918 3804636 3817354 3830072 3842790 3855977 3869164 3882351 3895538 3908725 3921912 3935099 3948286 3961473 3974660 3988278 4001896 4015514 4029132 4042750 4056368 4069986 4083604 4097222 4110840 4125166 4139493 4153819 4168145 4182472 4196798 4211124 4225450 4239777 4254103 4342445 4430787 4519129 4607471 4695813 4784155 4872497 4960839 5049181 5137523 5264728 5391933 5519138 5646343 5773548 5900752 6027957 6155162 6282367 6409572 6533591 6657611 6781630 6905650 7029669 7153688 7277708 7401727 7525747 7649766 7669520 7689273 7709027 7728781 7748534 7768288 7788042 7807796 7827549 7847303 7868164 7889025 7909885 7930746 7951607 7972468 7993329 8014189 8035050 8055911 8077795 8099678 8121562 8143445 8165329 8187213 8209096 8230980 8252863 8274747 8297594 8320441 8343288 8366135 8388982 8411830 8434677 8457524 8480371 8503218 8526995 8550771 8574548 8598324 8622101 8645878 8669654 8693431 8717207 8740984 8765682 8790380 8815079 8839777 8864475 8889173 8913871 8938570 8963268 8987966 17884457 26780948 35677438 44573929 53470420 +Thailand 4665000 4665000 4665000 4665000 4665000 4665000 4665000 4665000 4665000 4665000 4665000 4669719 4674437 4679156 4683875 4688594 4693312 4698031 4702750 4707468 4712187 4725718 4739248 4752779 4766310 4779840 4793371 4806902 4820433 4833963 4847494 4866323 4885152 4903982 4922811 4941640 4960469 4979298 4998128 5016957 5035786 5056965 5078144 5099322 5120501 5141680 5162859 5184038 5205216 5226395 5247574 5274503 5301433 5328362 5355292 5382221 5409150 5436080 5463009 5489939 5516868 5550432 5583995 5617559 5651123 5684686 5718250 5751814 5785378 5818941 5852505 5894598 5936690 5978782 6020875 6062968 6105060 6147152 6189245 6231338 6273430 6324300 6375171 6426041 6476911 6527782 6578652 6629522 6680392 6731263 6782133 6852160 6922186 6992212 7062239 7132266 7202292 7272318 7342345 7412372 7482398 7582963 7683529 7784094 7884660 7985225 8085790 8186356 8286921 8387487 8488052 8641742 8795432 8949122 9102812 9256502 9410192 9563882 9717572 9871262 10024952 10289978 10555003 10820028 11085054 11350080 11615105 11880130 12145156 12410182 12675207 12994226 13313245 13632264 13951283 14270302 14589322 14908341 15227360 15546379 15865398 16349894 16834390 17318885 17803381 18287877 18772373 19256869 19741364 20225860 20710356 20765641 20820925 20876210 20931495 20986780 21042064 21097349 21152634 21207918 21263203 21320682 21378161 21435639 21493118 21550597 21608076 21665555 21723033 21780512 21837991 21897846 21957700 22017554 22077409 22137264 22197118 22256972 22316827 22376682 22436536 22498925 22561315 22623704 22686093 22748482 22810872 22873261 22935650 22998040 23060429 23125490 23190551 23255613 23320674 23385735 23450796 23515857 23580919 23645980 23711041 23778889 23846737 23914585 23982433 24050280 24118128 24185976 24253824 24321672 24389520 33103488 41817456 50531423 59245391 67959359 +Timor-Leste 137262 137262 137262 137262 137262 137262 137262 137262 137262 137262 137262 137674 138087 138499 138912 139324 139736 140149 140561 140974 141386 142609 143832 145054 146277 147500 148723 149946 151168 152391 153614 155406 157197 158989 160781 162572 164364 166156 167948 169739 171531 173532 175533 177533 179534 181535 183536 185537 187537 189538 191539 193756 195974 198191 200409 202626 204843 207061 209278 211496 213713 216187 218661 221136 223610 226084 228558 231032 233507 235981 238455 241195 243935 246675 249415 252156 254896 257636 260376 263116 265856 268908 271961 275014 278066 281118 284171 287224 290276 293328 296381 299812 303243 306674 310105 313536 316968 320399 323830 327261 330692 334502 338313 342123 345934 349744 353554 357365 361175 364986 368796 373073 377350 381626 385903 390180 394457 398734 403010 407287 411564 415209 418855 422500 426145 429790 433436 437081 440726 444372 448017 448143 448268 448394 448519 448645 448771 448896 449022 449147 449273 447686 446098 444510 442923 441336 439748 438160 436573 434986 433398 433877 434357 434836 435316 435795 436274 436754 437233 437713 438192 438707 439223 439738 440254 440769 441284 441800 442315 442831 443346 443901 444456 445010 445565 446120 446675 447230 447784 448339 448894 449491 450087 450684 451280 451877 452474 453070 453667 454263 454860 455500 456139 456779 457419 458058 458698 459338 459978 460617 461257 461940 462623 463307 463990 464673 465356 466039 466723 467406 468089 611424 754759 898095 1041430 1184765 +Togo 445985 445985 445985 445985 445985 445985 445985 445985 445985 445985 445985 447042 448099 449156 450213 451270 452328 453385 454442 455499 456556 459658 462760 465861 468963 472065 475167 478269 481370 484472 487574 492046 496517 500989 505460 509932 514404 518875 523347 527818 532290 537172 542053 546935 551816 556698 561580 566461 571343 576224 581106 586394 591681 596968 602256 607544 612831 618118 623406 628694 633981 639750 645518 651287 657055 662824 668593 674361 680130 685898 691667 697924 704180 710437 716694 722950 729207 735464 741721 747977 754234 761052 767871 774689 781508 788326 795144 801963 808781 815600 822418 829901 837384 844867 852350 859834 867317 874800 882283 889766 897249 905383 913516 921650 929784 937918 946051 954185 962319 970452 978586 987508 996430 1005352 1014274 1023196 1032119 1041041 1049963 1058885 1067807 1077600 1087393 1097186 1106979 1116772 1126564 1136357 1146150 1155943 1165736 1176427 1187118 1197809 1208500 1219191 1229882 1240573 1251264 1261955 1272646 1284927 1297208 1309490 1321771 1334052 1346333 1358614 1370896 1383177 1395458 1398460 1401463 1404465 1407468 1410470 1413472 1416475 1419477 1422480 1425482 1427125 1428767 1430410 1432052 1433695 1435338 1436980 1438623 1440265 1441908 1442926 1443945 1444963 1445981 1447000 1448018 1449036 1450054 1451073 1452091 1453034 1453977 1454920 1455863 1456806 1457749 1458692 1459635 1460578 1461521 1462753 1463985 1465216 1466448 1467680 1468912 1470144 1471375 1472607 1473839 1475528 1477217 1478907 1480596 1482285 1483974 1485663 1487353 1489042 1490731 2653500 3816270 4979039 6141809 7304578 +Tonga 18658 18654 18651 18647 18643 18640 18636 18632 18628 18625 18621 18617 18614 18610 18606 18602 18599 18595 18591 18588 18584 18580 18577 18573 18570 18566 18562 18559 18555 18552 18548 18545 18542 18538 18535 18532 18529 18526 18522 18519 18516 18522 18528 18534 18540 18546 18553 18559 18565 18571 18577 18597 18617 18637 18657 18678 18698 18718 18738 18758 18778 18806 18834 18862 18890 18918 18947 18975 19003 19031 19059 19087 19116 19144 19173 19201 19229 19258 19286 19315 19343 19372 19401 19430 19459 19488 19517 19546 19575 19604 19633 19721 19809 19897 19985 20072 20160 20248 20336 20424 20512 20730 20947 21165 21383 21600 21818 22036 22254 22471 22689 22887 23085 23284 23482 23680 23878 24076 24275 24473 24671 25047 25424 25800 26176 26552 26929 27305 27681 28058 28434 29077 29721 30364 31008 31651 32294 32938 33581 34225 34868 36103 37338 38574 39809 41044 42279 43514 44750 45985 47220 47429 47638 47847 48056 48266 48475 48684 48893 49102 49311 49497 49683 49869 50055 50241 50427 50613 50799 50985 51171 51332 51494 51655 51816 51978 52139 52300 52461 52623 52784 52921 53058 53195 53332 53469 53606 53743 53880 54017 54154 54271 54388 54505 54622 54739 54856 54973 55090 55207 55324 55428 55532 55637 55741 55845 55949 56053 56158 56262 56366 66327 76288 86248 96209 106170 +Trinidad and Tobago 60000 60000 60000 60000 60000 60000 60000 60000 60000 60000 60000 60156 60312 60468 60624 60780 60935 61091 61247 61403 61559 62018 62477 62936 63395 63854 64314 64773 65232 65691 66150 66816 67481 68147 68813 69478 70144 70810 71476 72141 72807 73828 74850 75871 76893 77914 78935 79957 80978 82000 83021 84796 86572 88347 90122 91898 93673 95448 97223 98999 100774 103426 106077 108729 111380 114032 116684 119335 121987 124638 127290 130863 134436 138009 141582 145155 148728 152301 155874 159447 163020 167759 172499 177238 181978 186717 191456 196196 200935 205675 210414 216460 222506 228552 234598 240644 246689 252735 258781 264827 270873 277470 284067 290663 297260 303857 310454 317051 323647 330244 336841 341868 346895 351922 356949 361976 367003 372030 377057 382084 387111 389694 392277 394860 397443 400026 402609 405192 407775 410358 412941 420384 427827 435270 442713 450156 457600 465043 472486 479929 487372 503198 519023 534849 550674 566500 582326 598151 613977 629802 645628 646948 648268 649589 650909 652229 653549 654869 656190 657510 658830 660521 662212 663904 665595 667286 668977 670668 672360 674051 675742 677714 679687 681660 683632 685604 687577 689550 691522 693494 695467 697636 699806 701975 704145 706314 708483 710653 712822 714992 717161 719448 721736 724024 726311 728598 730886 733174 735461 737748 740036 742368 744700 747032 749364 751696 754027 756359 758691 761023 763355 882702 1002048 1121395 1240741 1360088 +Tunisia 862029 862676 863323 863970 864617 865264 865911 866558 867205 867852 868499 870362 872225 874088 875951 877814 879677 881540 883403 885266 887129 891306 895482 899658 903835 908012 912188 916364 920541 924718 928894 934552 940210 945869 951527 957185 962843 968501 974160 979818 985476 991479 997482 1003485 1009488 1015490 1021493 1027496 1033499 1039502 1045505 1052220 1058934 1065649 1072363 1079078 1085793 1092507 1099222 1105936 1112651 1121397 1130144 1138890 1147637 1156383 1165129 1173876 1182622 1191369 1200115 1212509 1224902 1237296 1249690 1262084 1274477 1286871 1299265 1311658 1324052 1339468 1354884 1370301 1385717 1401133 1416549 1431965 1447382 1462798 1478214 1495558 1512902 1530246 1547590 1564934 1582277 1599621 1616965 1634309 1651653 1670944 1690236 1709527 1728818 1748110 1767401 1786692 1805983 1825275 1844566 1875398 1906229 1937061 1967892 1998724 2029556 2060387 2091219 2122050 2152882 2193207 2233533 2273858 2314183 2354508 2394834 2435159 2475484 2515810 2556135 2604014 2651892 2699770 2747649 2795528 2843406 2891284 2939163 2987042 3034920 3091959 3148998 3206037 3263076 3320115 3377154 3434193 3491232 3548271 3605310 3614425 3623539 3632654 3641769 3650884 3659998 3669113 3678228 3687342 3696457 3704147 3711837 3719527 3727217 3734907 3742597 3750287 3757977 3765667 3773357 3779871 3786385 3792900 3799414 3805928 3812442 3818956 3825471 3831985 3838499 3844088 3849676 3855265 3860854 3866442 3872031 3877620 3883209 3888797 3894386 3899301 3904215 3909130 3914045 3918960 3923874 3928789 3933704 3938618 3943533 3948028 3952523 3957017 3961512 3966007 3970502 3974997 3979491 3983986 3988481 5441496 6894510 8347525 9800539 11253554 +Turkey 9773456 9788411 9803366 9818321 9833276 9848232 9863187 9878142 9893097 9908052 9923007 9942538 9962069 9981599 10001130 10020661 10040192 10059723 10079253 10098784 10118315 10146321 10174327 10202333 10230339 10258345 10286351 10314357 10342363 10370369 10398375 10431662 10464948 10498235 10531521 10564808 10598095 10631381 10664668 10697954 10731241 10765593 10799945 10834297 10868649 10903002 10937354 10971706 11006058 11040410 11074762 11110158 11145553 11180949 11216344 11251740 11287136 11322531 11357927 11393322 11428718 11473025 11517332 11561639 11605946 11650253 11694560 11738867 11783174 11827481 11871788 11932044 11992301 12052557 12112813 12173070 12233326 12293582 12353838 12414095 12474351 12545768 12617185 12688602 12760019 12831436 12902854 12974271 13045688 13117105 13188522 13264333 13340144 13415956 13491767 13567578 13643389 13719200 13795012 13870823 13946634 14026618 14106603 14186588 14266572 14346556 14426541 14506526 14586510 14666494 14746479 14691872 14637264 14582656 14528049 14473442 14418834 14364226 14309619 14255012 14200404 14273441 14346478 14419514 14492551 14565588 14638625 14711662 14784698 14857735 14930772 15215412 15500052 15784692 16069332 16353972 16638612 16923252 17207892 17492532 17777172 18123304 18469437 18815569 19161702 19507834 19853966 20200099 20546231 20892364 21238496 21295282 21352068 21408854 21465640 21522426 21579211 21635997 21692783 21749569 21806355 21865113 21923870 21982628 22041385 22100143 22158901 22217658 22276416 22335173 22393931 22454440 22514948 22575457 22635966 22696474 22756983 22817492 22878001 22938509 22999018 23061063 23123108 23185153 23247198 23309244 23371289 23433334 23495379 23557424 23619469 23682842 23746215 23809588 23872961 23936334 23999708 24063081 24126454 24189827 24253200 24317697 24382194 24446691 24511188 24575685 24640182 24704679 24769176 24833673 24898170 35651702 46405234 57158766 67912298 78665830 +Turkmenistan 367215 367215 367215 367215 367215 367215 367215 367215 367215 367215 367215 368127 369039 369950 370862 371774 372686 373598 374509 375421 376333 379014 381694 384375 387055 389736 392417 395097 397778 400458 403139 407014 410890 414766 418641 422516 426392 430268 434143 438018 441894 446142 450390 454638 458886 463134 467382 471630 475878 480126 484374 489017 493659 498302 502945 507588 512230 516873 521516 526158 530801 535889 540976 546064 551151 556239 561327 566414 571502 576589 581677 587218 592759 598301 603842 609383 614924 620465 626007 631548 637089 643154 649220 655285 661350 667416 673481 679546 685611 691677 697742 704430 711117 717805 724493 731180 737868 744556 751244 757931 764619 771919 779220 786520 793821 801121 808421 815722 823022 830323 837623 845654 853686 861717 869748 877780 885811 893842 901873 909905 917936 926760 935585 944409 953234 962058 970882 979707 988531 997356 1006180 1015853 1025525 1035198 1044871 1054544 1064216 1073889 1083562 1093234 1102907 1113716 1124526 1135335 1146144 1156954 1167763 1178572 1189381 1200191 1211000 1212738 1214476 1216213 1217951 1219689 1221427 1223165 1224902 1226640 1228378 1230806 1233234 1235663 1238091 1240519 1242947 1245375 1247804 1250232 1252660 1255652 1258645 1261637 1264630 1267622 1270614 1273607 1276599 1279592 1282584 1286038 1289492 1292947 1296401 1299855 1303309 1306763 1310218 1313672 1317126 1320964 1324801 1328638 1332476 1336314 1340151 1343988 1347826 1351664 1355501 1359668 1363835 1368002 1372169 1376336 1380504 1384671 1388838 1393005 1397172 2192438 2987704 3782970 4578236 5373502 +Uganda 2101397 2101397 2101397 2101397 2101397 2101397 2101397 2101397 2101397 2101397 2101397 2103246 2105096 2106946 2108795 2110644 2112494 2114344 2116193 2118042 2119892 2125184 2130475 2135766 2141058 2146350 2151641 2156932 2162224 2167516 2172807 2180145 2187483 2194822 2202160 2209498 2216836 2224174 2231513 2238851 2246189 2253775 2261361 2268947 2276533 2284119 2291705 2299291 2306877 2314463 2322049 2329780 2337511 2345242 2352973 2360704 2368436 2376167 2383898 2391629 2399360 2407348 2415337 2423325 2431314 2439302 2447290 2455279 2463267 2471256 2479244 2487480 2495717 2503953 2512190 2520426 2528662 2536899 2545135 2553372 2561608 2570116 2578624 2587132 2595640 2604148 2612657 2621165 2629673 2638181 2646689 2655501 2664312 2673124 2681936 2690748 2699559 2708371 2717183 2725994 2734806 2743864 2752921 2761978 2771036 2780094 2789151 2798208 2807266 2816324 2825381 2833255 2841129 2849002 2856876 2864750 2872624 2880498 2888371 2896245 2904119 2961173 3018226 3075280 3132334 3189388 3246441 3303495 3360549 3417602 3474656 3549882 3625108 3700335 3775561 3850787 3926013 4001239 4076466 4151692 4226918 4320046 4413173 4506300 4599428 4692556 4785683 4878810 4971938 5065066 5158193 5173241 5188289 5203337 5218385 5233433 5248481 5263529 5278577 5293625 5308673 5323360 5338046 5352733 5367420 5382106 5396793 5411480 5426167 5440853 5455540 5470110 5484681 5499251 5513821 5528392 5542962 5557532 5572102 5586673 5601243 5615940 5630636 5645332 5660029 5674726 5689422 5704118 5718815 5733512 5748208 5763271 5778333 5793396 5808458 5823521 5838584 5853646 5868709 5883771 5898834 5914502 5930171 5945839 5961507 5977176 5992844 6008512 6024180 6039849 6055517 12650890 19246263 25841637 32437010 39032383 +Ukraine 11215490 11215490 11215490 11215490 11215490 11215490 11215490 11215490 11215490 11215490 11215490 11243541 11271593 11299644 11327696 11355747 11383798 11411850 11439901 11467953 11496004 11578491 11660979 11743466 11825953 11908440 11990928 12073415 12155902 12238390 12320877 12440193 12559508 12678824 12798139 12917455 13036771 13156086 13275402 13394717 13514033 13644903 13775773 13906643 14037513 14168383 14299253 14430123 14560993 14691863 14822733 14965827 15108920 15252014 15395107 15538201 15681295 15824388 15967482 16110575 16253669 16410576 16567483 16724390 16881297 17038204 17195112 17352019 17508926 17665833 17822740 17993738 18164735 18335733 18506731 18677728 18848726 19019724 19190722 19361719 19532717 19719998 19907280 20094561 20281842 20469124 20656405 20843686 21030967 21218249 21405530 21612171 21818812 22025453 22232094 22438734 22645375 22852016 23058657 23265298 23471939 23697649 23923358 24149068 24374778 24600488 24826197 25051907 25277617 25503326 25729036 25977514 26225992 26474470 26722948 26971426 27219904 27468382 27716860 27965338 28213816 28487039 28760262 29033485 29306708 29579930 29853153 30126376 30399599 30672822 30946045 31245727 31545409 31845091 32144773 32444454 32744136 33043818 33343500 33643182 33942864 34278343 34613822 34949300 35284779 35620258 35955737 36291216 36626694 36962173 37297652 37349468 37401285 37453101 37504917 37556734 37608550 37660366 37712182 37763999 37815815 37870285 37924754 37979224 38033693 38088163 38142633 38197102 38251572 38306041 38360511 38416086 38471662 38527237 38582813 38638388 38693963 38749539 38805114 38860690 38916265 38971807 39027348 39082890 39138432 39193974 39249515 39305057 39360599 39416140 39471682 39526458 39581235 39636011 39690788 39745564 39800340 39855117 39909893 39964670 40019446 40073154 40126862 40180571 40234279 40287987 40341695 40395403 40449112 40502820 40556528 41409975 42263423 43116870 43970318 44823765 +United Arab Emirates 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40153 40160 40167 40174 40181 40188 40194 40201 40208 40215 40222 40289 40355 40422 40489 40556 40622 40689 40756 40822 40889 41068 41248 41427 41606 41786 41965 42144 42323 42503 42682 42933 43183 43434 43685 43936 44186 44437 44688 44938 45189 45456 45722 45988 46255 46522 46788 47054 47321 47588 47854 48136 48417 48698 48980 49262 49543 49824 50106 50388 50669 51072 51476 51879 52283 52686 53089 53493 53896 54300 54703 55182 55662 56142 56621 57100 57580 58060 58539 59018 59498 60020 60541 61062 61584 62106 62627 63148 63670 64192 64713 65201 65688 66176 66664 67152 67639 68127 68615 69102 69590 69428 69266 69105 68943 68781 68619 68457 68296 68134 67972 68156 68340 68524 68708 68892 69077 69261 69445 69629 69813 70150 70487 70824 71161 71498 71836 72173 72510 72847 73184 73536 73889 74241 74594 74946 75298 75651 76003 76356 76708 76994 77280 77565 77851 78137 78423 78709 78994 79280 79566 79761 79956 80151 80346 80540 80735 80930 81125 81320 81515 1896605 3711694 5526784 7341873 9156963 +United Kingdom 12327466 12505325 12683184 12861044 13038903 13216762 13394621 13572480 13750340 13928199 14106058 14317640 14529223 14740806 14952388 15163970 15375553 15587136 15798718 16010300 16221883 16453095 16684306 16915518 17146729 17377941 17609153 17840364 18071576 18302787 18533999 18754324 18974649 19194975 19415300 19635625 19855950 20076275 20296601 20516926 20737251 20925883 21114515 21303147 21491779 21680411 21869043 22057675 22246307 22434939 22623571 22839566 23055561 23271556 23487551 23703546 23919542 24135537 24351532 24567527 24783522 25070333 25357143 25643954 25930764 26217575 26504386 26791196 27078007 27364817 27651628 27971461 28291294 28611127 28930960 29250792 29570625 29890458 30210291 30530124 30849957 31186519 31523082 31859644 32196206 32532768 32869331 33205893 33542455 33879018 34215580 34593598 34971616 35349634 35727652 36105670 36483687 36861705 37239723 37617741 37995759 38376674 38757590 39138505 39519420 39900336 40281251 40662166 41043081 41423997 41804912 42006993 42209074 42411154 42613235 42815316 43017397 43219478 43421558 43623639 43825720 44038945 44252170 44465395 44678620 44891844 45105069 45318294 45531519 45744744 45957969 46185768 46413568 46641367 46869167 47096966 47324765 47552565 47780364 48008164 48235963 48473968 48711973 48949978 49187983 49425988 49663992 49901997 50140002 50378007 50616012 50616465 50616917 50617370 50617822 50618275 50618728 50619180 50619633 50620085 50620538 50626844 50633150 50639455 50645761 50652067 50658373 50664679 50670984 50677290 50683596 50694504 50705411 50716318 50727226 50738134 50749041 50759948 50770856 50781764 50792671 50807227 50821782 50836338 50850893 50865449 50880005 50894560 50909116 50923671 50938227 50955775 50973324 50990872 51008421 51025969 51043517 51061066 51078614 51096163 51113711 51133912 51154114 51174315 51194516 51214718 51234919 51255120 51275321 51295523 51315724 53995741 56675758 59355776 62035793 64715810 +United States 6801854 6951161 7100469 7249776 7399084 7548391 7697698 7847006 7996313 8145621 8294928 8501600 8708272 8914943 9121615 9328287 9534959 9741631 9948302 10154974 10361646 10673527 10985409 11297290 11609172 11921053 12232934 12544816 12856697 13168579 13480460 13926658 14372857 14819055 15265253 15711452 16157650 16603848 17050046 17496245 17942443 18561828 19181213 19800598 20419983 21039368 21658753 22278138 22897523 23516908 24136293 24916328 25696363 26476398 27256433 28036468 28816503 29596538 30376573 31156608 31936643 32825136 33713628 34602121 35490613 36379106 37267599 38156091 39044584 39933076 40821569 41865062 42908555 43952048 44995541 46039034 47082526 48126019 49169512 50213005 51256498 52511856 53767213 55022571 56277928 57533286 58788644 60044001 61299359 62554716 63810074 65170628 66531181 67891735 69252288 70612842 71973396 73333949 74694503 76055056 77415610 79029968 80644325 82258683 83873040 85487398 87101756 88716113 90330471 91944828 93559186 95047432 96535678 98023923 99512169 101000415 102488661 103976907 105465152 106953398 108441644 110103040 111764436 113425833 115087229 116748625 118410021 120071417 121732814 123394210 125055606 125985459 126915311 127845164 128775017 129704870 130634722 131564575 132494428 133424280 134354133 136700024 139045914 141391805 143737696 146083586 148429477 150775368 153121259 155467149 157813040 158019812 158226583 158433355 158640126 158846898 159053670 159260441 159467213 159673984 159880756 160120721 160360686 160600651 160840616 161080580 161320545 161560510 161800475 162040440 162280405 162546536 162812667 163078798 163344929 163611060 163877192 164143323 164409454 164675585 164941716 165227549 165513382 165799215 166085048 166370881 166656714 166942547 167228380 167514213 167800046 168099679 168399312 168698946 168998579 169298212 169597845 169897478 170197112 170496745 170796378 171104472 171412567 171720661 172028755 172336850 172644944 172953038 173261132 173569227 173877321 203456583 233035845 262615107 292194369 321773631 +Uruguay 55000 55000 55000 55000 55000 55000 55000 55000 55000 55000 55000 55467 55934 56400 56867 57334 57801 58268 58734 59201 59668 61180 62693 64206 65718 67230 68743 70256 71768 73280 74793 77327 79862 82396 84931 87465 89999 92534 95068 97603 100137 104375 108613 112850 117088 121326 125564 129802 134039 138277 142515 150456 158397 166338 174279 182220 190161 198102 206043 213984 221925 233449 244974 256498 268023 279547 291071 302596 314120 325645 337169 351524 365880 380235 394591 408946 423301 437657 452012 466368 480723 500866 521010 541153 561296 581440 601583 621726 641869 662013 682156 704404 726652 748900 771148 793396 815645 837893 860141 882389 904637 923422 942206 960990 979775 998560 1017344 1036128 1054913 1073698 1092482 1120939 1149395 1177852 1206308 1234765 1263222 1291678 1320135 1348591 1377048 1411357 1445666 1479975 1514284 1548594 1582903 1617212 1651521 1685830 1720139 1745478 1770816 1796154 1821493 1846832 1872170 1897508 1922847 1948186 1973524 2000022 2026520 2053019 2079517 2106015 2132513 2159011 2185510 2212008 2238506 2240790 2243073 2245357 2247640 2249924 2252208 2254491 2256775 2259058 2261342 2263834 2266326 2268819 2271311 2273803 2276295 2278787 2281280 2283772 2286264 2288958 2291653 2294347 2297042 2299736 2302430 2305125 2307819 2310514 2313208 2316092 2318975 2321859 2324742 2327626 2330510 2333393 2336277 2339160 2342044 2345096 2348149 2351201 2354253 2357306 2360358 2363410 2366462 2369515 2372567 2375760 2378954 2382147 2385340 2388534 2391727 2394920 2398113 2401307 2404500 2609911 2815322 3020733 3226144 3431555 +Uzbekistan 1919159 1919159 1919159 1919159 1919159 1919159 1919159 1919159 1919159 1919159 1919159 1923915 1928670 1933426 1938182 1942938 1947693 1952449 1957205 1961960 1966716 1980695 1994674 2008654 2022633 2036612 2050591 2064570 2078550 2092529 2106508 2126716 2146925 2167133 2187342 2207550 2227758 2247967 2268175 2288384 2308592 2330739 2352886 2375033 2397180 2419327 2441474 2463621 2485768 2507915 2530062 2558278 2586493 2614709 2642925 2671140 2699356 2727572 2755788 2784003 2812219 2843520 2874821 2906122 2937423 2968724 3000024 3031325 3062626 3093927 3125228 3159762 3194296 3228830 3263364 3297898 3332431 3366965 3401499 3436033 3470567 3508824 3547080 3585337 3623593 3661850 3700107 3738363 3776620 3814876 3853133 3895780 3938428 3981076 4023723 4066370 4109018 4151666 4194313 4236960 4279608 4326732 4373857 4420981 4468106 4515230 4562354 4609479 4656603 4703728 4750852 4800948 4851044 4901140 4951236 5001332 5051429 5101525 5151621 5201717 5251813 5302195 5352578 5402960 5453343 5503725 5554107 5604490 5654872 5705255 5755637 5810853 5866068 5921284 5976500 6031716 6086931 6142147 6197363 6252578 6307794 6371554 6435315 6499075 6562835 6626596 6690356 6754116 6817876 6881637 6945397 6961263 6977129 6992995 7008861 7024726 7040592 7056458 7072324 7088190 7104056 7120168 7136279 7152391 7168502 7184614 7200726 7216837 7232949 7249060 7265172 7281554 7297936 7314318 7330700 7347082 7363465 7379847 7396229 7412611 7428993 7445727 7462461 7479195 7495929 7512663 7529397 7546131 7562865 7579599 7596333 7613558 7630783 7648007 7665232 7682457 7699682 7716907 7734131 7751356 7768581 7786496 7804412 7822327 7840243 7858158 7876073 7893989 7911904 7929820 7947735 12336886 16726036 21115187 25504337 29893488 +Vanuatu 27791 27791 27791 27791 27791 27791 27791 27791 27791 27791 27791 27822 27852 27883 27914 27944 27975 28006 28037 28067 28098 28186 28274 28362 28450 28538 28627 28715 28803 28891 28979 29102 29225 29348 29471 29594 29716 29839 29962 30085 30208 30336 30464 30593 30721 30849 30977 31105 31234 31362 31490 31620 31750 31880 32010 32140 32271 32401 32531 32661 32791 32926 33062 33197 33333 33468 33603 33739 33874 34010 34145 34286 34426 34567 34708 34848 34989 35130 35271 35411 35552 35698 35845 35991 36138 36284 36430 36577 36723 36870 37016 37169 37322 37474 37627 37780 37933 38086 38238 38391 38544 38703 38862 39021 39180 39339 39498 39657 39816 39975 40134 40301 40468 40636 40803 40970 41137 41304 41472 41639 41806 41983 42161 42338 42515 42692 42870 43047 43224 43402 43579 43764 43949 44134 44319 44504 44688 44873 45058 45243 45428 45655 45881 46108 46335 46562 46788 47015 47242 47468 47695 47817 47940 48062 48185 48307 48429 48552 48674 48797 48919 49057 49194 49332 49469 49607 49745 49882 50020 50157 50295 50443 50591 50739 50887 51034 51182 51330 51478 51626 51774 51929 52084 52239 52394 52550 52705 52860 53015 53170 53325 53485 53645 53805 53965 54124 54284 54444 54604 54764 54924 55088 55252 55416 55580 55744 55908 56072 56236 56400 56564 98182 139799 181417 223034 264652 +Venezuela 718000 718000 718000 718000 718000 718000 718000 718000 718000 718000 718000 722125 726250 730375 734500 738624 742749 746874 750999 755124 759249 772044 784839 797633 810428 823223 836018 848813 861607 874402 887197 907272 927347 947422 967497 987572 1007648 1027723 1047798 1067873 1087948 1108961 1129974 1150986 1171999 1193012 1214025 1235038 1256050 1277063 1298076 1318321 1338567 1358812 1379058 1399303 1419548 1439794 1460039 1480285 1500530 1522440 1544350 1566259 1588169 1610079 1631989 1653899 1675808 1697718 1719628 1749264 1778899 1808535 1838171 1867806 1897442 1927078 1956714 1986349 2015985 2048375 2080764 2113154 2145543 2177933 2210323 2242712 2275102 2307491 2339881 2375481 2411082 2446682 2482282 2517882 2553483 2589083 2624683 2660284 2695884 2727242 2758600 2789959 2821317 2852675 2884033 2915391 2946750 2978108 3009466 3031565 3053664 3075763 3097862 3119960 3142059 3164158 3186257 3208356 3230455 3263649 3296843 3330036 3363230 3396424 3429618 3462812 3496005 3529199 3562393 3614452 3666511 3718569 3770628 3822687 3874746 3926805 3978863 4030922 4082981 4222881 4362780 4502680 4642579 4782479 4922379 5062278 5202178 5342077 5481977 5507296 5532615 5557934 5583253 5608572 5633892 5659211 5684530 5709849 5735168 5760607 5786045 5811484 5836923 5862362 5887800 5913239 5938678 5964116 5989555 6015065 6040574 6066084 6091594 6117104 6142613 6168123 6193633 6219142 6244652 6270251 6295850 6321449 6347048 6372647 6398246 6423845 6449444 6475043 6500642 6526415 6552188 6577961 6603734 6629507 6655280 6681053 6706826 6732599 6758372 6784475 6810579 6836682 6862786 6888889 6914992 6941096 6967199 6993303 7019406 11837141 16654877 21472612 26290348 31108083 +Vietnam 6551000 6551000 6551000 6551000 6551000 6551000 6551000 6551000 6551000 6551000 6551000 6567834 6584668 6601502 6618336 6635170 6652004 6668838 6685672 6702506 6719340 6768898 6818457 6868016 6917574 6967132 7016691 7066250 7115808 7165366 7214925 7286736 7358547 7430359 7502170 7573981 7645792 7717603 7789415 7861226 7933037 8011996 8090954 8169913 8248872 8327830 8406789 8485748 8564707 8643665 8722624 8791464 8860303 8929142 8997982 9066822 9135661 9204500 9273340 9342180 9411019 9498341 9585663 9672985 9760307 9847628 9934950 10022272 10109594 10196916 10284238 10403088 10521938 10640788 10759638 10878488 10997339 11116189 11235039 11353889 11472739 11618954 11765168 11911383 12057598 12203812 12350027 12496242 12642457 12788671 12934886 13101177 13267468 13433759 13600050 13766340 13932631 14098922 14265213 14431504 14597795 14783443 14969091 15154739 15340387 15526035 15711683 15897331 16082979 16268627 16454275 16627094 16799914 16972733 17145552 17318372 17491191 17664010 17836829 18009649 18182468 18378849 18575231 18771612 18967993 19164374 19360756 19557137 19753518 19949900 20146281 20363873 20581464 20799056 21016648 21234240 21451831 21669423 21887015 22104606 22322198 22570968 22819739 23068510 23317280 23566050 23814821 24063592 24312362 24561132 24809903 24865358 24920813 24976268 25031723 25087178 25142633 25198088 25253543 25308998 25364453 25425692 25486930 25548168 25609407 25670646 25731884 25793122 25854361 25915600 25976838 26043771 26110705 26177638 26244572 26311505 26378438 26445372 26512305 26579239 26646172 26718625 26791077 26863530 26935983 27008436 27080888 27153341 27225794 27298246 27370699 27448408 27526116 27603825 27681533 27759242 27836951 27914659 27992368 28070076 28147785 28230394 28313003 28395611 28478220 28560829 28643438 28726047 28808655 28891264 28973873 41868619 54763364 67658110 80552855 93447601 +West Bank and Gaza 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 165944 166310 166676 167043 167409 167775 168141 168507 168874 169240 169606 170819 172032 173246 174459 175672 176885 178098 179312 180525 181738 183670 185602 187534 189466 191398 193329 195261 197193 199125 201057 203428 205800 208171 210543 212914 215285 217657 220028 222400 224771 227655 230538 233422 236305 239189 242073 244956 247840 250723 253607 257124 260641 264158 267675 271192 274708 278225 281742 285259 288776 293249 297722 302196 306669 311142 315615 320088 324562 329035 333508 334999 336490 337981 339472 340963 342454 343945 345436 346927 348418 359269 370121 380972 391823 402674 413526 424377 435228 446080 456931 482179 507427 532675 557923 583172 608420 633668 658916 684164 709412 731663 753915 776166 798418 820669 842920 865172 887423 909675 931926 931109 930291 929474 928657 927840 927022 926205 925388 924570 923753 924570 925386 926203 927019 927836 928653 929469 930286 931102 931919 933607 935295 936982 938670 940358 942046 943734 945421 947109 948797 950785 952774 954762 956751 958739 960727 962716 964704 966693 968681 970592 972503 974414 976325 978236 980146 982057 983968 985879 987790 989447 991104 992761 994418 996075 997732 999389 1001046 1002703 1004360 1737181 2470002 3202824 3935645 4668466 +Zambia 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 747000 746905 746810 746716 746621 746526 746431 746336 746242 746147 746052 745957 745863 745768 745673 745578 745484 745389 745294 745200 745105 745010 744915 744821 744726 744631 744536 744441 744347 744252 744157 744062 743968 743873 743778 743684 743589 743494 743399 743305 743210 743208 743206 743204 743202 743200 743199 743197 743195 743193 743191 749426 755660 761895 768129 774364 780599 786833 793068 799302 805537 820822 836107 851392 866677 881962 897248 912533 927818 943103 958388 991850 1025313 1058776 1092238 1125700 1159163 1192626 1226088 1259550 1293013 1337134 1381256 1425378 1469499 1513620 1557742 1601864 1645985 1690106 1734228 1792500 1850772 1909045 1967317 2025589 2083861 2142133 2200406 2258678 2316950 2322862 2328775 2334688 2340600 2346512 2352425 2358338 2364250 2370162 2376075 2382325 2388575 2394825 2401075 2407325 2413575 2419825 2426075 2432325 2438575 2445132 2451689 2458247 2464804 2471361 2477918 2484475 2491033 2497590 2504147 2510993 2517839 2524685 2531531 2538378 2545224 2552070 2558916 2565762 2572608 2579738 2586868 2593997 2601127 2608257 2615387 2622517 2629646 2636776 2643906 2651327 2658748 2666170 2673591 2681012 2688433 2695854 2703276 2710697 2718118 5416848 8115578 10814307 13513037 16211767 +Zimbabwe 1085814 1085814 1085814 1085814 1085814 1085814 1085814 1085814 1085814 1085814 1085814 1087896 1089978 1092060 1094142 1096224 1098306 1100388 1102470 1104552 1106634 1112696 1118759 1124822 1130884 1136946 1143009 1149072 1155134 1161196 1167259 1175897 1184536 1193174 1201812 1210450 1219089 1227727 1236365 1245004 1253642 1262920 1272197 1281474 1290752 1300030 1309307 1318584 1327862 1337140 1346417 1356214 1366011 1375807 1385604 1395401 1405198 1414995 1424791 1434588 1444385 1454894 1465404 1475914 1486423 1496932 1507442 1517952 1528461 1538970 1549480 1560700 1571921 1583141 1594361 1605582 1616802 1628022 1639242 1650463 1661683 1673709 1685736 1697762 1709789 1721815 1733841 1745868 1757894 1769921 1781947 1794912 1807877 1820841 1833806 1846771 1859736 1872701 1885665 1898630 1911595 1925461 1939327 1953193 1967059 1980925 1994791 2008657 2022523 2036389 2050255 2065249 2080244 2095238 2110232 2125226 2140221 2155215 2170209 2185204 2200198 2216480 2232763 2249046 2265328 2281610 2297893 2314176 2330458 2346740 2363023 2380510 2397998 2415486 2432973 2450460 2467948 2485436 2502923 2520410 2537898 2558794 2579689 2600585 2621480 2642376 2663272 2684167 2705063 2725958 2746854 2755214 2763573 2771932 2780292 2788652 2797011 2805370 2813730 2822090 2830449 2839246 2848044 2856842 2865639 2874436 2883234 2892032 2900829 2909626 2918424 2927600 2936776 2945953 2955129 2964305 2973481 2982657 2991834 3001010 3010186 3019702 3029218 3038734 3048250 3057766 3067282 3076798 3086314 3095830 3105346 3115185 3125024 3134863 3144702 3154540 3164379 3174218 3184057 3193896 3203735 3213902 3224069 3234235 3244402 3254569 3264736 3274903 3285069 3295236 3305403 5764873 8224342 10683812 13143281 15602751 diff --git a/src/data/gapminder/world-110m.json b/src/data/gapminder/world-110m.json new file mode 100644 index 0000000..a1ce852 --- /dev/null +++ b/src/data/gapminder/world-110m.json @@ -0,0 +1 @@ +{"type":"Topology","transform":{"scale":[0.0036000360003600037,0.0016925586033320111],"translate":[-180,-85.60903777459777]},"objects":{"land":{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[7,8,9]],[[10,11]],[[12]],[[13]],[[14]],[[15]],[[16]],[[17]],[[18]],[[19]],[[20]],[[21]],[[22]],[[23]],[[24]],[[25]],[[26]],[[27]],[[28]],[[29,30]],[[31]],[[32]],[[33]],[[34]],[[35]],[[36]],[[37]],[[38]],[[39]],[[40]],[[41]],[[42,43]],[[44]],[[45]],[[46]],[[47,48,49,50]],[[51]],[[52]],[[53]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]],[[60]],[[61]],[[62,63]],[[64]],[[65]],[[66]],[[67]],[[68]],[[69]],[[70]],[[71]],[[72]],[[73]],[[74]],[[75]],[[76,77]],[[78]],[[79]],[[80]],[[81]],[[82]],[[83]],[[84]],[[85]],[[86]],[[87]],[[88]],[[89]],[[90,91]],[[92]],[[93]],[[94]],[[95]],[[96]],[[97]],[[98]],[[99]],[[100]],[[101]],[[102]],[[103]],[[104]],[[105]],[[106,107,108,109,110,111,112,113,114,115,116,117,118,119,120,121,122,123,124,125,126,127,128,129,130,131,132,133,134,135,136,137,138,139,140,141,142,143,144,145,146,147,148,149,150,151,152,153,154,155,156,157,158,159,160,161,162,163,164,165,166,167,168,169,170,171,172,173,174,175,176,177,178,179,180,181,182,183,184,185,186,187,188,189,190,191,192,193,194,195,196,197,198,199,200,201,202,203,204,205,206,207,208,209,210,211,212,213,214,215,216,217,218,219,220,221]],[[222,223]],[[224]],[[225]],[[226]],[[227]],[[228]],[[229]],[[230,231,232,233]],[[234]],[[235]],[[236]],[[237]],[[238]],[[239]],[[240]],[[241]],[[242,243,244,245,246,247,248,249,250,251,252,253,254,255,256,257,258,259,260,261,262,263,264,265,266,267,268,269,270,271,272,273,274,275,276,277,278,279,280,281,282,283,284,285,286,287,288,289,290,291,292,293,294,295,296,297,298,299,300,301,302,303,304,305,306,307,308,309,310,311,312,313,314,315,316,317,318,319,320,321,322,323,324,325,326,327,328,329,330,331,332,333,334,335,336,337,338,339,340,341,342,343,344,345,346,347,348,349,350,351,352,353,354,355,356,357,358,359,360,361,362,363,364,365,366,367,368,369,370,371,372,373,374,375,376,377,378,379,380,381,382,383,384,385,386,387,388,389,390,391,392,393,394,395,396,397,398,399,400,401,402,403,404,405,406,407,408,409,410,411,412,413,414,415,416,417,418,419,420,421,422,423,424,425,426,427,428,429,430,431,432,433,434,435,436,437,438,439,440,441,442,443,444,445,446,447,448,449,450,451,452,453,454,455,456,457,458,459,460,461,462,463,464,465,466,467,468,469,470,471,472,473,474,475,476,477],[478,479,480,481,482,483,484]],[[485]],[[486]],[[487]],[[488]],[[489]],[[490]],[[491]],[[492]],[[493]],[[494]],[[495]],[[496]],[[497]],[[498]]]},"countries":{"type":"GeometryCollection","geometries":[{"type":"Polygon","arcs":[[499,500,501,502,503,504]],"id":4},{"type":"MultiPolygon","arcs":[[[505,506,352,507]],[[354,508,509]]],"id":24},{"type":"Polygon","arcs":[[510,511,414,512,513,514]],"id":8},{"type":"Polygon","arcs":[[312,515,314,516,517]],"id":784},{"type":"MultiPolygon","arcs":[[[518,11]],[[519,520,521,166,522,168,523,524]]],"id":32},{"type":"Polygon","arcs":[[525,526,527,528,529]],"id":51},{"type":"MultiPolygon","arcs":[[[0]],[[1]],[[2]],[[3]],[[4]],[[5]],[[6]],[[530,531]]],"id":10},{"type":"Polygon","arcs":[[13]],"id":260},{"type":"MultiPolygon","arcs":[[[14]],[[24]]],"id":36},{"type":"Polygon","arcs":[[532,533,534,535,536,537,538]],"id":40},{"type":"MultiPolygon","arcs":[[[539,-528]],[[484,540,479,541,-526,542,543]]],"id":31},{"type":"Polygon","arcs":[[544,545,546]],"id":108},{"type":"Polygon","arcs":[[547,548,549,550,437]],"id":56},{"type":"Polygon","arcs":[[551,552,553,554,366]],"id":204},{"type":"Polygon","arcs":[[555,556,557,-553,558,559]],"id":854},{"type":"Polygon","arcs":[[560,561,289,562]],"id":50},{"type":"Polygon","arcs":[[563,404,564,565,566,567]],"id":100},{"type":"MultiPolygon","arcs":[[[71]],[[73]],[[74]]],"id":44},{"type":"Polygon","arcs":[[568,569,570]],"id":70},{"type":"Polygon","arcs":[[571,572,573,574,575]],"id":112},{"type":"Polygon","arcs":[[576,145,577]],"id":84},{"type":"Polygon","arcs":[[578,579,580,581,-525]],"id":68},{"type":"Polygon","arcs":[[-521,582,-581,583,584,585,586,587,588,164,589]],"id":76},{"type":"Polygon","arcs":[[48,590]],"id":96},{"type":"Polygon","arcs":[[591,592]],"id":64},{"type":"Polygon","arcs":[[593,594,595,596]],"id":72},{"type":"Polygon","arcs":[[597,598,599,600,601,602,603]],"id":140},{"type":"MultiPolygon","arcs":[[[84]],[[85]],[[86]],[[87]],[[88]],[[96]],[[97]],[[99]],[[101]],[[103]],[[604,107,605,109,606,111,607,113,608,115,609,117,610,199,611,201,612,215,613,217,614,219,615,221]],[[616,223]],[[224]],[[225]],[[226]],[[227]],[[229]],[[230,617,232,618]],[[235]],[[237]],[[238]],[[240]],[[241]],[[485]],[[486]],[[488]],[[489]],[[490]],[[496]],[[497]]],"id":124},{"type":"Polygon","arcs":[[-536,619,620,621]],"id":756},{"type":"MultiPolygon","arcs":[[[-519,622,623,624]],[[-524,169,625,171,626,-579]]],"id":152},{"type":"MultiPolygon","arcs":[[[64]],[[627,274,628,276,629,278,630,280,631,632,633,634,635,-593,636,637,638,639,-503,640,641,642,643,644,645]]],"id":156},{"type":"Polygon","arcs":[[369,646,647,648,-556,649]],"id":384},{"type":"Polygon","arcs":[[650,651,652,359,653,654,655,656,-604,657]],"id":120},{"type":"Polygon","arcs":[[658,659,-545,660,661,662,663,-508,353,-510,664,-602,665]],"id":180},{"type":"Polygon","arcs":[[-509,355,666,-658,-603,-665]],"id":178},{"type":"Polygon","arcs":[[667,174,668,155,669,-585,670]],"id":170},{"type":"Polygon","arcs":[[178,671,151,672]],"id":188},{"type":"Polygon","arcs":[[70]],"id":192},{"type":"Polygon","arcs":[[77,673]],"id":-99},{"type":"Polygon","arcs":[[76,-674]],"id":196},{"type":"Polygon","arcs":[[-538,674,675,676]],"id":203},{"type":"Polygon","arcs":[[445,677,-675,-537,-622,678,679,-549,680,441,681]],"id":276},{"type":"Polygon","arcs":[[337,682,683,684]],"id":262},{"type":"MultiPolygon","arcs":[[[92]],[[-682,442,685,444]]],"id":208},{"type":"Polygon","arcs":[[62,686]],"id":214},{"type":"Polygon","arcs":[[687,688,689,690,691,384,692,693]],"id":12},{"type":"Polygon","arcs":[[173,-668,694]],"id":218},{"type":"Polygon","arcs":[[333,695,696,390,697]],"id":818},{"type":"Polygon","arcs":[[698,699,700,336,-685]],"id":232},{"type":"Polygon","arcs":[[431,701,433,702,427,703,429,704]],"id":724},{"type":"Polygon","arcs":[[450,705,706]],"id":233},{"type":"Polygon","arcs":[[-684,707,708,709,710,711,712,-699]],"id":231},{"type":"Polygon","arcs":[[713,452,714,715,455,716,717]],"id":246},{"type":"MultiPolygon","arcs":[[[18]],[[19]],[[20]]],"id":242},{"type":"Polygon","arcs":[[12]],"id":238},{"type":"MultiPolygon","arcs":[[[718,719,163,-589]],[[82]],[[720,-679,-621,721,426,-703,434,722,436,-551]]],"id":250},{"type":"Polygon","arcs":[[356,723,-651,-667]],"id":266},{"type":"MultiPolygon","arcs":[[[724,90]],[[725,726,727,728,729,730,731,732]]],"id":826},{"type":"Polygon","arcs":[[400,733,-543,-530,734]],"id":268},{"type":"Polygon","arcs":[[368,-650,-560,735]],"id":288},{"type":"Polygon","arcs":[[736,737,374,738,739,740,-648]],"id":324},{"type":"Polygon","arcs":[[741,377]],"id":270},{"type":"Polygon","arcs":[[375,742,-739]],"id":624},{"type":"Polygon","arcs":[[357,-652,-724]],"id":226},{"type":"MultiPolygon","arcs":[[[78]],[[407,743,409,744,411,745,413,-512,746,-566,747]]],"id":300},{"type":"Polygon","arcs":[[498]],"id":304},{"type":"Polygon","arcs":[[185,748,-578,146,749,750]],"id":320},{"type":"Polygon","arcs":[[161,751,-587,752]],"id":328},{"type":"Polygon","arcs":[[182,753,754,-750,147,755,149,756]],"id":340},{"type":"Polygon","arcs":[[757,-571,758,417,759,419,760,761]],"id":191},{"type":"Polygon","arcs":[[-687,63]],"id":332},{"type":"Polygon","arcs":[[-533,762,763,764,765,-762,766]],"id":348},{"type":"MultiPolygon","arcs":[[[26]],[[767,30]],[[31]],[[32]],[[35]],[[36]],[[39]],[[40]],[[768,43]],[[44]],[[45]],[[769,50]],[[46]]],"id":360},{"type":"Polygon","arcs":[[-639,770,-637,-592,-636,771,-563,290,772,292,773,294,774,296,775]],"id":356},{"type":"Polygon","arcs":[[91,-725]],"id":372},{"type":"Polygon","arcs":[[776,-505,777,300,778,302,779,780,781,-540,-527,-542,480]],"id":364},{"type":"Polygon","arcs":[[782,783,784,785,786,-781,787]],"id":368},{"type":"Polygon","arcs":[[100]],"id":352},{"type":"Polygon","arcs":[[788,789,-698,391,790,791,792]],"id":376},{"type":"MultiPolygon","arcs":[[[79]],[[80]],[[793,421,794,423,795,425,-722,-620,-535]]],"id":380},{"type":"Polygon","arcs":[[61]],"id":388},{"type":"Polygon","arcs":[[796,-785,797,332,-790,798,-793]],"id":400},{"type":"MultiPolygon","arcs":[[[75]],[[81]],[[83]]],"id":392},{"type":"Polygon","arcs":[[799,800,482,801,-643,802]],"id":398},{"type":"Polygon","arcs":[[342,803,804,805,-710,806]],"id":404},{"type":"Polygon","arcs":[[-803,-642,807,808]],"id":417},{"type":"Polygon","arcs":[[809,810,811,283]],"id":116},{"type":"Polygon","arcs":[[265,812,267,813]],"id":410},{"type":"Polygon","arcs":[[-515,814,815,816]],"id":-99},{"type":"Polygon","arcs":[[304,817,-783]],"id":414},{"type":"Polygon","arcs":[[818,819,-634,820,-811]],"id":418},{"type":"Polygon","arcs":[[-791,392,821]],"id":422},{"type":"Polygon","arcs":[[370,822,372,823,-737,-647]],"id":430},{"type":"Polygon","arcs":[[824,-694,825,388,826,-697,827,828]],"id":434},{"type":"Polygon","arcs":[[52]],"id":144},{"type":"Polygon","arcs":[[829]],"id":426},{"type":"Polygon","arcs":[[830,448,831,-572,832]],"id":440},{"type":"Polygon","arcs":[[-680,-721,-550]],"id":442},{"type":"Polygon","arcs":[[449,-707,833,-573,-832]],"id":428},{"type":"Polygon","arcs":[[-692,834,835,836,837,383]],"id":504},{"type":"Polygon","arcs":[[838,839]],"id":498},{"type":"Polygon","arcs":[[23]],"id":450},{"type":"Polygon","arcs":[[840,-577,-749,186,841,188,842,190,843,192,844,194,845]],"id":484},{"type":"Polygon","arcs":[[-817,846,-567,-747,-511]],"id":807},{"type":"Polygon","arcs":[[847,-689,848,-557,-649,-741,849]],"id":466},{"type":"Polygon","arcs":[[287,-561,-772,-635,-820,850]],"id":104},{"type":"Polygon","arcs":[[416,-759,-570,851,-815,-514,852]],"id":499},{"type":"Polygon","arcs":[[853,-645]],"id":496},{"type":"Polygon","arcs":[[854,344,855,856,347,857,858,859,860,861,862]],"id":508},{"type":"Polygon","arcs":[[863,379,864,-690,-848]],"id":478},{"type":"Polygon","arcs":[[-863,865,866]],"id":454},{"type":"MultiPolygon","arcs":[[[285,867]],[[-770,47,-591,49]]],"id":458},{"type":"Polygon","arcs":[[351,-507,868,-595,869]],"id":516},{"type":"Polygon","arcs":[[17]],"id":540},{"type":"Polygon","arcs":[[-558,-849,-688,-825,870,-656,871,-554]],"id":562},{"type":"Polygon","arcs":[[361,872,363,873,365,-555,-872,-655]],"id":566},{"type":"Polygon","arcs":[[179,874,181,-757,150,-672]],"id":558},{"type":"Polygon","arcs":[[-681,-548,438,875,440]],"id":528},{"type":"MultiPolygon","arcs":[[[876,-718,877,457,878,459,879,461]],[[487]],[[492]],[[493]]],"id":578},{"type":"Polygon","arcs":[[-771,-638]],"id":524},{"type":"MultiPolygon","arcs":[[[15]],[[16]]],"id":554},{"type":"MultiPolygon","arcs":[[[880,319,881,882,883,-517,315,884,317]],[[-516,313]]],"id":512},{"type":"Polygon","arcs":[[-640,-776,297,885,299,-778,-504]],"id":586},{"type":"Polygon","arcs":[[175,886,177,-673,152,887,154,-669]],"id":591},{"type":"Polygon","arcs":[[-627,172,-695,-671,-584,-580]],"id":604},{"type":"MultiPolygon","arcs":[[[51]],[[54]],[[55]],[[56]],[[57]],[[58]],[[59]]],"id":608},{"type":"MultiPolygon","arcs":[[[37]],[[38]],[[-769,42]],[[41]]],"id":598},{"type":"Polygon","arcs":[[-678,446,888,-833,-576,889,890,-676]],"id":616},{"type":"Polygon","arcs":[[60]],"id":630},{"type":"Polygon","arcs":[[262,891,264,-814,892,269,893,271,894,273,-628,895]],"id":408},{"type":"Polygon","arcs":[[-705,430]],"id":620},{"type":"Polygon","arcs":[[-582,-583,-520]],"id":600},{"type":"Polygon","arcs":[[-799,-789]],"id":275},{"type":"Polygon","arcs":[[308,896,310,897]],"id":634},{"type":"Polygon","arcs":[[898,-840,899,403,-564,900,-765]],"id":642},{"type":"MultiPolygon","arcs":[[[89]],[[-889,447,-831]],[[102]],[[104]],[[105]],[[228]],[[234]],[[236]],[[239]],[[901,243,902,245,903,247,904,249,905,251,906,253,907,255,908,257,909,259,910,261,-896,-646,-854,-644,-802,483,-544,-734,401,911,-574,-834,-706,451,-714,-877,912,913,914,915,464,916,466,917,468,918,470,919,920,473,921,475,922,477]],[[491]],[[494]],[[495]]],"id":643},{"type":"Polygon","arcs":[[923,-546,-660,924]],"id":646},{"type":"Polygon","arcs":[[-691,-865,380,-835]],"id":732},{"type":"Polygon","arcs":[[925,329,926,331,-798,-784,-818,305,927,307,-898,311,-518,-884,928]],"id":682},{"type":"Polygon","arcs":[[-599,929,-828,-696,334,-700,-713,930,931,932]],"id":729},{"type":"Polygon","arcs":[[-711,-806,933,-666,-601,934,-932,935]],"id":728},{"type":"Polygon","arcs":[[378,-864,-850,-740,-743,376,-742]],"id":686},{"type":"MultiPolygon","arcs":[[[25]],[[27]],[[28]],[[33]],[[34]]],"id":90},{"type":"Polygon","arcs":[[373,-738,-824]],"id":694},{"type":"Polygon","arcs":[[184,-751,-755,936]],"id":222},{"type":"Polygon","arcs":[[-708,-683,338,937,340,938]],"id":-99},{"type":"Polygon","arcs":[[-807,-709,-939,341]],"id":706},{"type":"Polygon","arcs":[[-568,-847,-816,-852,-569,-758,-766,-901]],"id":688},{"type":"Polygon","arcs":[[162,-720,939,-588,-752]],"id":740},{"type":"Polygon","arcs":[[-891,940,-763,-539,-677]],"id":703},{"type":"Polygon","arcs":[[-534,-767,-761,420,-794]],"id":705},{"type":"Polygon","arcs":[[-878,-717,456]],"id":752},{"type":"Polygon","arcs":[[941,-859]],"id":748},{"type":"Polygon","arcs":[[-797,-792,-822,393,942,-786]],"id":760},{"type":"Polygon","arcs":[[-871,-829,-930,-598,-657]],"id":148},{"type":"Polygon","arcs":[[-736,-559,-552,367]],"id":768},{"type":"Polygon","arcs":[[284,-868,286,-851,-819,-810]],"id":764},{"type":"Polygon","arcs":[[-808,-641,-502,943]],"id":762},{"type":"Polygon","arcs":[[-777,481,-801,944,-500]],"id":795},{"type":"Polygon","arcs":[[29,-768]],"id":626},{"type":"Polygon","arcs":[[53]],"id":780},{"type":"Polygon","arcs":[[-693,385,945,387,-826]],"id":788},{"type":"MultiPolygon","arcs":[[[399,-735,-529,-782,-787,-943,394,946,947,397,948]],[[949,-748,-565,405]]],"id":792},{"type":"Polygon","arcs":[[72]],"id":158},{"type":"Polygon","arcs":[[-804,343,-855,-867,950,-663,951,-661,-547,-924,952]],"id":834},{"type":"Polygon","arcs":[[-925,-659,-934,-805,-953]],"id":800},{"type":"Polygon","arcs":[[-912,402,-900,-839,-899,-764,-941,-890,-575]],"id":804},{"type":"Polygon","arcs":[[-590,165,-522]],"id":858},{"type":"MultiPolygon","arcs":[[[65]],[[66]],[[67]],[[68]],[[69]],[[118,953,120,954,122,955,124,956,126,957,128,958,130,959,132,960,134,961,136,962,138,963,140,964,142,-846,195,965,966,967,968,969,-611]],[[93]],[[95]],[[98]],[[-613,202,970,204,971,206,972,208,973,210,974,212,975,214]]],"id":840},{"type":"Polygon","arcs":[[-945,-800,-809,-944,-501]],"id":860},{"type":"Polygon","arcs":[[156,976,158,977,160,-753,-586,-670]],"id":862},{"type":"Polygon","arcs":[[282,-812,-821,-633]],"id":704},{"type":"MultiPolygon","arcs":[[[21]],[[22]]],"id":548},{"type":"Polygon","arcs":[[321,978,323,979,325,980,327,-929,-883,981]],"id":887},{"type":"Polygon","arcs":[[982,350,-870,-594,983,-860,-942,-858,348],[-830]],"id":710},{"type":"Polygon","arcs":[[-866,-862,984,-596,-869,-506,-664,-951]],"id":894},{"type":"Polygon","arcs":[[-984,-597,-985,-861]],"id":716}]}},"arcs":[[[33289,2723],[-582,81],[-621,-35],[-348,197],[0,23],[-152,174],[625,-23],[599,-58],[207,243],[147,208],[288,-243],[-82,-301],[-81,-266]],[[5242,3530],[-364,208],[-163,209],[-11,35],[-180,162],[169,220],[517,-93],[277,-185],[212,-209],[76,-266],[-533,-81]],[[35977,2708],[-658,35],[-365,197],[49,243],[593,162],[239,197],[174,254],[126,220],[168,209],[180,243],[141,0],[414,127],[419,-127],[342,-255],[120,-359],[33,-254],[11,-301],[-430,-186],[-452,-150],[-522,-139],[-582,-116]],[[16602,6806],[-386,47],[-278,208],[60,197],[332,-104],[359,-93],[332,104],[-158,-208],[-261,-151]],[[15547,6934],[-164,23],[-359,58],[-381,162],[202,127],[277,-139],[425,-231]],[[23277,7733],[-217,46],[-337,-23],[-343,23],[-376,-35],[-283,116],[-146,243],[174,104],[353,-81],[403,-46],[305,-81],[304,69],[163,-335]],[[30256,7743],[-364,11],[136,232],[-327,-81],[-310,-81],[-212,174],[-16,243],[305,231],[190,70],[321,-23],[82,301],[16,219],[-6,475],[158,278],[256,93],[147,-220],[65,-220],[120,-267],[92,-254],[76,-267],[33,-266],[-49,-231],[-76,-220],[-326,-81],[-311,-116]],[[794,704],[78,49],[94,61],[81,52],[41,26]],[[1088,892],[41,-1],[29,-10]],[[1158,881],[402,-246],[352,246],[63,34],[816,104],[265,-138],[130,-71],[419,-196],[789,-151],[625,-185],[1072,-139],[800,162],[1181,-116],[669,-185],[734,174],[773,162],[60,278],[-1094,23],[-898,139],[-234,231],[-745,128],[49,266],[103,243],[104,220],[-55,243],[-462,162],[-212,209],[-430,185],[675,-35],[642,93],[402,-197],[495,173],[457,220],[223,197],[-98,243],[-359,162],[-408,174],[-571,35],[-500,81],[-539,58],[-180,220],[-359,185],[-217,208],[-87,672],[136,-58],[250,-185],[457,58],[441,81],[228,-255],[441,58],[370,127],[348,162],[315,197],[419,58],[-11,220],[-97,220],[81,208],[359,104],[163,-196],[425,115],[321,151],[397,12],[375,57],[376,139],[299,128],[337,127],[218,-35],[190,-46],[414,81],[370,-104],[381,11],[364,81],[375,-57],[414,-58],[386,23],[403,-12],[413,-11],[381,23],[283,174],[337,92],[349,-127],[331,104],[300,208],[179,-185],[98,-208],[180,-197],[288,174],[332,-220],[375,-70],[321,-162],[392,35],[354,104],[418,-23],[376,-81],[381,-104],[147,254],[-180,197],[-136,209],[-359,46],[-158,220],[-60,220],[-98,440],[213,-81],[364,-35],[359,35],[327,-93],[283,-174],[119,-208],[376,-35],[359,81],[381,116],[342,70],[283,-139],[370,46],[239,451],[224,-266],[321,-104],[348,58],[228,-232],[365,-23],[337,-69],[332,-128],[218,220],[108,209],[278,-232],[381,58],[283,-127],[190,-197],[370,58],[288,127],[283,151],[337,81],[392,69],[354,81],[272,127],[163,186],[65,254],[-32,244],[-87,231],[-98,232],[-87,231],[-71,209],[-16,231],[27,232],[130,220],[109,243],[44,231],[-55,255],[-32,232],[136,266],[152,173],[180,220],[190,186],[223,173],[109,255],[152,162],[174,151],[267,34],[174,186],[196,115],[228,70],[202,150],[157,186],[218,69],[163,-151],[-103,-196],[-283,-174],[-120,-127],[-206,92],[-229,-58],[-190,-139],[-202,-150],[-136,-174],[-38,-231],[17,-220],[130,-197],[-190,-139],[-261,-46],[-153,-197],[-163,-185],[-174,-255],[-44,-220],[98,-243],[147,-185],[229,-139],[212,-185],[114,-232],[60,-220],[82,-232],[130,-196],[82,-220],[38,-544],[81,-220],[22,-232],[87,-231],[-38,-313],[-152,-243],[-163,-197],[-370,-81],[-125,-208],[-169,-197],[-419,-220],[-370,-93],[-348,-127],[-376,-128],[-223,-243],[-446,-23],[-489,23],[-441,-46],[-468,0],[87,-232],[424,-104],[311,-162],[174,-208],[-310,-185],[-479,58],[-397,-151],[-17,-243],[-11,-232],[327,-196],[60,-220],[353,-220],[588,-93],[500,-162],[398,-185],[506,-186],[690,-92],[681,-162],[473,-174],[517,-197],[272,-278],[136,-220],[337,209],[457,173],[484,186],[577,150],[495,162],[691,12],[680,-81],[560,-139],[180,255],[386,173],[702,12],[550,127],[522,128],[577,81],[614,104],[430,150],[-196,209],[-119,208],[0,220],[-539,-23],[-571,-93],[-544,0],[-77,220],[39,440],[125,128],[397,138],[468,139],[337,174],[337,174],[251,231],[380,104],[376,81],[190,47],[430,23],[408,81],[343,116],[337,139],[305,139],[386,185],[245,197],[261,173],[82,232],[-294,139],[98,243],[185,185],[288,116],[305,139],[283,185],[217,232],[136,277],[202,163],[331,-35],[136,-197],[332,-23],[11,220],[142,231],[299,-58],[71,-220],[331,-34],[360,104],[348,69],[315,-34],[120,-243],[305,196],[283,105],[315,81],[310,81],[283,139],[310,92],[240,128],[168,208],[207,-151],[288,81],[202,-277],[157,-209],[316,116],[125,232],[283,162],[365,-35],[108,-220],[229,220],[299,69],[326,23],[294,-11],[310,-70],[300,-34],[130,-197],[180,-174],[304,104],[327,24],[315,0],[310,11],[278,81],[294,70],[245,162],[261,104],[283,58],[212,162],[152,324],[158,197],[288,-93],[109,-208],[239,-139],[289,46],[196,-208],[206,-151],[283,139],[98,255],[250,104],[289,197],[272,81],[326,116],[218,127],[228,139],[218,127],[261,-69],[250,208],[180,162],[261,-11],[229,139],[54,208],[234,162],[228,116],[278,93],[256,46],[244,-35],[262,-58],[223,-162],[27,-254],[245,-197],[168,-162],[332,-70],[185,-162],[229,-162],[266,-35],[223,116],[240,243],[261,-127],[272,-70],[261,-69],[272,-46],[277,0],[229,-614],[-11,-150],[-33,-267],[-266,-150],[-218,-220],[38,-232],[310,12],[-38,-232],[-141,-220],[-131,-243],[212,-185],[321,-58],[321,104],[153,232],[92,220],[153,185],[174,174],[70,208],[147,289],[174,58],[316,24],[277,69],[283,93],[136,231],[82,220],[190,220],[272,151],[234,115],[153,197],[157,104],[202,93],[277,-58],[250,58],[272,69],[305,-34],[201,162],[142,393],[103,-162],[131,-278],[234,-115],[266,-47],[267,70],[283,-46],[261,-12],[174,58],[234,-35],[212,-127],[250,81],[300,0],[255,81],[289,-81],[185,197],[141,196],[191,163],[348,439],[179,-81],[212,-162],[185,-208],[354,-359],[272,-12],[256,0],[299,70],[299,81],[229,162],[190,174],[310,23],[207,127],[218,-116],[141,-185],[196,-185],[305,23],[190,-150],[332,-151],[348,-58],[288,47],[218,185],[185,185],[250,46],[251,-81],[288,-58],[261,93],[250,0],[245,-58],[256,-58],[250,104],[299,93],[283,23],[316,0],[255,58],[251,46],[76,290],[11,243],[174,-162],[49,-266],[92,-244],[115,-196],[234,-105],[315,35],[365,12],[250,35],[364,0],[262,11],[364,-23],[310,-46],[196,-186],[-54,-220],[179,-173],[299,-139],[310,-151],[360,-104],[375,-92],[283,-93],[315,-12],[180,197],[245,-162],[212,-185],[245,-139],[337,-58],[321,-69],[136,-232],[316,-139],[212,-208],[310,-93],[321,12],[299,-35],[332,12],[332,-47],[310,-81],[288,-139],[289,-116],[195,-173],[-32,-232],[-147,-208],[-125,-266],[-98,-209],[-131,-243],[-364,-93],[-163,-208],[-360,-127],[-125,-232],[-190,-220],[-201,-185],[-115,-243],[-70,-220],[-28,-266],[6,-220],[158,-232],[60,-220],[130,-208],[517,-81],[109,-255],[-501,-93],[-424,-127],[-528,-23],[-234,-336],[-49,-278],[-119,-220],[-147,-220],[370,-196],[141,-244],[239,-219],[338,-197],[386,-186],[419,-185],[636,-185],[142,-289],[800,-128],[53,-45],[208,-175],[767,151],[636,-186],[-99504,-147],[245,344],[501,-185],[32,21]],[[31400,18145],[-92,-239],[-238,-183],[-301,67],[-202,177],[-291,86],[-350,330],[-283,317],[-383,662],[229,-124],[390,-395],[369,-212],[143,271],[90,405],[256,244],[198,-70]],[[30935,19481],[106,-274],[139,-443],[361,-355],[389,-147],[-125,-296],[-264,-29],[-141,208]],[[33139,19680],[-139,266],[333,354],[236,-148],[167,237],[222,-266],[-83,-207],[-375,-177],[-125,207],[-236,-266]],[[69095,21172],[-7,314],[41,244],[19,121],[179,-186],[263,-74],[9,-112],[-77,-269],[-427,-38]],[[90796,24799],[-57,32],[-171,19],[-171,505],[-38,390],[-160,515],[7,271],[181,-52],[269,-204],[151,81],[217,113],[166,-39],[20,-702],[-95,-203],[-29,-476],[-97,162],[-193,-412]],[[97036,23023],[-256,13],[-180,194],[-302,42],[-46,217],[149,438],[349,583],[179,111],[200,225],[238,310],[167,306],[123,441],[106,149],[41,330],[195,273],[61,-251],[63,-244],[198,239],[80,-249],[0,-249],[-103,-274],[-182,-435],[-142,-238],[103,-284],[-214,-7],[-238,-223],[-75,-387],[-157,-597],[-219,-264],[-138,-169]],[[98677,25949],[-48,155],[-116,85],[160,486],[-91,326],[-299,236],[8,214],[201,206],[47,455],[-13,382],[-113,396],[8,104],[-133,244],[-218,523],[-117,418],[104,46],[151,-328],[216,-153],[78,-526],[202,-622],[5,403],[126,-161],[41,-447],[224,-192],[188,-48],[158,226],[141,-69],[-67,-524],[-85,-345],[-212,12],[-74,-179],[26,-254],[-41,-110],[-105,-319],[-138,-404],[-214,-236]],[[96316,37345],[-153,160],[-199,266],[-179,313],[-184,416],[-38,201],[119,-9],[156,-201],[122,-200],[89,-166],[228,-366],[144,-272],[-105,-142]],[[99425,39775],[-153,73],[-27,260],[107,203],[126,-74],[69,98],[96,-171],[-46,-308],[-172,-81]],[[99645,40529],[-36,220],[139,121],[88,33],[163,184],[0,-289],[-177,-145],[-177,-124]],[[0,40798],[0,289],[57,27],[-34,-284],[-23,-32]],[[96531,40773],[-93,259],[10,158],[175,-339],[-92,-78]],[[96463,41280],[-75,74],[-58,-32],[-39,163],[-6,453],[133,-182],[45,-476]],[[62613,35454],[-160,151],[-220,211],[-77,312],[-18,524],[-98,471],[-26,425],[50,426],[128,102],[1,197],[133,447],[25,377],[-65,280],[-52,372],[-23,544],[97,331],[38,375],[138,22],[155,121],[103,107],[122,7],[158,337],[229,364],[83,297],[-38,253],[118,-71],[153,410],[6,356],[92,264],[96,-254],[74,-251],[69,-390],[45,-711],[72,-276],[-28,-284],[-49,-174],[-94,347],[-53,-175],[53,-438],[-24,-250],[-77,-137],[-18,-500],[-109,-689],[-137,-814],[-172,-1120],[-106,-821],[-125,-685],[-226,-140],[-243,-250]],[[90643,27516],[-230,262],[-170,104],[43,308],[-152,-112],[-243,-428],[-240,160],[-158,94],[-159,42],[-269,171],[-179,364],[-52,449],[-64,298],[-137,240],[-267,71],[91,287],[-67,438],[-136,-408],[-247,-109],[146,327],[42,341],[107,289],[-22,438],[-226,-504],[-174,-202],[-106,-470],[-217,243],[9,313],[-174,429],[-147,221],[52,137],[-356,358],[-195,17],[-267,287],[-498,-56],[-359,-211],[-317,-197],[-265,39],[-294,-303],[-241,-137],[-53,-309],[-103,-240],[-236,-15],[-174,-52],[-246,107],[-199,-64],[-191,-27],[-165,-315],[-81,26],[-140,-167],[-133,-187],[-203,23],[-186,0],[-295,377],[-149,113],[6,338],[138,81],[47,134],[-10,212],[34,411],[-31,350],[-147,598],[-45,337],[12,336],[-111,385],[-7,174],[-123,235],[-35,463],[-158,467],[-39,252],[122,-255],[-93,548],[137,-171],[83,-229],[-5,303],[-138,465],[-26,186],[-65,177],[31,341],[56,146],[38,295],[-29,346],[114,425],[21,-450],[118,406],[225,198],[136,252],[212,217],[126,46],[77,-73],[219,220],[168,66],[42,129],[74,54],[153,-14],[292,173],[151,262],[71,316],[163,300],[13,236],[7,321],[194,502],[117,-510],[119,118],[-99,279],[87,287],[122,-128],[34,449],[152,291],[67,233],[140,101],[4,165],[122,-69],[5,148],[122,85],[134,80],[205,-271],[155,-350],[173,-4],[177,-56],[-59,325],[133,473],[126,155],[-44,147],[121,338],[168,208],[142,-70],[234,111],[-5,302],[-204,195],[148,86],[184,-147],[148,-242],[234,-151],[79,60],[172,-182],[162,169],[105,-51],[65,113],[127,-292],[-74,-316],[-105,-239],[-96,-20],[32,-236],[-81,-295],[-99,-291],[20,-166],[221,-327],[214,-189],[143,-204],[201,-350],[78,1],[145,-151],[43,-183],[265,-200],[183,202],[55,317],[56,262],[34,324],[85,470],[-39,286],[20,171],[-32,339],[37,445],[53,120],[-43,197],[67,313],[52,325],[7,168],[104,222],[78,-289],[19,-371],[70,-71],[11,-249],[101,-300],[21,-335],[-10,-214],[100,-464],[179,223],[92,-250],[133,-231],[-29,-262],[60,-506],[42,-295],[70,-72],[75,-505],[-27,-307],[90,-400],[301,-309],[197,-281],[186,-257],[-37,-143],[159,-371],[108,-639],[111,130],[113,-256],[68,91],[48,-626],[197,-363],[129,-226],[217,-478],[78,-475],[7,-337],[-19,-365],[132,-502],[-16,-523],[-48,-274],[-75,-527],[6,-339],[-55,-423],[-123,-538],[-205,-290],[-102,-458],[-93,-292],[-82,-510],[-107,-294],[-70,-442],[-36,-407],[14,-187],[-159,-205],[-311,-22],[-257,-242],[-127,-229],[-168,-254]],[[95110,44183],[-194,4],[-106,363],[166,-142],[56,-22],[78,-203]],[[83414,44519],[-368,414],[259,116],[146,-180],[97,-180],[-17,-159],[-117,-11]],[[94572,44733],[-170,60],[-58,91],[17,235],[183,-93],[91,-124],[45,-155],[-108,-14]],[[94868,44799],[-206,512],[-57,353],[94,0],[100,-473],[111,-283],[-42,-109]],[[84713,45326],[32,139],[239,133],[194,20],[87,74],[105,-74],[-102,-160],[-289,-258],[-233,-170]],[[84746,45030],[-181,-441],[-238,-130],[-33,71],[25,201],[119,360],[275,235]],[[82576,45238],[-149,5],[95,340],[153,5],[74,209],[100,-158],[172,48],[69,-251],[-321,-119],[-193,-79]],[[83681,45301],[-370,73],[0,216],[220,123],[174,-177],[185,45],[249,216],[-41,-328],[-417,-168]],[[94421,45535],[-218,251],[-152,212],[-104,197],[41,60],[128,-142],[228,-272],[65,-187],[12,-119]],[[93704,46205],[-121,134],[-114,243],[14,99],[166,-250],[111,-193],[-56,-33]],[[81823,45409],[-306,238],[-251,-16],[-288,44],[-260,106],[-322,225],[-204,59],[-116,-74],[-506,243],[-48,254],[-255,44],[191,564],[337,-35],[224,-231],[115,-45],[38,-210],[533,-59],[61,244],[515,-284],[101,-383],[417,-108],[341,-351],[-317,-225]],[[87280,46506],[-27,445],[49,212],[58,200],[63,-173],[0,-282],[-143,-402]],[[93221,46491],[-120,227],[-122,375],[-59,450],[38,57],[30,-175],[84,-134],[135,-375],[131,-200],[-39,-166],[-78,-59]],[[91733,46847],[-148,1],[-228,171],[-158,165],[23,183],[249,-86],[152,46],[42,283],[40,15],[27,-314],[158,45],[78,202],[155,211],[-30,348],[166,11],[56,-97],[-5,-327],[-93,-361],[-146,-48],[-44,-166],[-152,-144],[-142,-138]],[[85242,48340],[-192,108],[-54,254],[281,29],[69,-195],[-104,-196]],[[86342,48300],[-234,244],[-232,49],[-157,-39],[-192,21],[65,325],[344,24],[305,-172],[101,-452]],[[92451,47764],[-52,348],[-65,229],[-126,193],[-158,252],[-200,174],[77,143],[150,-166],[94,-130],[117,-142],[111,-248],[106,-189],[33,-307],[-87,-157]],[[89166,49043],[482,-407],[513,-338],[192,-302],[154,-297],[43,-349],[462,-365],[68,-313],[-256,-64],[62,-393],[248,-388],[180,-627],[159,20],[-11,-262],[215,-100],[-84,-111],[295,-249],[-30,-171],[-184,-41],[-69,153],[-238,66],[-281,89],[-216,377],[-158,325],[-144,517],[-362,259],[-235,-169],[-170,-195],[35,-436],[-218,-203],[-155,99],[-288,25]],[[89175,45193],[-247,485],[-282,118],[-69,-168],[-352,-18],[118,481],[175,164],[-72,642],[-134,496],[-538,500],[-229,50],[-417,546],[-82,-287],[-107,-52],[-63,216],[-1,257],[-212,290],[299,213],[198,-11],[-23,156],[-407,1],[-110,352],[-248,109],[-117,293],[374,143],[142,192],[446,-242],[44,-220],[78,-955],[287,-354],[232,627],[319,356],[247,1],[238,-206],[206,-212],[298,-113]],[[83276,47228],[-119,173],[79,544],[-43,570],[-117,4],[-86,405],[115,387],[40,469],[139,891],[58,243],[237,439],[217,-174],[350,-82],[319,25],[275,429],[48,-132],[-223,-587],[-209,-113],[-267,115],[-463,-29],[-243,-85],[-39,-447],[248,-526],[150,268],[518,201],[-22,-272],[-121,86],[-121,-347],[-245,-229],[263,-757],[-50,-203],[249,-682],[-2,-388],[-148,-173],[-109,207],[134,484],[-273,-229],[-69,164],[36,228],[-200,346],[21,576],[-186,-179],[24,-689],[11,-846],[-176,-85]],[[85582,50048],[-112,374],[-82,755],[56,472],[92,215],[20,-322],[164,-52],[26,-241],[-15,-517],[-143,58],[-42,-359],[114,-312],[-78,-71]],[[79085,47110],[-234,494],[-356,482],[-119,358],[-210,481],[-138,443],[-212,827],[-244,493],[-81,508],[-103,461],[-250,372],[-145,506],[-209,330],[-290,652],[-24,300],[178,-24],[430,-114],[246,-577],[215,-401],[153,-246],[263,-635],[283,-9],[233,-405],[161,-495],[211,-270],[-111,-482],[159,-205],[100,-15],[47,-412],[97,-330],[204,-52],[135,-374],[-70,-735],[-11,-914],[-308,-12]],[[80461,51765],[204,-202],[214,110],[56,500],[119,112],[333,128],[199,467],[137,374]],[[81723,53254],[110,221],[236,323]],[[82069,53798],[214,411],[140,462],[112,2],[143,-299],[13,-257],[183,-165],[231,-177],[-20,-232],[-186,-29],[50,-289],[-205,-201]],[[82744,53024],[-158,-533],[204,-560],[-48,-272],[312,-546],[-329,-70],[-93,-403],[12,-535],[-267,-404],[-7,-589],[-107,-903],[-41,210],[-316,-266],[-110,361],[-198,34],[-139,189],[-330,-212],[-101,285],[-182,-32],[-229,68],[-43,793],[-138,164],[-134,505],[-38,517],[32,548],[165,392]],[[84832,53877],[-327,343],[-78,428],[84,280],[-176,280],[-87,-245],[-131,23],[-205,-330],[-46,173],[109,498],[175,166],[151,223],[98,-268],[212,162],[45,264],[196,15],[-16,457],[225,-280],[23,-297],[20,-218],[28,-392],[16,-332],[-94,-540],[-102,602],[-130,-300],[89,-435],[-79,-277]],[[72318,54106],[-132,470],[-49,849],[126,959],[192,-328],[129,-416],[134,-616],[-42,-615],[-116,-168],[-242,-135]],[[32841,56488],[-50,53],[81,163],[-6,233],[160,77],[58,-21],[-11,-440],[-232,-65]],[[84165,55910],[-171,409],[57,158],[70,165],[30,367],[153,35],[-44,-398],[205,570],[-26,-563],[-100,-195],[-87,-373],[-87,-175]],[[82548,55523],[136,414],[200,364],[167,409],[146,587],[49,-482],[-183,-325],[-146,-406],[-369,-561]],[[83889,56748],[-10,275],[20,301],[-43,282],[166,-183],[177,1],[-5,-247],[-129,-251],[-176,-178]],[[84666,56567],[-11,416],[-84,31],[-43,357],[163,-47],[-4,224],[-169,451],[266,-13],[77,-220],[78,-660],[-214,157],[5,-199],[68,-364],[-132,-133]],[[83683,57791],[-119,295],[-142,450],[238,-22],[97,-213],[-74,-510]],[[84465,57987],[-216,290],[-103,310],[-71,-217],[-177,354],[-253,-87],[-138,130],[14,244],[87,151],[-83,136],[-36,-213],[-137,340],[-41,257],[-11,566],[112,-195],[29,925],[90,535],[169,-1],[171,-168],[85,153],[26,-150],[-46,-245],[95,-423],[-73,-491],[-164,-196],[-43,-476],[62,-471],[147,-65],[123,70],[347,-328],[-27,-321],[91,-142],[-29,-272]],[[31337,61183],[-16,253],[40,86],[227,-3],[142,-52],[50,-118],[-71,-149],[-209,4],[-163,-21]],[[28554,61038],[-156,95],[-159,215],[34,135],[116,41],[64,-20],[187,-53],[147,-142],[46,-161],[-195,-11],[-84,-99]],[[30080,62227],[34,101],[217,-3],[165,-152],[73,15],[50,-209],[152,11],[-9,-176],[124,-21],[136,-217],[-103,-240],[-132,128],[-127,-25],[-92,28],[-50,-107],[-106,-37],[-43,144],[-92,-85],[-111,-405],[-71,94],[-14,170]],[[30081,61241],[-185,100],[-131,-41],[-169,43],[-130,-110],[-149,184],[24,190],[256,-82],[210,-47],[100,131],[-127,256],[2,226],[-175,92],[62,163],[170,-26],[241,-93]],[[80409,61331],[-228,183],[-8,509],[137,267],[304,166],[159,-14],[62,-226],[-122,-260],[-64,-341],[-240,-284]],[[6753,61756],[-69,84],[8,165],[-46,216],[14,65],[48,97],[-19,116],[16,55],[21,-11],[107,-100],[49,-51],[45,-79],[71,-207],[-7,-33],[-108,-126],[-89,-92],[-41,-99]],[[6551,62734],[-47,125],[-32,48],[-3,37],[27,50],[99,-56],[73,-90],[-23,-71],[-94,-43]],[[6447,63028],[-149,17],[21,72],[137,-26],[-9,-63]],[[6192,63143],[-19,8],[-97,21],[-35,133],[-11,24],[74,82],[23,-38],[80,-196],[-15,-34]],[[5704,63509],[-93,107],[14,43],[43,58],[64,-12],[5,-138],[-33,-58]],[[28401,62311],[186,329],[-113,154],[-179,39],[-96,171],[-66,336],[-157,-23],[-259,159],[-83,124],[-362,91],[-97,115],[104,148],[-273,30],[-199,-307],[-115,-8],[-40,-144],[-138,-65],[-118,56],[146,183],[60,213],[126,131],[142,116],[210,56],[67,65],[240,-42],[219,-7],[261,-201],[110,-216],[260,66],[98,-138],[235,-366],[173,-267],[92,8],[165,-120],[-20,-167],[205,-24],[210,-242],[-33,-138],[-185,-75],[-187,-29],[-191,46],[-398,-57]],[[28394,64588],[-70,340],[-104,171],[60,375],[84,-23],[97,-491],[1,-343],[-68,-29]],[[83540,63560],[-146,499],[-32,438],[163,581],[223,447],[127,-176],[-49,-357],[-167,-947],[-119,-485]],[[28080,66189],[-19,219],[130,47],[184,-18],[8,-153],[-303,-95]],[[28563,65870],[-51,75],[4,309],[-124,234],[-1,67],[220,-265],[-48,-420]],[[86948,69902],[-181,168],[2,281],[154,352],[158,-68],[114,248],[204,-127],[35,-203],[-156,-357],[-114,189],[-143,-137],[-73,-346]],[[59437,71293],[8,-48],[-285,-240],[-136,77],[-64,237],[132,22]],[[59092,71341],[19,3],[40,143],[200,-8],[253,176],[-188,-251],[21,-111]],[[56867,71211],[3,98],[-339,115],[52,251],[152,-199],[216,34],[207,-42],[-7,-103],[151,71],[-35,-175],[-400,-50]],[[54194,72216],[-213,222],[-141,64],[-387,300],[38,304],[325,-54],[284,64],[211,51],[-100,-465],[41,-183],[-58,-303]],[[52446,73567],[-105,156],[-11,713],[-64,338],[153,-30],[139,183],[166,-419],[-39,-782],[-126,38],[-113,-197]],[[86301,68913],[-135,229],[69,533],[-176,172],[-113,405],[263,182],[145,371],[280,306],[203,403],[553,177],[297,-121],[291,1050],[185,-282],[408,591],[158,229],[174,723],[-47,664],[117,374],[295,108],[152,-819],[-9,-479],[-256,-595],[4,-610],[-104,-472],[48,-296],[-145,-416],[-355,-278],[-488,-36],[-396,-675],[-186,227],[-12,442],[-483,-130],[-329,-279],[-325,-11],[282,-435],[-186,-1004],[-179,-248]],[[52563,75028],[-126,120],[-64,398],[56,219],[179,226],[47,-507],[-92,-456]],[[88876,75140],[-39,587],[138,455],[296,33],[81,817],[83,460],[326,-615],[213,-198],[195,-126],[197,250],[62,-663],[-412,-162],[-244,-587],[-436,404],[-152,-646],[-308,-9]],[[32535,77739],[-353,250],[-69,198],[105,183],[97,-288],[202,-79],[257,16],[-137,-242],[-102,-38]],[[32696,79581],[-360,186],[-258,279],[96,49],[365,-148],[284,-247],[8,-108],[-135,-11]],[[15552,79158],[-456,269],[-84,209],[-248,207],[-50,168],[-286,107],[-107,321],[24,137],[291,-129],[171,-89],[261,-63],[94,-204],[138,-280],[277,-244],[115,-327],[-140,-82]],[[35133,78123],[-183,111],[60,484],[-77,75],[-322,-513],[-166,21],[196,277],[-267,144],[-298,-35],[-539,18],[-43,175],[173,208],[-121,160],[234,356],[287,941],[172,336],[241,204],[129,-26],[-54,-160],[-148,-372],[-184,-517],[181,199],[187,-126],[-98,-206],[247,-162],[128,144],[277,-182],[-86,-433],[194,101],[36,-313],[86,-367],[-117,-520],[-125,-22]],[[13561,81409],[-111,1],[-167,270],[-103,272],[-140,184],[-51,260],[16,188],[131,-76],[267,47],[-84,-671],[242,-475]],[[89469,77738],[-51,496],[31,575],[-32,638],[64,446],[13,790],[-163,581],[24,808],[257,271],[-110,274],[123,83],[73,-391],[96,-569],[-7,-581],[114,-597],[280,-1046],[-411,195],[-171,-854],[271,-605],[-8,-413],[-211,356],[-182,-457]],[[47896,83153],[233,24],[298,-365],[-149,-406]],[[48278,82406],[46,-422],[-210,-528],[-493,-349],[-393,89],[225,617],[-145,601],[378,463],[210,276]],[[53358,82957],[-291,333],[-39,246],[408,195],[88,-296],[-166,-478]],[[7221,84100],[-142,152],[-43,277],[252,210],[148,90],[185,-40],[117,-183],[-240,-281],[-277,-225]],[[48543,80097],[-148,118],[407,621],[249,127],[-436,99],[-79,235],[291,183],[-152,319],[52,387],[414,-54],[40,343],[-190,372],[-337,104],[-66,160],[101,264],[-92,163],[-149,-279],[-17,569],[-140,301],[101,611],[216,480],[222,-47],[335,49],[-297,-639],[283,81],[304,-3],[-72,-481],[-250,-530],[287,-38],[270,-759],[190,-95],[171,-673],[79,-233],[337,-113],[-34,-378],[-142,-173],[111,-305],[-250,-310],[-371,6],[-473,-163],[-130,116],[-183,-276],[-257,67],[-195,-226]],[[3835,85884],[-182,110],[-168,161],[274,101],[220,-54],[27,-226],[-171,-92]],[[27873,86994],[-123,50],[-73,176],[13,41],[107,177],[114,-13],[70,-121],[-108,-310]],[[26925,87305],[-196,13],[-61,160],[207,273],[381,-6],[-6,-114],[-325,-326]],[[2908,87788],[-211,128],[-106,107],[-245,-34],[-66,52],[17,223],[171,-113],[173,61],[225,-156],[276,-79],[-23,-64],[-211,-125]],[[26243,87832],[-95,346],[-377,-57],[242,292],[35,465],[95,542],[201,-49],[51,-259],[143,91],[161,-155],[304,-203],[318,-184],[25,-281],[204,46],[199,-196],[-247,-186],[-432,142],[-156,266],[-275,-314],[-396,-306]],[[44817,88095],[-365,87],[-775,187],[273,261],[-605,289],[492,114],[-12,174],[-583,137],[188,385],[421,87],[433,-400],[422,321],[349,-167],[453,315],[461,-42],[-64,-382],[314,-403],[-361,-451],[-801,-405],[-240,-107]],[[28614,90223],[-69,289],[118,331],[255,82],[217,-163],[3,-253],[-32,-82],[-180,-174],[-312,-30]],[[1957,88542],[-260,17],[-212,206],[-369,172],[-62,257],[-283,96],[-315,-76],[-151,207],[60,219],[-333,-140],[126,-278],[-158,-251],[0,2354],[681,-451],[728,-588],[-24,-367],[187,-147],[-64,429],[754,-88],[544,-553],[-276,-257],[-455,-61],[-7,-578],[-111,-122]],[[23258,91203],[-374,179],[-226,-65],[-380,266],[245,183],[194,256],[295,-168],[166,-106],[84,-112],[169,-226],[-173,-207]],[[99694,92399],[-49,187],[354,247],[0,-404],[-305,-30]],[[0,92429],[0,404],[36,24],[235,-1],[402,-169],[-24,-81],[-286,-141],[-363,-36]],[[26228,91219],[16,648],[394,-45]],[[26638,91822],[411,-87],[373,-293],[17,-293],[-207,-315],[196,-316],[-36,-288],[-544,-413],[-386,-91],[-287,178],[-83,-297],[-268,-498]],[[25824,89109],[-81,-258],[-322,-400]],[[25421,88451],[-397,-39],[-220,-250],[-18,-384],[-323,-74],[-340,-479],[-301,-665],[-108,-466]],[[23714,86094],[-15,-686],[408,-99]],[[24107,85309],[125,-553],[130,-448],[388,117],[517,-256],[277,-225],[199,-279]],[[25743,83665],[348,-162],[294,-249]],[[26385,83254],[459,-34],[302,-58],[-45,-511],[86,-594],[201,-661],[414,-561],[214,192],[150,607],[-145,934],[-196,311],[445,276],[314,415],[154,411]],[[28738,83981],[-22,395],[-189,502]],[[28527,84878],[-338,445],[328,619],[-121,535],[-93,922],[194,137],[476,-161],[286,-57],[230,155],[258,-200],[342,-343],[85,-229],[495,-45],[-8,-496],[92,-747],[254,-92],[201,-348],[402,328],[266,652],[184,274],[216,-527],[362,-754],[307,-709],[-112,-371],[370,-333],[250,-338],[442,-152],[179,-189],[110,-500],[216,-78],[112,-223],[20,-664],[-202,-222],[-199,-207],[-458,-210],[-349,-486],[-470,-96],[-594,125],[-417,4],[-287,-41],[-233,-424],[-354,-262],[-401,-782],[-320,-545],[236,97],[446,776],[583,493]],[[31513,79609],[416,59],[245,-290]],[[32174,79378],[-262,-397],[88,-637],[91,-446],[361,-295],[459,86],[278,664],[19,-429],[180,-214],[-344,-387],[-615,-351],[-276,-239],[-310,-426],[-211,44],[-11,500],[483,488],[-445,-19],[-309,-72]],[[31350,77248],[48,-194],[-296,-286],[-286,-204],[-293,-175]],[[30523,76389],[-159,-386],[-35,-98]],[[30329,75905],[-3,-313],[92,-313],[115,-15],[-29,216],[83,-131],[-22,-169],[-188,-96]],[[30377,75084],[-133,12],[-205,-104]],[[30039,74992],[-121,-29],[-162,-29],[-231,-171],[408,111],[82,-112],[-389,-177],[-177,-1],[8,72],[-84,-164],[82,-27],[-60,-424],[-203,-455],[-20,152]],[[29172,73738],[-61,31],[-91,147]],[[29020,73916],[57,-318]],[[29077,73598],[66,-106],[8,-222]],[[29151,73270],[-89,-230],[-157,-472],[-25,24],[86,402]],[[28966,72994],[-142,226],[-33,490]],[[28791,73710],[-53,-255],[59,-375]],[[28797,73080],[-175,88],[183,-186]],[[28805,72982],[12,-562],[79,-41],[29,-204],[39,-591],[-176,-439],[-288,-175],[-182,-346],[-139,-38],[-141,-217],[-39,-199],[-305,-383],[-157,-281],[-131,-351],[-43,-419],[50,-411],[92,-505],[124,-418],[1,-256],[132,-685],[-9,-398],[-12,-230],[-69,-361]],[[27672,65472],[-83,-74],[-137,71]],[[27452,65469],[-44,259]],[[27408,65728],[-106,136],[-147,508]],[[27155,66372],[-129,452],[-42,231],[57,393],[-77,325],[-217,494]],[[26747,68267],[-108,91],[-281,-269]],[[26358,68089],[-49,30]],[[26309,68119],[-135,276],[-174,146]],[[26000,68541],[-314,-75],[-247,66],[-212,-41]],[[25227,68491],[-118,-83],[54,-166]],[[25163,68242],[-5,-240],[59,-117],[-53,-77],[-103,87],[-104,-112],[-202,18]],[[24755,67801],[-207,313],[-242,-74]],[[24306,68040],[-202,137],[-173,-42],[-234,-138],[-253,-438],[-276,-255],[-152,-282],[-63,-266],[-3,-407],[14,-284],[52,-201]],[[23016,65864],[1,-1],[-1,-1],[-107,-516]],[[22909,65346],[-49,-426],[-20,-791],[-27,-289],[48,-322],[86,-288],[56,-458],[184,-440],[65,-337],[109,-291],[295,-157],[114,-247],[244,165],[212,60],[208,106],[175,101],[176,241],[67,345],[22,496],[48,173],[188,155],[294,137],[246,-21],[169,50],[66,-125],[-9,-285],[-149,-351],[-66,-360],[51,-103],[-42,-255],[-69,-461],[-71,152],[-58,-10]],[[25472,61510],[1,-87],[53,-3],[-5,-160],[-45,-256],[24,-91],[-29,-212],[18,-56],[-32,-299],[-55,-156],[-50,-19],[-55,-205]],[[25297,59966],[90,-107],[24,88],[82,-75]],[[25493,59872],[29,-23],[61,104],[79,8],[26,-48],[43,29],[129,-53]],[[25860,59889],[128,16],[90,65]],[[26078,59970],[32,66],[89,-31],[66,-40],[73,14],[55,51],[127,-82],[44,-13],[85,-110],[80,-132],[101,-91],[73,-162]],[[26903,59440],[-24,-57],[-14,-132],[29,-216],[-64,-202],[-30,-237],[-9,-261],[15,-152],[7,-266],[-43,-58],[-26,-253],[19,-156],[-56,-151],[12,-159],[43,-97]],[[26762,57043],[70,-321],[108,-238],[130,-252]],[[27070,56232],[100,-212]],[[27170,56020],[-6,-125],[111,-27]],[[27275,55868],[26,48],[77,-145],[136,42],[119,150],[168,119],[95,176],[153,-34],[-10,-58],[155,-21],[124,-102],[90,-177],[105,-164]],[[28513,55702],[143,-18],[209,412],[114,63],[3,195],[51,500],[159,274],[175,11],[22,123],[218,-49],[218,298],[109,132],[134,285],[98,-36],[73,-156],[-54,-199]],[[30185,57537],[-8,-139],[-163,-69],[91,-268],[-3,-309]],[[30102,56752],[-123,-343],[105,-469]],[[30084,55940],[120,38],[62,427],[-86,208],[-14,447],[346,241],[-38,278],[97,186],[100,-415],[195,-9],[180,-330],[11,-195],[249,-6],[297,61],[159,-264]],[[31762,56607],[213,-73],[155,184]],[[32130,56718],[4,149],[344,35],[333,9],[-236,-175],[95,-279],[222,-44],[210,-291],[45,-473],[144,13],[109,-139]],[[33400,55523],[183,-217],[171,-385],[8,-304],[105,-14],[149,-289],[109,-205]],[[34125,54109],[333,-119],[30,107],[225,43],[298,-159]],[[35011,53981],[95,-65],[204,-140],[294,-499],[46,-242]],[[35650,53035],[95,28],[69,-327],[155,-1033],[149,-97],[7,-408],[-208,-487],[86,-178],[491,-92],[10,-593],[211,388],[349,-212],[462,-361],[135,-346],[-45,-327],[323,182],[540,-313],[415,23],[411,-489],[355,-662],[214,-170],[237,-24],[101,-186],[94,-752],[46,-358],[-110,-977],[-142,-385],[-391,-822],[-177,-668],[-206,-513],[-69,-11],[-78,-435],[20,-1107],[-77,-910],[-30,-390],[-88,-233],[-49,-790],[-282,-771],[-47,-610],[-225,-256],[-65,-355],[-302,2],[-437,-227],[-195,-263],[-311,-173],[-327,-470],[-235,-586],[-41,-441],[46,-326],[-51,-597],[-63,-289],[-195,-325],[-308,-1040],[-244,-468],[-189,-277],[-127,-562],[-183,-337]],[[35174,30629],[-121,-372],[-313,-328],[-205,118],[-151,-63],[-256,253],[-189,-19],[-169,327]],[[33770,30545],[-19,-308],[353,-506],[-38,-408],[173,-257],[-14,-289],[-267,-757],[-412,-317],[-557,-123],[-305,59],[59,-352],[-57,-442],[51,-298],[-167,-208],[-284,-82],[-267,216],[-108,-155],[39,-587],[188,-178],[152,186],[82,-307],[-255,-183],[-223,-367],[-41,-595],[-66,-316],[-262,-2],[-218,-302],[-80,-443]],[[31227,23224],[274,-433],[265,-119]],[[31766,22672],[-96,-531],[-328,-333],[-180,-692],[-254,-234],[-113,-276],[89,-614],[185,-342],[-117,30]],[[30952,19680],[-247,4],[-134,-145],[-250,-213],[-45,-552],[-118,-14],[-313,192],[-318,412],[-346,338],[-87,374],[79,346],[-140,393],[-36,1007],[119,568],[293,457],[-422,172],[265,522],[94,982],[309,-208],[145,1224],[-186,157],[-87,-738],[-175,83],[87,845],[95,1095],[127,404]],[[29661,27385],[-79,576],[-23,666]],[[29559,28627],[117,19],[170,954],[192,945],[118,881],[-64,885],[83,487],[-34,730],[163,721],[50,1143],[89,1227],[87,1321],[-20,967],[-58,832]],[[30452,39739],[-279,340],[-24,242],[-551,593],[-498,646],[-214,365],[-115,488],[46,170],[-236,775],[-274,1090],[-262,1177],[-114,269],[-87,435],[-216,386],[-198,239],[90,264],[-134,563],[86,414],[221,373]],[[27693,48568],[148,442],[-60,258],[-106,-275],[-166,259],[56,167],[-47,536],[97,89],[52,368],[105,381],[-20,241],[153,126],[190,236]],[[28095,51396],[-37,183],[103,44],[-12,296],[65,214],[138,40],[117,371],[106,310],[-102,141],[52,343],[-62,540],[59,155],[-44,500],[-112,315]],[[28366,54848],[-93,170],[-59,319],[68,158],[-70,40]],[[28212,55535],[-52,195],[-138,165]],[[28022,55895],[-122,-38],[-56,-205],[-112,-149],[-61,-20],[-27,-123],[132,-321],[-75,-76],[-40,-87],[-130,-30],[-48,353],[-36,-101],[-92,35],[-56,238],[-114,39],[-72,69],[-119,-1],[-8,-128],[-32,89]],[[26954,55439],[-151,131],[-56,124],[32,103],[-11,130],[-77,142],[-109,116],[-95,76],[-19,173],[-73,105],[18,-172],[-55,-141],[-64,164],[-89,58],[-38,120],[2,179],[36,187],[-78,83],[64,114]],[[26191,57131],[-96,186],[-130,238],[-61,200],[-117,185],[-140,267]],[[25647,58207],[31,92],[46,-89]],[[25724,58210],[21,41]],[[25745,58251],[-48,185]],[[25697,58436],[-84,52],[-31,-140]],[[25582,58348],[-161,9],[-100,57],[-115,117],[-154,37],[-79,127]],[[24973,58695],[-142,103],[-174,11],[-127,117],[-149,244]],[[24381,59170],[-314,636]],[[24067,59806],[-144,192],[-226,154]],[[23697,60152],[-156,-43],[-223,-223],[-140,-58],[-196,156],[-208,112],[-260,271],[-208,83],[-314,275],[-233,282],[-70,158],[-155,35],[-284,187],[-116,270],[-299,335],[-139,373],[-66,288],[93,57],[-29,169],[64,153],[1,204],[-93,266],[-25,235],[-94,298],[-244,587],[-280,462],[-135,368],[-238,241],[-51,145],[42,365]],[[19641,66203],[-142,137],[-164,288]],[[19335,66628],[-69,412],[-149,48],[-162,311],[-130,288],[-12,184],[-149,446],[-99,452],[5,227]],[[18570,68996],[-201,235],[-93,-26]],[[18276,69205],[-159,163],[-44,-240],[46,-284],[27,-444],[95,-243],[206,-407],[46,-139],[42,-42],[37,-203],[49,8],[56,-381],[85,-150],[59,-210],[174,-300],[92,-550],[83,-259],[77,-277],[15,-311],[134,-20],[112,-268],[100,-264],[-6,-106],[-117,-217],[-49,3],[-74,359]],[[19362,64423],[-182,337],[-200,286]],[[18980,65046],[-142,150],[9,432],[-42,320],[-132,183],[-191,264],[-37,-76],[-70,154],[-171,143],[-164,343],[20,44],[115,-33],[103,221],[10,266],[-214,422],[-163,163],[-102,369],[-103,388],[-129,472],[-113,531]],[[17464,69802],[-46,302],[-180,340],[-130,71],[-30,169],[-156,30],[-100,159],[-258,59]],[[16564,70932],[-70,95],[-34,324]],[[16460,71351],[-270,594],[-231,821],[10,137],[-123,195],[-215,495],[-38,482],[-148,323],[61,489],[-10,507],[-89,453],[109,557],[67,1072],[-50,792],[-88,506],[-80,274],[33,115],[402,-200],[148,-558]],[[15948,78405],[68,156],[-44,485],[-94,484]],[[15878,79530],[-38,1],[-537,581],[-199,255]],[[15104,80367],[-503,245],[-155,523],[40,362]],[[14486,81497],[-356,252],[-48,476],[-336,429],[-6,304]],[[13740,82958],[-153,223],[-245,188],[-78,515],[-358,478],[-150,558],[-267,38],[-441,15],[-326,170],[-574,613],[-266,112],[-486,211]],[[10396,86079],[-385,-50],[-546,271]],[[9465,86300],[-330,252],[-309,-125],[58,-411],[-154,-38],[-321,-123],[-245,-199]],[[8164,85656],[-307,-126],[-40,348]],[[7817,85878],[125,580],[295,182],[-76,148],[-354,-329],[-190,-394],[-400,-420],[203,-287],[-262,-424]],[[7158,84934],[-299,-247],[-278,-181]],[[6581,84506],[-69,-261],[-434,-305],[-87,-278],[-325,-252],[-191,45],[-259,-165],[-282,-201],[-231,-197],[-477,-169],[-43,99],[304,276],[271,182],[296,324],[345,66],[137,243],[385,353],[62,119],[205,208],[48,448],[141,349],[-320,-179],[-90,102],[-150,-215],[-181,300],[-75,-212],[-104,294],[-278,-236],[-170,0],[-24,352]],[[4985,85596],[50,217],[-179,210]],[[4856,86023],[-361,-113],[-235,277],[-190,142],[-1,334],[-214,252],[108,340],[226,330],[99,303],[225,43],[191,-94],[224,285],[201,-51],[212,183],[-52,270],[-155,106],[205,228],[-170,-7],[-295,-128],[-85,-131],[-219,131],[-392,-67],[-407,142],[-117,238],[-351,343],[390,247],[620,289],[228,0]],[[4541,89915],[-38,-295],[586,22]],[[5089,89642],[-225,366]],[[4864,90008],[-342,226],[-197,295]],[[4325,90529],[-267,252],[-381,187],[155,309],[493,19],[350,270],[66,287],[284,281],[271,68],[526,262],[256,-40],[427,315],[421,-124],[201,-266],[123,114],[469,-35],[-16,-136],[425,-101],[283,59],[585,-186],[534,-56],[214,-77],[370,96],[421,-177],[302,-83]],[[10837,91767],[518,-142]],[[11355,91625],[438,-284],[289,-55]],[[12082,91286],[244,247],[336,184],[413,-72],[416,259],[455,148],[191,-245],[207,138],[62,278],[192,-63],[470,-530],[369,401]],[[15437,92031],[38,-448],[341,96]],[[15816,91679],[105,173],[337,-34],[424,-248],[650,-217],[383,-100],[272,38]],[[17987,91291],[375,-300],[-391,-293]],[[17971,90698],[502,-127],[750,70],[236,103],[296,-354],[302,299],[-283,251],[179,202],[338,27],[223,59],[224,-141],[279,-321],[310,47],[491,-266],[431,94],[405,-14],[-32,367],[247,103],[431,-200],[-2,-559],[177,471],[223,-16],[126,594],[-298,364],[-324,239],[22,653],[329,429],[366,-95],[281,-261],[378,-666],[-247,-290],[517,-120],[-1,-604],[371,463],[332,-380],[-83,-438],[269,-399],[290,427],[202,510]],[[19722,91216],[-824,-103],[-374,-41]],[[18524,91072],[-151,279],[-379,161],[-246,-66],[-343,468],[185,62],[429,101],[392,-26],[362,103],[-537,138],[-594,-47],[-394,12],[-146,217],[644,237],[-428,-9],[-485,156],[233,443],[193,235],[744,359],[284,-114],[-139,-277],[618,179],[386,-298],[314,302],[254,-194],[227,-580],[140,244],[-197,606],[244,86],[276,-94],[311,-239],[175,-575],[86,-417],[466,-293],[502,-279],[-31,-260],[-456,-48],[178,-227],[-94,-217],[-503,93],[-478,160],[-322,-36],[-522,-201]],[[20728,93568],[-434,413],[95,83],[372,24],[211,-130],[-244,-390]],[[27920,93557],[-80,36],[-306,313],[12,213],[133,39],[636,-63],[479,-325],[25,-163],[-296,17],[-299,13],[-304,-80]],[[31620,87170],[-753,236],[-596,343],[-337,287],[97,167],[-414,304],[-405,286],[5,-171],[-803,-94],[-235,203],[183,435],[522,10],[571,76],[-92,211],[96,294],[360,576],[-77,261],[-107,203],[-425,286],[-563,201],[178,150],[-294,367],[-245,34],[-219,201],[-149,-175],[-503,-76],[-1011,132],[-588,174],[-450,89],[-231,207],[290,270],[-394,2],[-88,599],[213,528],[286,241],[717,158],[-204,-382],[219,-369],[256,477],[704,242],[477,-611],[-42,-387],[550,172],[263,235],[616,-299],[383,-282],[36,-258],[515,134],[290,-376],[670,-234],[242,-238],[263,-553],[-510,-275],[654,-386],[441,-130],[400,-543],[437,-39],[-87,-414],[-487,-687],[-342,253],[-437,568],[-359,-74],[-35,-338],[292,-344],[377,-272],[114,-157],[181,-584],[-96,-425],[-350,160],[-697,473],[393,-509],[289,-357],[45,-206]],[[22678,92689],[-268,50],[-192,225],[-690,456],[5,189],[567,-73],[-306,386],[329,286],[331,-124],[496,75],[72,-172],[-259,-283],[420,-254],[-50,-532],[-455,-229]],[[89468,93831],[-569,66],[-49,31],[263,234],[348,54],[394,-226],[34,-155],[-421,-4]],[[23814,93133],[-317,22],[-173,519],[4,294],[145,251],[276,161],[579,-20],[530,-144],[-415,-526],[-331,-115],[-298,-442]],[[15808,92470],[-147,259],[-641,312]],[[15020,93041],[93,193],[218,489]],[[15331,93723],[241,388],[-272,362],[939,93],[397,-123],[709,-33],[270,-171],[298,-249],[-349,-149],[-681,-415],[-344,-414]],[[16539,93012],[0,-248],[-731,-294]],[[91548,94707],[-444,53],[-516,233],[66,192],[518,-89],[697,-155],[-321,-234]],[[23845,94650],[-403,44],[-337,155],[148,266],[399,159],[243,-208],[101,-187],[-151,-229]],[[88598,94662],[-550,384],[149,406],[366,111],[734,-26],[1004,-313],[-219,-439],[-1023,16],[-461,-139]],[[22275,94831],[-298,94],[5,345],[-455,-46],[-18,457],[299,-18],[419,201],[390,-34],[22,77],[212,-273],[9,-303],[-127,-440],[-458,-60]],[[18404,94533],[-35,193],[577,261],[-1255,-70],[-389,106],[379,577],[262,165],[782,-199],[493,-350],[485,-45],[-397,565],[255,215],[286,-68],[94,-282],[109,-210],[247,99],[291,-26],[49,-289],[-169,-281],[-940,-91],[-701,-256],[-423,-14]],[[65817,92311],[-907,77],[-74,262],[-503,158],[-40,320],[284,126],[-10,323],[551,503],[-255,73],[665,518],[-75,268],[621,312],[917,380],[925,110],[475,220],[541,76],[193,-233],[-187,-184],[-984,-293],[-848,-282],[-863,-562],[-414,-577],[-435,-568],[56,-491],[531,-484],[-164,-52]],[[25514,94532],[-449,73],[-738,190],[-96,325],[-34,293],[-279,258],[-574,72],[-322,183],[104,242],[573,-37],[308,-190],[547,1],[240,-194],[-64,-222],[319,-134],[177,-140],[374,-26],[406,-50],[441,128],[566,51],[451,-42],[298,-223],[62,-244],[-174,-157],[-414,-127],[-355,72],[-797,-91],[-570,-11]],[[16250,95423],[-377,128],[472,442],[570,383],[426,-9],[381,87],[-38,-454],[-214,-205],[-259,-29],[-517,-252],[-444,-91]],[[81143,94175],[250,112],[142,-379]],[[81535,93908],[122,153],[444,93],[892,-97],[67,-276],[1162,-88],[15,451]],[[84237,94144],[590,-103],[443,3]],[[85270,94044],[449,-312],[128,-378],[-165,-247],[349,-465],[437,-240],[268,620],[446,-266],[473,159],[538,-182],[204,166],[455,-83],[-201,549],[367,256],[2509,-384],[236,-351],[727,-451],[1122,112],[553,-98],[231,-244],[-33,-432],[342,-168],[372,121],[492,15],[525,-116],[526,66],[484,-526],[344,189],[-224,378]],[[97224,91732],[123,263],[886,-166]],[[98233,91829],[578,36],[799,-282],[389,-258],[0,-2354],[-2,-3],[-357,-260],[-360,44],[250,-315],[166,-487],[128,-159],[32,-244],[-71,-157],[-518,129],[-777,-445],[-247,-69],[-425,-415],[-403,-362],[-102,-269],[-397,409],[-724,-464]],[[96192,85904],[-126,220],[-268,-254]],[[95798,85870],[-371,81],[-90,-388],[-333,-572],[10,-239],[316,-132],[-37,-860],[-258,-22],[-119,-494],[116,-255]],[[95032,82989],[-486,-301],[-96,-675]],[[94450,82013],[-415,-144],[-83,-600],[-400,-551],[-103,407],[-119,862],[-155,1313],[134,819],[234,353]],[[93543,84472],[15,276],[431,132]],[[93989,84880],[496,744],[479,608],[499,471],[223,833],[-337,-50],[-167,-487]],[[95182,86999],[-705,-648],[-227,726]],[[94250,87077],[-717,-201],[-696,-990],[230,-362],[-620,-154],[-430,-61],[20,427],[-431,90],[-344,-291],[-850,102]],[[90412,85637],[-913,-175],[-900,-1153]],[[88599,84309],[-1065,-1394],[438,-74],[136,-370],[270,-132]],[[88378,82339],[178,296],[305,-39]],[[88861,82596],[401,-650]],[[89262,81946],[9,-502],[-217,-591]],[[89054,80853],[-23,-705],[-126,-945],[-418,-855],[-94,-409],[-377,-688],[-374,-682],[-179,-349],[-370,-346],[-175,-8],[-175,287],[-373,-432],[-43,-197]],[[86327,75524],[-106,36]],[[86221,75560],[-120,-201],[-83,-201]],[[86018,75158],[10,-424],[-143,-130],[-50,-105],[-104,-174],[-185,-97],[-121,-159],[-9,-256],[-32,-65],[111,-96],[157,-259]],[[85652,73393],[240,-697],[68,-383],[3,-681],[-105,-325],[-252,-113],[-222,-245],[-250,-51],[-31,322]],[[85103,71220],[52,443],[-123,615]],[[85032,72278],[206,99],[-190,506]],[[85048,72883],[-135,113],[-34,-112]],[[84879,72884],[-81,-49],[-10,112],[-72,54],[-75,94]],[[84641,73095],[77,260],[65,69]],[[84783,73424],[-25,108],[71,319]],[[84829,73851],[-18,97],[-163,64]],[[84648,74012],[-131,158]],[[84517,74170],[-388,-171],[-204,-277],[-300,-161],[148,274],[-58,230],[220,397],[-147,310],[-242,-209],[-314,-411],[-171,-381],[-272,-29],[-142,-275],[147,-400],[227,-97],[9,-265]],[[83030,72705],[220,-172],[311,421]],[[83561,72954],[247,-230],[179,-15]],[[83987,72709],[46,-310],[-394,-165]],[[83639,72234],[-130,-319],[-270,-296],[-142,-414]],[[83097,71205],[299,-324],[109,-582]],[[83505,70299],[169,-541],[189,-454],[-5,-439],[-174,-161],[66,-315],[164,-184],[-43,-481],[-71,-468],[-155,-53],[-203,-640],[-225,-775],[-258,-705],[-382,-545],[-386,-498],[-313,-68],[-170,-262],[-96,192],[-157,-294],[-388,-296],[-294,-90],[-95,-624],[-154,-35],[-73,429],[66,228]],[[80517,63220],[-373,190],[-131,-97]],[[80013,63313],[-371,-505],[-231,-558],[-61,-410],[212,-623],[260,-772],[252,-365],[169,-475],[127,-1093],[-37,-1039],[-232,-389],[-318,-381],[-227,-492],[-346,-550],[-101,378],[78,401],[-206,335]],[[78981,56775],[-233,87],[-112,307],[-141,611]],[[78495,57780],[-249,271],[-238,-11],[41,464],[-245,-3],[-22,-650],[-150,-863],[-90,-522],[19,-428],[181,-18],[113,-539],[50,-512],[155,-338],[168,-69],[144,-306]],[[78372,54256],[64,-56],[164,-356],[116,-396],[16,-398],[-29,-269],[27,-203],[20,-349],[98,-163],[109,-523],[-5,-199],[-197,-40],[-263,438],[-329,469],[-32,301],[-161,395],[-38,489],[-100,322],[30,431],[-61,250]],[[77801,54399],[-110,227],[-47,292],[-148,334],[-135,280],[-45,-347],[-53,328],[30,369],[82,566]],[[77375,56448],[-27,439],[86,452],[-94,350],[23,644],[-113,306],[-90,707],[-50,746],[-121,490],[-183,-297],[-315,-421],[-156,53],[-172,138],[96,732],[-58,554],[-218,681],[34,213],[-163,76],[-197,481]],[[75657,62792],[-79,309],[-16,301],[-53,284]],[[75509,63686],[-116,344],[-256,23],[25,-243],[-87,-329],[-118,120],[-41,-108],[-78,65],[-108,53]],[[74730,63611],[-39,-216],[-189,7],[-343,-122],[16,-445],[-148,-349],[-400,-398],[-311,-695],[-209,-373]],[[73107,61020],[-276,-386],[-1,-272]],[[72830,60362],[-138,-146]],[[72692,60216],[-250,-212],[-130,-31]],[[72312,59973],[-84,-450],[58,-769],[15,-490],[-118,-561],[-1,-1004],[-144,-29],[-126,-450],[84,-195]],[[71996,56025],[-253,-167],[-93,-402]],[[71650,55456],[-112,-170],[-263,552],[-128,827],[-107,596],[-97,279],[-148,568],[-69,739],[-48,369],[-253,811],[-115,1145],[-83,756],[1,716],[-54,553],[-404,-353],[-196,70],[-362,716],[133,214],[-82,232],[-326,501]],[[68937,64577],[-203,150]],[[68734,64727],[-83,425],[-215,449]],[[68436,65601],[-512,-111],[-451,-11],[-391,-83]],[[67082,65396],[-523,179]],[[66559,65575],[-302,136],[-314,76]],[[65943,65787],[-118,725],[-133,105],[-214,-106],[-280,-286],[-339,196],[-281,454],[-267,168],[-186,561],[-205,788],[-149,-96],[-177,196]],[[63594,68492],[-103,-231],[-165,29]],[[63326,68290],[58,-261],[-25,-135],[89,-445]],[[63448,67449],[109,-510],[137,-135],[47,-207]],[[63741,66597],[190,-248],[16,-244]],[[63947,66105],[-27,-197],[35,-199],[80,-165],[37,-194],[41,-145]],[[64113,65205],[-18,430],[75,310],[76,64]],[[64246,66009],[84,-186],[5,-345]],[[64335,65478],[-61,-348]],[[64274,65130],[53,-226]],[[64327,64904],[49,29],[11,-162],[217,93],[230,-15],[168,-18],[190,400],[207,379],[176,364]],[[65575,65974],[80,201],[35,-51],[-26,-244],[-37,-108]],[[65627,65772],[38,-466]],[[65665,65306],[125,-404],[155,-214]],[[65945,64688],[204,-78],[164,-107]],[[66313,64503],[125,-339],[75,-196],[100,-75],[-1,-132],[-101,-352],[-44,-166],[-117,-189],[-104,-404],[-126,31],[-58,-141],[-44,-300],[34,-395],[-26,-72],[-128,2],[-174,-221],[-27,-288],[-63,-125],[-173,5],[-109,-149]],[[65352,60997],[1,-239],[-134,-164]],[[65219,60594],[-153,56],[-186,-199]],[[64880,60451],[-128,-33],[-201,-159]],[[64551,60259],[-54,-263],[-6,-201],[-277,-249],[-444,-276],[-249,-417]],[[63521,58853],[-122,-32],[-83,34]],[[63316,58855],[-163,-245]],[[63153,58610],[-177,-113],[-233,-31]],[[62743,58466],[-70,-34],[-61,-156],[-73,-43]],[[62539,58233],[-42,-150],[-138,13]],[[62359,58096],[-89,-80],[-192,30],[-72,345],[8,323],[-46,174],[-54,437],[-80,243],[56,29],[-29,270],[34,114],[-12,257]],[[61883,60238],[-36,253],[-84,177]],[[61763,60668],[-22,236],[-143,212],[-148,495],[-79,482],[-192,406],[-124,97],[-184,563],[-32,411],[12,350],[-159,655],[-130,231],[-150,122],[-92,339],[15,133]],[[60335,65400],[-77,307],[-81,131]],[[60177,65838],[-108,440],[-170,476],[-141,406],[-139,-3],[44,325],[12,206],[34,236]],[[59709,67924],[-9,86]],[[59700,68010],[-78,-238],[-60,-446],[-75,-308],[-65,-103],[-93,191],[-125,263],[-198,847],[-29,-53],[115,-624],[171,-594],[210,-920],[102,-321],[90,-334],[249,-654],[-55,-103],[9,-384],[323,-530],[49,-121]],[[60240,63578],[90,-580],[-61,-107],[40,-608],[102,-706],[106,-145],[152,-219]],[[60669,61213],[161,-683],[77,-543]],[[60907,59987],[152,-288],[379,-558],[154,-336],[151,-341],[87,-203],[136,-178]],[[61966,58083],[66,-183],[-9,-245],[-158,-142],[119,-161]],[[61984,57352],[91,-109]],[[62075,57243],[54,-244],[125,-248]],[[62254,56751],[138,-2],[262,151],[302,70],[245,184],[138,39],[99,108],[158,20]],[[63596,57321],[89,12],[128,88],[147,59],[132,202],[105,2],[6,-163],[-25,-344],[1,-310],[-59,-214],[-78,-639],[-134,-659],[-172,-755],[-238,-866],[-237,-661],[-327,-806],[-278,-479],[-415,-586],[-259,-450],[-304,-715],[-64,-312],[-63,-140]],[[61551,49585],[-195,-236],[-68,-246],[-104,-44],[-40,-416],[-89,-238],[-54,-393],[-112,-195]],[[60889,47817],[-128,-728],[16,-335],[178,-216],[8,-153],[-76,-357],[16,-180],[-18,-282],[97,-370],[115,-583],[101,-129]],[[61198,44484],[45,-265],[-11,-588],[34,-519],[11,-923],[49,-290],[-83,-422],[-108,-410],[-177,-366],[-254,-225],[-313,-287],[-313,-634],[-107,-108],[-194,-420],[-115,-136],[-23,-421],[132,-448],[54,-346],[4,-177],[49,29],[-8,-579]],[[59870,36949],[-45,-274],[65,-102]],[[59890,36573],[-41,-246],[-116,-210]],[[59733,36117],[-229,-199],[-334,-320],[-122,-219],[24,-248],[71,-40],[-24,-311]],[[59119,34780],[-70,-430],[-32,-491],[-72,-267],[-190,-298],[-54,-86],[-118,-300],[-77,-303],[-158,-424],[-314,-609],[-196,-355]],[[57838,31217],[-209,-269],[-291,-229]],[[57338,30719],[-141,-31],[-36,-164],[-169,88],[-138,-113],[-301,114],[-168,-72],[-115,31],[-286,-233],[-238,-94],[-171,-223],[-127,-14],[-117,210],[-94,11],[-120,264],[-13,-82],[-37,159],[2,346],[-90,396],[89,108],[-7,453],[-182,553],[-139,501],[-1,1],[-199,768]],[[54540,33696],[-207,446],[-108,432],[-62,575],[-68,428],[-93,910],[-7,707],[-35,322],[-108,243],[-144,489],[-146,708],[-60,371],[-226,577],[-17,453]],[[53259,40357],[-26,372],[38,519],[96,541],[15,254],[90,532],[66,243],[159,386],[90,263],[29,438],[-15,335],[-83,211],[-74,358],[-68,355],[15,122],[85,235],[-84,570],[-57,396],[-139,374],[26,115]],[[53422,46976],[-39,183]],[[53383,47159],[-74,444]],[[53309,47603],[-228,626]],[[53081,48229],[-285,596],[-184,488],[-169,610],[9,196],[61,189],[67,430],[56,438]],[[52636,51176],[-52,90],[96,663]],[[52680,51929],[40,467],[-108,390]],[[52612,52786],[-127,100],[-56,265]],[[52429,53151],[-71,85],[3,163]],[[52361,53399],[-289,-213]],[[52072,53186],[-105,32],[-107,-133]],[[51860,53085],[-222,13],[-149,370],[-91,427]],[[51398,53895],[-197,390],[-209,-8]],[[50992,54277],[-245,1]],[[50747,54278],[-229,-69]],[[50518,54209],[-224,-126]],[[50294,54083],[-436,-346],[-154,-203],[-250,-171],[-248,168]],[[49206,53531],[-126,-7],[-194,116],[-178,-7],[-329,-103],[-193,-170],[-275,-217],[-54,15]],[[47857,53158],[-73,-5],[-286,282]],[[47498,53435],[-252,450],[-237,323]],[[47009,54208],[-187,381]],[[46822,54589],[-75,44],[-200,238],[-144,316],[-49,216],[-34,437]],[[46320,55840],[-122,349],[-108,232],[-71,76],[-69,118],[-32,261],[-41,130],[-80,97]],[[45797,57103],[-149,247],[-117,39],[-63,166],[1,90],[-84,125],[-18,127]],[[45367,57897],[-46,453]],[[45321,58350],[36,262]],[[45357,58612],[-115,460],[-138,210],[122,112],[134,415],[66,304]],[[45426,60113],[-24,318],[78,291],[34,557],[-30,583],[-34,294],[28,295],[-72,281],[-146,255]],[[45260,62987],[12,249]],[[45272,63236],[13,274],[106,161],[91,308],[-18,200],[96,417],[155,376],[93,95],[74,344],[6,315],[100,365],[185,216],[177,603],[144,235]],[[46494,67145],[259,66],[219,403],[139,158]],[[47111,67772],[232,493],[-70,735],[106,508],[37,312],[179,399],[278,270],[206,244],[186,612],[87,362],[205,-2],[167,-251],[264,41],[288,-131],[121,-6]],[[49397,71358],[267,323],[300,102],[175,244],[268,180],[471,105],[459,48],[140,-87],[262,232],[297,5],[113,-137],[190,35]],[[52339,72408],[302,239],[195,-71],[-9,-299],[236,217],[20,-113]],[[53083,72381],[-139,-289],[-2,-274]],[[52942,71818],[96,-147],[-36,-511],[-183,-297],[53,-322],[143,-10],[70,-281],[106,-92]],[[53191,70158],[326,-204],[117,51],[232,-98],[368,-264],[130,-526],[250,-114],[391,-248],[296,-293],[136,153],[133,272],[-65,452],[87,288],[200,277],[192,80],[375,-121],[95,-264],[104,-2],[88,-101]],[[56646,69496],[276,-69],[68,-196]],[[56990,69231],[369,10],[268,-156],[275,-175],[129,-92],[214,188],[114,169],[245,49],[198,-75],[75,-293],[65,193],[222,-140],[217,-33],[137,149]],[[59518,69025],[80,194],[-19,34],[74,276],[56,446],[40,149],[8,6]],[[59757,70130],[99,482],[138,416],[5,21]],[[59999,71049],[-26,452],[68,243]],[[60041,71744],[-102,268],[105,222],[-169,-51],[-233,136],[-191,-340],[-421,-66],[-225,317],[-300,20],[-64,-245]],[[58441,72005],[-192,-71],[-268,315]],[[57981,72249],[-303,-10],[-165,587]],[[57513,72826],[-203,328],[135,459],[-176,283],[308,565],[428,23],[117,449],[529,-78],[334,383],[324,167],[459,13]],[[59768,75418],[485,-416],[399,-229]],[[60652,74773],[323,91],[239,-53],[328,309]],[[61542,75120],[42,252],[-70,403],[-160,218],[-154,68],[-102,181]],[[61098,76242],[-354,499],[-317,223],[-240,347],[202,95],[231,494],[-156,234],[410,241],[-8,129],[-249,-95]],[[60617,78409],[-222,-48],[-185,-191],[-260,-31],[-239,-220],[16,-368],[136,-142],[284,35],[-55,-210],[-304,-103],[-377,-342],[-154,121],[61,277],[-304,173],[50,113],[265,197],[-80,135],[-432,149],[-19,221],[-257,-73],[-103,-325],[-215,-437]],[[58223,77340],[6,-152],[-135,-128],[-84,56],[-78,-713]],[[57932,76403],[-144,-245],[-101,-422],[89,-337]],[[57776,75399],[33,-228],[243,-190],[-51,-145],[-330,-33],[-118,-182],[-232,-319]],[[57321,74302],[-87,275],[3,122]],[[57237,74699],[-169,17],[-145,56],[-336,-154],[192,-332],[-141,-96]],[[56638,74190],[-154,0],[-147,304]],[[56337,74494],[-52,-130],[62,-353],[139,-277]],[[56486,73734],[-105,-130],[155,-272]],[[56536,73332],[137,-171],[4,-334],[-257,157],[82,-302],[-176,-62],[105,-521]],[[56431,72099],[-184,-7],[-228,257],[-104,472]],[[55915,72821],[-49,393],[-108,272],[-143,337],[-18,168]],[[55597,73991],[-48,41],[-5,130],[-154,199],[-24,281],[23,403],[38,184]],[[55427,75229],[-46,93],[-59,46]],[[55322,75368],[-78,192],[-120,118]],[[55124,75678],[-261,218],[-161,213],[-254,176]],[[54448,76285],[-233,435],[56,44]],[[54271,76764],[-127,248],[-5,200],[-179,93],[-85,-255],[-82,198],[6,205],[10,9]],[[53809,77462],[62,54]],[[53871,77516],[-221,86],[-226,-210],[15,-293],[-34,-168],[91,-301],[261,-298],[140,-488],[309,-476],[217,3],[68,-130],[-78,-118]],[[54413,75123],[249,-213],[204,-179]],[[54866,74731],[238,-308],[29,-111],[-52,-211],[-154,276],[-242,97],[-116,-382],[200,-219],[-33,-309],[-116,-35],[-148,-506],[-116,-46],[1,181],[57,317],[60,126],[-108,342],[-85,298],[-115,74],[-82,255],[-179,107],[-120,238],[-206,38],[-217,267],[-254,384]],[[53108,75604],[-189,341],[-86,584]],[[52833,76529],[-138,68],[-226,195],[-128,-80],[-161,-274],[-115,-43]],[[52065,76395],[-252,-334],[-548,160],[-404,-192],[-32,-355]],[[50829,75674],[15,-344],[-263,-393],[-356,-125],[-25,-199],[-171,-327],[-107,-481],[108,-338],[-160,-263],[-60,-384],[-210,-118]],[[49600,72702],[-197,-455],[-352,-8]],[[49051,72239],[-265,11],[-174,-209],[-106,-223],[-136,49],[-103,199],[-79,340],[-259,92]],[[47929,72498],[-112,-153],[-146,83],[-143,-65],[42,462],[-26,363],[-124,55],[-67,224],[22,386],[111,215],[20,239],[58,355],[-6,250],[-56,212],[-12,200]],[[47490,75324],[14,420],[-114,257],[393,426]],[[47783,76427],[340,-107],[373,4]],[[48496,76324],[296,-101],[230,31],[449,-19]],[[49471,76235],[144,354],[53,1177],[-287,620],[-205,299]],[[49176,78685],[-424,228],[-28,430]],[[48724,79343],[360,129],[466,-152],[-88,669],[263,-254],[646,461],[84,484],[243,119]],[[50698,80799],[222,117]],[[50920,80916],[143,162]],[[51063,81078],[244,870],[380,247]],[[51687,82195],[231,-17]],[[51918,82178],[54,125],[232,32],[52,-130],[188,291],[-63,222],[-13,335]],[[52368,83053],[-113,328],[-8,604],[46,159]],[[52293,84144],[80,178],[244,36]],[[52617,84358],[98,163],[223,167],[-9,-304],[-82,-192],[33,-166],[151,-89],[-68,-223],[-83,64],[-200,-425],[76,-288]],[[52756,83065],[4,-228],[281,-138],[-3,-210],[283,111],[156,162],[313,-233],[132,-189]],[[53922,82340],[189,174],[434,273],[350,200],[277,-100],[21,-144],[268,-7]],[[55461,82736],[63,260],[383,191]],[[55907,83187],[-59,497]],[[55848,83684],[10,445],[136,371],[262,202],[221,-442],[223,12],[53,453]],[[56753,84725],[32,349],[-102,-75],[-176,210],[-24,340],[351,164],[350,86],[301,-97],[287,17]],[[57772,85719],[316,327],[-291,280]],[[57797,86326],[-504,-47],[-489,-216],[-452,-125]],[[56352,85938],[-161,322],[-269,195],[62,581]],[[55984,87036],[-135,534],[133,344]],[[55982,87914],[252,371],[635,640],[185,124],[-28,250],[-387,279]],[[56639,89578],[-478,-167],[-269,-413],[43,-361],[-441,-475],[-537,-509],[-202,-832],[198,-416],[265,-328],[-255,-666],[-289,-138],[-106,-992],[-157,-554],[-337,57],[-158,-468],[-321,-27],[-89,558],[-232,671],[-211,835]],[[53063,85353],[-187,363],[-548,-684]],[[52328,85032],[-370,-138],[-385,301]],[[51573,85195],[-99,635]],[[51474,85830],[-88,1364],[256,380]],[[51642,87574],[733,496],[549,609],[508,824],[668,1141],[465,444],[763,741],[610,259],[457,-31],[423,489],[506,-26],[499,118],[869,-433],[-358,-158],[305,-371]],[[58639,91676],[286,206],[456,-358],[761,-140],[1050,-668],[213,-281],[18,-393],[-308,-311],[-454,-157],[-1240,449],[-204,-75],[453,-433],[36,-878],[358,-180],[217,-153],[36,286]],[[60317,88590],[-174,263],[183,215]],[[60326,89068],[672,-368]],[[60998,88700],[234,144],[-187,433]],[[61045,89277],[647,578],[256,-34],[260,-206],[161,406],[-231,352],[136,353],[-204,367],[777,-190],[158,-331],[-351,-73]],[[62654,90499],[2,-328],[218,-203]],[[62874,89968],[429,128],[68,377]],[[63371,90473],[581,282],[969,507]],[[64921,91262],[209,-29],[-273,-359],[344,-61],[199,202],[521,16],[412,245],[317,-356],[315,391],[-291,343],[145,195],[820,-179],[385,-185],[1006,-675],[186,309],[-282,313],[-8,125],[-335,58],[92,280],[-149,461],[-8,189],[512,535]],[[69038,93080],[182,537],[207,116]],[[69427,93733],[735,-156],[58,-328]],[[70220,93249],[-263,-479],[173,-189],[89,-413],[-63,-809],[307,-362],[-120,-395],[-544,-839],[318,-87],[110,213],[306,151],[74,293],[240,281],[-162,336],[130,390],[-304,49],[-67,328]],[[70444,91717],[222,594],[-361,481]],[[70305,92792],[497,398],[-64,421],[139,13],[145,-328],[-109,-570],[297,-108],[-127,426],[465,233],[577,31],[513,-337],[-247,492],[-28,630]],[[72363,94093],[484,119],[668,-26]],[[73515,94186],[602,77],[-226,309],[321,388],[319,16],[540,293],[734,79],[93,162],[729,55],[227,-133],[624,314],[510,-10],[77,255],[265,252],[656,242],[476,-191],[-378,-146],[629,-90],[75,-292],[254,143],[812,-7],[626,-289],[223,-221],[-69,-307],[-307,-175],[-730,-328],[-209,-175],[345,-83],[410,-149]],[[63720,73858],[-47,-207],[-102,-138]],[[63571,73513],[7,-293]],[[63578,73220],[88,-436],[263,-123],[193,-296],[395,-102],[434,156],[27,139]],[[64978,72558],[-52,417],[40,618],[-216,200],[71,405],[-184,34],[61,498],[262,-145],[244,189],[-202,355],[-80,338],[-224,-151],[-28,-433],[-87,383]],[[64583,75266],[-15,144],[68,246],[-53,206],[-322,202],[-125,530],[-154,150],[-9,192],[270,-56],[11,432],[236,96],[243,-88],[50,576],[-50,365],[-278,-28],[-236,144],[-321,-260],[-259,-124]],[[63639,77993],[-127,-350],[-269,-97],[-276,-610],[252,-561],[-27,-398],[303,-696]],[[63495,75281],[146,-311],[141,-419],[130,-28],[85,-159],[-228,-47],[-49,-459]],[[23807,96363],[-521,38],[-74,165],[559,-9],[195,-109],[-33,-68],[-126,-17]],[[18874,96315],[-411,191],[224,188],[406,60],[392,-92],[-93,-177],[-518,-170]],[[56247,96336],[-490,137],[191,152],[-167,189],[575,119],[110,-222],[401,-134],[-620,-241]],[[19199,96904],[-461,1],[5,84],[285,177],[149,-27],[361,-120],[-339,-115]],[[22969,96575],[-226,138],[-119,221],[-22,245],[360,-24],[162,-39],[332,-205],[-76,-214],[-411,-122]],[[22313,96609],[-453,66],[-457,192],[-619,21],[268,176],[-335,142],[-21,227],[546,-81],[751,-215],[212,-281],[108,-247]],[[77621,96617],[507,776],[229,66],[208,-38],[704,-336],[-82,-240],[-1566,-228]],[[54420,95937],[-598,361],[252,210],[-416,170],[-541,499],[-216,463],[757,212],[152,-207],[396,8],[105,202],[408,20],[350,-206],[915,-440],[-699,-233],[-155,-435],[-243,-111],[-132,-490],[-335,-23]],[[56395,97491],[-819,98],[-50,163],[-398,11],[-304,271],[858,165],[403,-142],[281,177],[702,-148],[545,-207],[-412,-318],[-806,-70]],[[63218,97851],[-301,140],[158,185],[-618,18],[542,107],[422,8],[57,-160],[159,142],[262,97],[412,-129],[-107,-90],[-373,-78],[-250,-45],[-39,-97],[-324,-98]],[[77154,97111],[-773,170],[-462,226],[-213,423],[-379,117],[722,404],[600,133],[540,-297],[640,-572],[-69,-531],[-606,-73]],[[24776,96791],[-575,76],[-299,240],[4,215],[220,157],[-508,-4],[-306,196],[-176,268],[193,262],[192,180],[285,42],[-122,135],[646,30],[355,-315],[468,-127],[455,-112],[220,-390],[334,-190],[-381,-176],[-513,-445],[-492,-42]],[[27622,95587],[-726,163],[-816,-91],[-414,71],[-525,31],[-35,284],[514,133],[-137,427],[170,41],[742,-255],[-379,379],[-450,113],[225,229],[492,141],[79,206],[-392,231],[-118,304],[759,-26],[220,-64],[433,216],[-625,68],[-972,-38],[-491,201],[-232,239],[-324,173],[-61,202],[413,112],[324,19],[545,96],[409,220],[344,-30],[300,-166],[211,319],[367,95],[498,65],[849,24],[148,-63],[802,100],[601,-38],[602,-37],[742,-47],[597,-75],[508,-161],[-12,-157],[-678,-257],[-672,-119],[-251,-133],[605,3],[-656,-358],[-452,-167],[-476,-483],[-573,-98],[-177,-120],[-841,-64],[383,-74],[-192,-105],[230,-292],[-264,-202],[-429,-167],[-132,-232],[-388,-176],[39,-134],[475,23],[6,-144],[-742,-355]],[[37559,86051],[-410,482],[-556,3],[-269,324],[-186,577],[-481,735],[-141,385],[-38,530],[-384,546],[100,435],[-186,208],[275,691],[418,220],[110,247],[58,461],[-318,-209],[-151,-88],[-249,-84],[-341,193],[-19,401],[109,314],[258,9],[567,-157],[-478,375],[-249,202],[-276,-83],[-232,147],[310,550],[-169,220],[-220,409],[-335,626],[-353,230],[3,247],[-745,346],[-590,43],[-743,-24],[-677,-44],[-323,188],[-482,372],[729,186],[559,31],[-1188,154],[-627,241],[39,229],[1051,285],[1018,284],[107,214],[-750,213],[243,235],[961,413],[404,63],[-115,265],[658,156],[854,93],[853,5],[303,-184],[737,325],[663,-221],[390,-46],[577,-192],[-660,318],[38,253],[932,353],[975,-27],[354,218],[982,57],[2219,-74],[1737,-469],[-513,-227],[-1062,-26],[-1496,-58],[140,-105],[984,65],[836,-204],[540,181],[231,-212],[-305,-344],[707,220],[1348,229],[833,-114],[156,-253],[-1132,-420],[-157,-136],[-888,-102],[643,-28],[-324,-431],[-224,-383],[9,-658],[333,-386],[-434,-24],[-457,-187],[513,-313],[65,-502],[-297,-55],[360,-508],[-617,-42],[322,-241],[-91,-208],[-391,-91],[-388,-2],[348,-400],[4,-263],[-549,244],[-143,-158],[375,-148],[364,-361],[105,-476],[-495,-114],[-214,228],[-344,340],[95,-401],[-322,-311],[732,-25],[383,-32],[-745,-515],[-755,-466],[-813,-204],[-306,-2],[-288,-228],[-386,-624],[-597,-414],[-192,-24],[-370,-145],[-399,-138],[-238,-365],[-4,-415],[-141,-388],[-453,-472],[112,-462],[-125,-488],[-142,-577],[-391,-36]],[[67002,71642],[284,-224],[209,79],[58,268],[219,89],[157,180],[55,472],[234,114],[44,211],[131,-158],[84,-19]],[[68477,72654],[154,-4],[210,-124]],[[68841,72526],[85,-72],[201,189],[93,-114],[90,271],[166,-12],[43,86],[29,239],[120,205],[150,-134],[-30,-181],[84,-28],[-26,-496],[110,-194],[97,125],[123,58],[173,265],[192,-44],[286,-1]],[[70827,72688],[50,-169]],[[70877,72519],[-162,-67],[-141,-109],[-319,-68],[-298,-124],[-163,-258],[66,-250],[32,-294],[-139,-248],[12,-227],[-76,-213],[-265,18],[110,-390],[-177,-150],[-118,-356],[15,-355],[-108,-166],[-103,55],[-212,-77],[-31,-166],[-207,1],[-154,-334],[-10,-503],[-361,-246],[-194,52],[-56,-129],[-166,75],[-278,-88],[-465,301]],[[66909,68203],[252,536],[-23,380],[-210,100],[-22,375],[-91,472],[119,323],[-121,87],[76,430],[113,736]],[[56642,44124],[29,-184],[-32,-286],[49,-277],[-41,-222],[24,-203],[-579,7],[-13,-1880],[188,-483],[181,-369]],[[56448,40227],[-510,-241],[-673,83],[-192,284],[-1126,-26],[-42,-41],[-166,267],[-180,17],[-166,-100],[-134,-113]],[[53422,46976],[115,79],[80,-11],[98,71],[820,-8],[68,-440],[80,-354],[64,-191],[106,-309],[184,47],[91,83],[154,-83],[42,148],[69,344],[172,23],[15,103],[142,2],[-24,-213],[337,5],[5,-372],[56,-228],[-41,-356],[21,-363],[93,-219],[-15,-703],[68,54],[121,-15],[172,89],[127,-35]],[[53309,47603],[112,255],[84,100],[104,-203]],[[53609,47755],[-101,-124],[-45,-152],[-9,-258],[-71,-62]],[[55719,75309],[-35,-201],[39,-254],[115,-144]],[[55838,74710],[-5,-155],[-91,-85],[-16,-192],[-129,-287]],[[55427,75229],[-47,93]],[[55380,75322],[-18,188],[120,291],[18,-111],[75,52]],[[55575,75742],[59,-159],[66,-60],[19,-214]],[[65575,65974],[52,-202]],[[65665,65306],[-142,-3],[-23,-384],[50,-82],[-126,-117],[-1,-241],[-81,-245],[-7,-238]],[[65335,63996],[-56,-125],[-835,298],[-106,599],[-11,136]],[[31400,18145],[-168,16],[-297,1],[0,1319]],[[32587,37434],[511,-964],[227,-89],[339,-437],[286,-231],[40,-261],[-273,-898],[280,-160],[312,-91],[220,95],[252,453],[45,521]],[[34826,35372],[138,114],[139,-341],[-6,-472],[-234,-326],[-186,-241],[-314,-573],[-370,-806]],[[33993,32727],[-70,-473],[-74,-607],[3,-588],[-61,-132],[-21,-382]],[[31227,23224],[273,-433],[266,-119]],[[30952,19680],[-257,93],[-672,79],[-115,344],[6,443],[-185,-38],[-98,214],[-24,626],[213,260],[88,375],[-33,299],[148,504],[101,782],[-30,347],[122,112],[-30,223],[-129,118],[92,248],[-126,224],[-65,682],[112,120],[-47,720],[65,605],[75,527],[166,215],[-84,576],[-1,543],[210,386],[-7,494],[159,576],[1,544],[-72,108],[-128,1020],[171,607],[-27,572],[100,537],[182,555],[196,367],[-83,232],[58,190],[-9,985],[302,291],[96,614],[-34,148]],[[31359,37147],[231,534],[364,-144],[163,-427],[109,475],[316,-24],[45,-127]],[[62492,74950],[57,-155],[106,-103],[-56,-148],[148,-202],[-78,-189],[118,-160],[124,-97],[7,-410]],[[62918,73486],[-101,-17]],[[62817,73469],[-113,342],[1,91],[-123,-2],[-82,159],[-58,-16]],[[62442,74043],[-109,172],[-207,147],[27,288],[-47,208]],[[62106,74858],[386,92]],[[1088,892],[38,-7],[32,-4]],[[1158,881],[402,-246],[352,246],[63,34],[816,104],[265,-138],[130,-71],[419,-196],[789,-151],[625,-185],[1072,-139],[800,162],[1181,-116],[669,-185],[734,174],[773,162],[60,278],[-1094,23],[-898,139],[-234,231],[-745,128],[49,266],[103,243],[104,220],[-55,243],[-462,162],[-212,209],[-430,185],[675,-35],[642,93],[402,-197],[495,173],[457,220],[223,197],[-98,243],[-359,162],[-408,174],[-571,35],[-500,81],[-539,58],[-180,220],[-359,185],[-217,208],[-87,672],[136,-58],[250,-185],[457,58],[441,81],[228,-255],[441,58],[370,127],[348,162],[315,197],[419,58],[-11,220],[-97,220],[81,208],[359,104],[163,-196],[425,115],[321,151],[397,12],[375,57],[376,139],[299,128],[337,127],[218,-35],[190,-46],[414,81],[370,-104],[381,11],[364,81],[375,-57],[414,-58],[386,23],[403,-12],[413,-11],[381,23],[283,174],[337,92],[349,-127],[331,104],[300,208],[179,-185],[98,-208],[180,-197],[288,174],[332,-220],[375,-70],[321,-162],[392,35],[354,104],[418,-23],[376,-81],[381,-104],[147,254],[-180,197],[-136,209],[-359,46],[-158,220],[-60,220],[-98,440],[213,-81],[364,-35],[359,35],[327,-93],[283,-174],[119,-208],[376,-35],[359,81],[381,116],[342,70],[283,-139],[370,46],[239,451],[224,-266],[321,-104],[348,58],[228,-232],[365,-23],[337,-69],[332,-128],[218,220],[108,209],[278,-232],[381,58],[283,-127],[190,-197],[370,58],[288,127],[283,151],[337,81],[392,69],[354,81],[272,127],[163,186],[65,254],[-32,244],[-87,231],[-98,232],[-87,231],[-71,209],[-16,231],[27,232],[130,220],[109,243],[44,231],[-55,255],[-32,232],[136,266],[152,173],[180,220],[190,186],[223,173],[109,255],[152,162],[174,151],[267,34],[174,186],[196,115],[228,70],[202,150],[157,186],[218,69],[163,-151],[-103,-196],[-283,-174],[-120,-127],[-206,92],[-229,-58],[-190,-139],[-202,-150],[-136,-174],[-38,-231],[17,-220],[130,-197],[-190,-139],[-261,-46],[-153,-197],[-163,-185],[-174,-255],[-44,-220],[98,-243],[147,-185],[229,-139],[212,-185],[114,-232],[60,-220],[82,-232],[130,-196],[82,-220],[38,-544],[81,-220],[22,-232],[87,-231],[-38,-313],[-152,-243],[-163,-197],[-370,-81],[-125,-208],[-169,-197],[-419,-220],[-370,-93],[-348,-127],[-376,-128],[-223,-243],[-446,-23],[-489,23],[-441,-46],[-468,0],[87,-232],[424,-104],[311,-162],[174,-208],[-310,-185],[-479,58],[-397,-151],[-17,-243],[-11,-232],[327,-196],[60,-220],[353,-220],[588,-93],[500,-162],[398,-185],[506,-186],[690,-92],[681,-162],[473,-174],[517,-197],[272,-278],[136,-220],[337,209],[457,173],[484,186],[577,150],[495,162],[691,12],[680,-81],[560,-139],[180,255],[386,173],[702,12],[550,127],[522,128],[577,81],[614,104],[430,150],[-196,209],[-119,208],[0,220],[-539,-23],[-571,-93],[-544,0],[-77,220],[39,440],[125,128],[397,138],[468,139],[337,174],[337,174],[251,231],[380,104],[376,81],[190,47],[430,23],[408,81],[343,116],[337,139],[305,139],[386,185],[245,197],[261,173],[82,232],[-294,139],[98,243],[185,185],[288,116],[305,139],[283,185],[217,232],[136,277],[202,163],[331,-35],[136,-197],[332,-23],[11,220],[142,231],[299,-58],[71,-220],[331,-34],[360,104],[348,69],[315,-34],[120,-243],[305,196],[283,105],[315,81],[310,81],[283,139],[310,92],[240,128],[168,208],[207,-151],[288,81],[202,-277],[157,-209],[316,116],[125,232],[283,162],[365,-35],[108,-220],[229,220],[299,69],[326,23],[294,-11],[310,-70],[300,-34],[130,-197],[180,-174],[304,104],[327,24],[315,0],[310,11],[278,81],[294,70],[245,162],[261,104],[283,58],[212,162],[152,324],[158,197],[288,-93],[109,-208],[239,-139],[289,46],[196,-208],[206,-151],[283,139],[98,255],[250,104],[289,197],[272,81],[326,116],[218,127],[228,139],[218,127],[261,-69],[250,208],[180,162],[261,-11],[229,139],[54,208],[234,162],[228,116],[278,93],[256,46],[244,-35],[262,-58],[223,-162],[27,-254],[245,-197],[168,-162],[332,-70],[185,-162],[229,-162],[266,-35],[223,116],[240,243],[261,-127],[272,-70],[261,-69],[272,-46],[277,0],[229,-614],[-11,-150],[-33,-267],[-266,-150],[-218,-220],[38,-232],[310,12],[-38,-232],[-141,-220],[-131,-243],[212,-185],[321,-58],[321,104],[153,232],[92,220],[153,185],[174,174],[70,208],[147,289],[174,58],[316,24],[277,69],[283,93],[136,231],[82,220],[190,220],[272,151],[234,115],[153,197],[157,104],[202,93],[277,-58],[250,58],[272,69],[305,-34],[201,162],[142,393],[103,-162],[131,-278],[234,-115],[266,-47],[267,70],[283,-46],[261,-12],[174,58],[234,-35],[212,-127],[250,81],[300,0],[255,81],[289,-81],[185,197],[141,196],[191,163],[348,439],[179,-81],[212,-162],[185,-208],[354,-359],[272,-12],[256,0],[299,70],[299,81],[229,162],[190,174],[310,23],[207,127],[218,-116],[141,-185],[196,-185],[305,23],[190,-150],[332,-151],[348,-58],[288,47],[218,185],[185,185],[250,46],[251,-81],[288,-58],[261,93],[250,0],[245,-58],[256,-58],[250,104],[299,93],[283,23],[316,0],[255,58],[251,46],[76,290],[11,243],[174,-162],[49,-266],[92,-244],[115,-196],[234,-105],[315,35],[365,12],[250,35],[364,0],[262,11],[364,-23],[310,-46],[196,-186],[-54,-220],[179,-173],[299,-139],[310,-151],[360,-104],[375,-92],[283,-93],[315,-12],[180,197],[245,-162],[212,-185],[245,-139],[337,-58],[321,-69],[136,-232],[316,-139],[212,-208],[310,-93],[321,12],[299,-35],[332,12],[332,-47],[310,-81],[288,-139],[289,-116],[195,-173],[-32,-232],[-147,-208],[-125,-266],[-98,-209],[-131,-243],[-364,-93],[-163,-208],[-360,-127],[-125,-232],[-190,-220],[-201,-185],[-115,-243],[-70,-220],[-28,-266],[6,-220],[158,-232],[60,-220],[130,-208],[517,-81],[109,-255],[-501,-93],[-424,-127],[-528,-23],[-234,-336],[-49,-278],[-119,-220],[-147,-220],[370,-196],[141,-244],[239,-219],[338,-197],[386,-186],[419,-185],[636,-185],[142,-289],[800,-128],[53,-45],[208,-175],[767,151],[636,-186],[-99504,-147],[245,344],[501,-185],[32,21],[294,188]],[[54716,79012],[-21,-241],[-156,-2],[53,-128],[-92,-380]],[[54500,78261],[-53,-100],[-243,-14],[-140,-134],[-229,45]],[[53835,78058],[-398,153],[-62,205],[-274,-102],[-32,-113],[-169,84]],[[52900,78285],[-142,16],[-125,108],[42,145],[-10,104]],[[52665,78658],[83,33],[141,-164],[39,156],[245,-25],[199,106],[133,-18],[87,-121],[26,100],[-40,385],[100,75],[98,272]],[[53776,79457],[206,-190],[157,242],[98,44],[215,-180],[131,30],[128,-111]],[[54711,79292],[-23,-75],[28,-205]],[[62817,73469],[-190,78],[-141,273],[-44,223]],[[63720,73858],[-48,-207],[-101,-138]],[[63578,73220],[-69,-29],[-173,309],[95,292],[-82,174],[-104,-44],[-327,-436]],[[62492,74950],[68,96],[207,-169],[149,-36],[38,70],[-136,319],[72,82]],[[62890,75312],[78,-20],[191,-359],[122,-40],[48,150],[166,238]],[[58149,47921],[-17,713],[-70,268]],[[58062,48902],[169,-46],[85,336],[147,-38]],[[58463,49154],[16,-233],[60,-134],[3,-192],[-69,-124],[-108,-308],[-101,-214],[-115,-28]],[[50920,80916],[204,-47],[257,123],[176,-258],[153,-138]],[[51710,80596],[-32,-400]],[[51678,80196],[-72,-22],[-30,-331]],[[51576,79843],[-243,269],[-143,-46],[-194,279],[-129,237],[-129,10],[-40,207]],[[50518,54209],[-69,407],[13,1357],[-56,122],[-11,290],[-96,207],[-85,174],[35,311]],[[50249,57077],[96,67],[56,258],[136,56],[61,176]],[[50598,57634],[93,173],[100,2],[212,-340]],[[51003,57469],[-11,-197],[62,-350],[-54,-238],[29,-159],[-135,-366],[-86,-181],[-52,-372],[7,-376],[-16,-952]],[[49214,56277],[-190,152],[-130,-22],[-97,-149],[-125,125],[-49,195],[-125,129]],[[48498,56707],[-18,343],[76,250],[-7,200],[221,490],[41,405],[76,144],[134,-79],[116,120],[38,152],[216,265],[53,184],[259,246],[153,84],[70,-114],[178,3]],[[50104,59400],[-22,-286],[37,-269],[156,-386],[9,-286],[320,-134],[-6,-405]],[[50249,57077],[-243,13]],[[50006,57090],[-128,47],[-90,-96],[-123,43],[-482,-27],[-7,-336],[38,-444]],[[75742,63602],[-6,-424],[-97,90],[18,-476]],[[75657,62792],[-79,308],[-16,301],[-53,285]],[[74730,63611],[-43,486],[-96,444],[47,356],[-171,159],[62,215],[173,220],[-200,313],[98,401],[220,-255],[133,-30],[24,-410],[265,-81],[257,8],[160,-101],[-128,-500],[-124,-34],[-86,-336],[152,-306],[46,377],[76,2],[147,-937]],[[56293,76715],[80,-243],[108,43],[213,-92],[408,-31],[138,150],[327,138],[202,-215],[163,-62]],[[57776,75399],[-239,79],[-283,-186]],[[57254,75292],[-3,-294],[-252,-56],[-196,206],[-222,-162],[-206,17]],[[56375,75003],[-20,391],[-139,189]],[[56216,75583],[46,84],[-30,70],[47,188],[105,185],[-135,255],[-24,216],[68,134]],[[55279,77084],[100,2],[-69,-260],[134,-227],[-41,-278],[-65,-27]],[[55338,76294],[-52,-53],[-90,-138],[-41,-325]],[[55155,75778],[-246,224],[-105,247],[-106,130],[-127,221],[-61,183],[-136,277],[59,245],[99,-136],[60,123],[130,13],[239,-98],[192,8],[126,-131]],[[56523,82432],[268,-4],[302,223],[64,333],[228,190],[-26,264]],[[57359,83438],[169,100],[298,228]],[[57826,83766],[293,-149],[39,-146],[146,70],[272,-141],[27,-277],[-60,-159],[174,-387],[113,-108],[-16,-107],[187,-104],[80,-157],[-108,-129],[-224,20],[-54,-55],[66,-196],[68,-379]],[[58829,81362],[-239,-35],[-85,-129],[-18,-298],[-111,57],[-250,-28],[-73,138],[-104,-103],[-105,86],[-218,12],[-310,141],[-281,47],[-215,-14],[-152,-160],[-133,-23]],[[56535,81053],[-6,263],[-85,274],[166,121],[2,235],[-77,225],[-12,261]],[[25238,61101],[-2,87],[33,27],[51,-70],[99,357],[53,8]],[[25297,59966],[-83,0],[22,667],[2,468]],[[31359,37147],[-200,-81],[-109,814],[-150,663],[88,572],[-146,250],[-37,426],[-136,402]],[[30669,40193],[175,638],[-119,496],[63,199],[-49,219],[108,295],[6,503],[13,415],[60,200],[-240,951]],[[30686,44109],[206,-50],[143,13],[62,179],[243,239],[147,222],[363,100],[-29,-443],[34,-227],[-23,-396],[302,-529],[311,-98],[109,-220],[188,-117],[115,-172],[175,6],[161,-175],[12,-342],[55,-172],[3,-255],[-81,-10],[107,-688],[533,-24],[-41,-342],[30,-233],[151,-166],[66,-367],[-49,-465],[-77,-259],[27,-337],[-87,-122]],[[33842,38659],[-4,182],[-259,302],[-258,9],[-484,-172],[-133,-520],[-7,-318],[-110,-708]],[[34826,35372],[54,341],[38,350],[0,325],[-100,107],[-104,-96],[-103,26],[-33,228],[-26,541],[-52,177],[-187,160],[-114,-116],[-293,113],[18,802],[-82,329]],[[30686,44109],[-157,-102],[-126,68],[18,898],[-228,-348],[-245,15],[-105,315],[-184,34],[59,254],[-155,359],[-115,532],[73,108],[0,250],[168,171],[-28,319],[71,206],[20,275],[318,402],[227,114],[37,89],[251,-28]],[[30585,48040],[125,1620],[6,256],[-43,339],[-123,215],[1,430],[156,97],[56,-61],[9,226],[-162,61],[-4,370],[541,-13],[92,203],[77,-187],[55,-349],[52,73]],[[31423,51320],[153,-312],[216,38],[54,181],[206,138],[115,97],[32,250],[198,168],[-15,124],[-235,51],[-39,372],[12,396],[-125,153],[52,55],[206,-76],[221,-148],[80,140],[200,92],[310,221],[102,225],[-37,167]],[[33129,53652],[145,26],[64,-136],[-36,-259],[96,-90],[63,-274],[-77,-209],[-44,-502],[71,-299],[20,-274],[171,-277],[137,-29],[30,116],[88,25],[126,104],[90,157],[154,-50],[67,21]],[[34294,51702],[151,-48],[25,120],[-46,118],[28,171],[112,-53],[131,61],[159,-125]],[[34854,51946],[121,-122],[86,160],[62,-25],[38,-166],[133,42],[107,224],[85,436],[164,540]],[[35174,30629],[-77,334],[122,280],[-160,402],[-218,327],[-286,379],[-103,-18],[-279,457],[-180,-63]],[[82069,53798],[-13,-291],[-16,-377],[-133,19],[-58,-202],[-126,307]],[[75471,66988],[113,-189],[-20,-363],[-227,-17],[-234,39],[-175,-92],[-252,224],[-6,119]],[[74670,66709],[184,439],[150,150],[198,-137],[147,-14],[122,-159]],[[58175,37528],[-393,-435],[-249,-442],[-93,-393],[-83,-222],[-152,-47],[-48,-283],[-28,-184],[-178,-138],[-226,29],[-133,166],[-117,71],[-135,-137],[-68,-283],[-132,-177],[-139,-264],[-199,-60],[-62,207],[26,360],[-165,562],[-75,88]],[[55526,35946],[0,1725],[274,20],[8,2105],[207,19],[428,207],[106,-243],[177,231],[85,2],[156,133]],[[56967,40145],[50,-44]],[[57017,40101],[107,-473],[56,-105],[87,-342],[315,-649],[119,-64],[0,-208],[82,-375],[215,-90],[177,-267]],[[54244,54965],[229,44],[52,152],[46,-11],[69,-134],[350,226],[118,230],[145,207],[-28,208],[78,54],[269,-36],[261,273],[201,645],[141,239],[176,101]],[[56351,57163],[31,-253],[160,-369],[1,-241],[-45,-246],[18,-184],[96,-170]],[[56612,55700],[212,-258]],[[56824,55442],[152,-239],[2,-192],[187,-308],[116,-255],[70,-355],[208,-234],[44,-187]],[[57603,53672],[-91,-63],[-178,14],[-209,62],[-104,-51],[-41,-143],[-90,-18],[-110,125],[-309,-295],[-127,60],[-38,-46],[-83,-357],[-207,115],[-203,59],[-177,218],[-229,200],[-149,-190],[-108,-300],[-25,-412]],[[55125,52650],[-178,33],[-188,99],[-166,-313],[-146,-550]],[[54447,51919],[-29,172],[-12,269],[-127,190],[-103,305],[-23,212],[-132,309],[23,176],[-28,249],[21,458],[67,107],[140,599]],[[26228,91219],[16,649],[394,-46]],[[25824,89109],[-81,-259],[-322,-399]],[[23714,86094],[-16,-686],[409,-99]],[[25743,83665],[348,-163],[294,-248]],[[28738,83981],[-23,395],[-188,502]],[[31513,79609],[415,58],[246,-289]],[[31350,77248],[-181,334],[0,805],[-123,171],[-187,-100],[-92,155],[-212,-446],[-84,-460],[-99,-269],[-118,-91],[-89,-30],[-28,-146],[-512,0],[-422,-4],[-125,-109],[-294,-425],[-34,-46],[-89,-231],[-255,1],[-273,-3],[-125,-93],[44,-116],[25,-181],[-5,-60],[-363,-293],[-286,-93],[-323,-316],[-70,0],[-94,93],[-31,85],[6,61],[61,207],[131,325],[81,349],[-56,514],[-59,536],[-290,277],[35,105],[-41,73],[-76,0],[-56,93],[-14,140],[-54,-61],[-75,18],[17,59],[-65,58],[-27,155],[-216,189],[-224,197],[-272,229],[-261,214],[-248,-167],[-91,-6],[-342,154],[-225,-77],[-269,183],[-284,94],[-194,36],[-86,100],[-49,325],[-94,-3],[-1,-227],[-575,0],[-951,0],[-944,0],[-833,0],[-834,0],[-819,0],[-847,0],[-273,0],[-825,0],[-788,0]],[[15104,80367],[-503,244],[-155,523],[40,363]],[[13740,82958],[154,285],[-7,373],[-473,376],[-284,674],[-173,424],[-255,266],[-187,242],[-147,306],[-279,-192],[-270,-330],[-247,388],[-194,259],[-271,164],[-273,17],[1,3364],[2,2193]],[[11355,91625],[438,-285],[289,-54]],[[15437,92031],[38,-449],[341,97]],[[17987,91291],[374,-300],[-390,-293]],[[19722,91216],[-704,-88],[-494,-56]],[[15020,93041],[119,250],[192,432]],[[16539,93012],[0,-257],[-731,-285]],[[52900,78285],[-22,-242],[-122,-100],[-206,75],[-60,-239],[-132,-19],[-48,94],[-156,-200],[-134,-28],[-120,126]],[[51900,77752],[-95,259],[-133,-92],[5,267],[203,332],[-9,150],[126,-54],[77,101]],[[52074,78715],[236,-4],[57,128],[298,-181]],[[31400,18145],[-92,-239],[-238,-183]],[[31070,17723],[-137,19],[-164,48]],[[30769,17790],[-202,177],[-291,86],[-350,330],[-283,317],[-383,662],[229,-124],[390,-395],[369,-212],[143,271],[90,405],[256,244],[198,-70]],[[29661,27385],[-80,576],[-22,666]],[[30452,39739],[143,151],[74,303]],[[86288,75628],[-179,348],[-111,-331],[-429,-254],[44,-312],[-241,22],[-131,185],[-191,-419],[-306,-318],[-227,-379]],[[83030,72705],[220,-173],[311,422]],[[83987,72709],[45,-310],[-393,-165]],[[83097,71205],[299,-325],[109,-581]],[[80517,63220],[-373,189],[-131,-96]],[[80013,63313],[-280,154],[-132,240],[44,340],[-254,108],[-134,222],[-236,-315],[-271,-68],[-221,3],[-149,-145]],[[78380,63852],[-144,-86],[42,-676],[-148,16],[-25,139]],[[78105,63245],[-9,244],[-203,-172],[-121,109],[-206,222],[81,490],[-176,115],[-66,544],[-293,-98],[33,701],[263,493],[11,487],[-8,452],[-121,141],[-93,348],[-162,-44]],[[77035,67277],[-300,89],[94,248],[-130,367],[-198,-249],[-233,145],[-321,-376],[-252,-439],[-224,-74]],[[74670,66709],[-23,465],[-170,-124]],[[74477,67050],[-324,57],[-314,136],[-225,259],[-216,117],[-93,284],[-157,84],[-280,385],[-223,182],[-115,-141]],[[72530,68413],[-386,413],[-273,374],[-78,651],[200,-79],[9,301],[-111,303],[28,482],[-298,692]],[[71621,71550],[-457,239],[-82,454],[-205,276]],[[70827,72688],[-42,337],[10,230],[-169,134],[-91,-59],[-70,546]],[[70465,73876],[79,136],[-39,138],[266,279],[192,116],[294,-80],[105,378],[356,70],[99,234],[438,320],[39,134]],[[72294,75601],[-22,337],[190,154],[-250,1026],[550,236],[143,131],[200,1058],[551,-194],[155,267],[13,592],[230,56],[212,393]],[[74266,79657],[109,49]],[[74375,79706],[73,-413],[233,-313],[396,-222],[192,-476],[-107,-690],[100,-256],[330,-101],[374,-83],[336,-368],[171,-66],[127,-544],[163,-351],[306,14],[574,-133],[369,82],[274,-88],[411,-359],[336,1],[123,-184],[324,318],[448,205],[417,22],[324,208],[200,316],[194,199],[-45,195],[-89,227],[146,381],[156,-53],[286,-120],[277,313],[423,229],[204,391],[195,168],[404,78],[219,-66],[30,210],[-251,413],[-223,189],[-214,-219],[-274,92],[-157,-74],[-72,241],[197,590],[135,446]],[[82410,80055],[333,-223],[392,373],[-3,260],[251,627],[155,189],[-4,326],[-152,141],[229,294],[345,106],[369,16],[415,-176],[244,-217],[172,-596],[104,-254],[97,-363],[103,-579],[483,-189],[329,-420],[112,-555],[423,-1],[240,233],[459,175],[-146,-532],[-107,-216],[-96,-647],[-186,-575],[-338,104],[-238,-208],[73,-506],[-40,-698],[-142,-16],[2,-300]],[[47857,53158],[22,487],[26,74],[-8,233],[-118,247],[-88,40],[-81,162],[60,262],[-28,286],[13,172]],[[47655,55121],[44,0],[17,258],[-22,114],[27,82],[103,71],[-69,473],[-64,245],[23,200],[55,46]],[[47769,56610],[36,54],[77,-89],[215,-5],[51,172],[48,-11],[80,67],[43,-253],[65,74],[114,88]],[[49214,56277],[74,-841],[-117,-496],[-73,-667],[121,-509],[-13,-233]],[[53632,51919],[-35,32],[-164,-76],[-169,79],[-132,-38]],[[53132,51916],[-452,13]],[[52680,51929],[40,466],[-108,391]],[[52429,53151],[-72,85],[4,163]],[[52361,53399],[71,418],[132,570],[81,6],[165,345],[105,10],[156,-243],[191,199],[26,246],[63,238],[43,299],[148,243],[56,414],[59,132],[39,307],[74,377],[234,457],[14,196],[31,107],[-110,235]],[[53939,57955],[9,188],[78,34]],[[54026,58177],[111,-378],[18,-392],[-10,-393],[151,-537],[-155,6],[-78,-42],[-127,60],[-60,-279],[164,-345],[121,-100],[39,-245],[87,-407],[-43,-160]],[[54447,51919],[-20,-319],[-220,140],[-225,156],[-350,23]],[[58564,52653],[-16,-691],[111,-80],[-89,-210],[-107,-157],[-106,-308],[-59,-274],[-15,-475],[-65,-225],[-2,-446]],[[58216,49787],[-80,-165],[-10,-351],[-38,-46],[-26,-323]],[[58149,47921],[50,-544],[-27,-307]],[[58172,47070],[55,-343],[161,-330]],[[58388,46397],[150,-745]],[[58538,45652],[-109,60],[-373,-99],[-75,-71],[-79,-377],[62,-261],[-49,-699],[-34,-593],[75,-105],[194,-230],[76,107],[23,-637],[-212,5],[-114,325],[-103,252],[-213,82],[-62,310],[-170,-187],[-222,83],[-93,268],[-176,55],[-131,-15],[-15,184],[-96,15]],[[53609,47755],[73,-60],[95,226],[152,-6],[17,-167],[104,-105],[164,370],[161,289],[71,189],[-10,486],[121,574],[127,304],[183,285],[32,189],[7,216],[45,205],[-14,335],[34,524],[55,368],[83,316],[16,357]],[[57603,53672],[169,-488],[124,-71],[75,99],[128,-39],[155,125],[66,-252],[244,-393]],[[53081,48229],[212,326],[-105,391],[95,148],[187,73],[23,261],[148,-283],[245,-25],[85,279],[36,393],[-31,461],[-131,350],[120,684],[-69,117],[-207,-48],[-78,305],[21,258]],[[29063,50490],[-119,140],[-137,195],[-79,-94],[-235,82],[-68,255],[-52,-10],[-278,338]],[[28366,54848],[36,287],[89,-43],[52,176],[-64,348],[34,86]],[[30185,57537],[-178,-99],[-71,-295],[-107,-169],[-81,-220],[-34,-422],[-77,-345],[144,-40],[35,-271],[62,-130],[21,-238],[-33,-219],[10,-123],[69,-49],[66,-207],[357,57],[161,-75],[196,-508],[112,63],[200,-32],[158,68],[99,-102],[-50,-318],[-62,-199],[-22,-423],[56,-393],[79,-175],[9,-133],[-140,-294],[100,-130],[74,-207],[85,-589]],[[30585,48040],[-139,314],[-83,14],[179,602],[-213,276],[-166,-51],[-101,103],[-153,-157],[-207,74],[-163,620],[-129,152],[-89,279],[-184,280],[-74,-56]],[[26191,57131],[42,76],[183,-156],[63,77],[89,-50],[46,-121],[82,-40],[66,126]],[[27070,56232],[-107,-53],[1,-238],[58,-88],[-41,-70],[10,-107],[-23,-120],[-14,-117]],[[59437,71293],[-30,21],[-53,-45],[-42,12],[-14,-22],[-5,59],[-20,37],[-54,6],[-75,-51],[-52,31]],[[53776,79457],[-157,254],[-141,142],[-30,249],[-49,176],[202,129],[103,147],[200,114],[70,113],[73,-68],[124,62]],[[54171,80775],[132,-191],[207,-51],[-17,-163],[151,-122],[41,153],[191,-66],[26,-185],[207,-36],[127,-291]],[[55236,79823],[-82,-1],[-43,-106],[-64,-26],[-18,-134],[-54,-28],[-7,-55],[-95,-61],[-123,10],[-39,-130]],[[53922,82340],[64,-300],[-77,-158],[101,-210],[69,-316],[-22,-204],[114,-377]],[[52074,78715],[35,421],[140,404],[-400,109],[-131,155]],[[51718,79804],[16,259],[-56,133]],[[51710,80596],[-47,619],[167,0],[70,222],[69,541],[-51,200]],[[52368,83053],[210,-78],[178,90]],[[61984,57352],[-102,-317]],[[61882,57035],[-62,106],[-67,-42],[-155,10],[-4,180],[-22,163],[94,277],[98,261]],[[61764,57990],[119,-51],[83,144]],[[52293,84144],[80,177],[244,37]],[[30081,61241],[5,161],[-71,177],[68,99],[21,228],[-24,321]],[[53333,64447],[-952,-1126],[-804,-1161],[-392,-263]],[[51185,61897],[-308,-58],[-3,376],[-129,96],[-173,169],[-66,277],[-937,1289],[-937,1289]],[[48632,65335],[-1045,1431]],[[47587,66766],[6,114],[-1,40]],[[47592,66920],[-2,700],[449,436],[277,90],[227,159],[107,295],[324,234],[12,438],[161,51],[126,219],[363,99],[51,230],[-73,125],[-96,624],[-17,359],[-104,379]],[[52339,72408],[-57,-303],[44,-563],[-65,-487],[-171,-330],[24,-445],[227,-352],[3,-143],[171,-238],[118,-1061]],[[52633,68486],[90,-522],[15,-274],[-49,-482],[21,-270],[-36,-323],[24,-371],[-110,-247],[164,-431],[11,-253],[99,-330],[130,109],[219,-275],[122,-370]],[[29063,50490],[38,-449],[-86,-384],[-303,-619],[-334,-233],[-170,-514],[-53,-398],[-157,-243],[-116,298],[-113,64],[-114,-47],[-8,216],[79,141],[-33,246]],[[60240,63578],[-1102,0],[-1077,0],[-1117,0]],[[56944,63578],[0,2175],[0,2101],[-83,476],[71,365],[-43,253],[101,283]],[[59518,69025],[182,-1015]],[[61764,57990],[-95,191],[-114,346],[-124,190],[-71,204],[-242,237],[-191,7],[-67,124],[-163,-139],[-168,268],[-87,-441],[-323,124]],[[60119,59101],[-30,236],[120,868],[27,393],[88,181],[204,97],[141,337]],[[60669,61213],[161,-684],[77,-542]],[[47783,76427],[340,-106],[373,3]],[[49471,76235],[111,-230],[511,-268],[101,127],[313,-267],[322,77]],[[49600,72702],[-197,-454],[-352,-9]],[[47929,72498],[-23,195],[103,222],[38,161],[-96,175],[77,388],[-111,355],[120,48],[11,280],[45,86],[3,461],[129,160],[-78,296],[-162,21],[-47,-75],[-164,0],[-70,289],[-113,-86],[-101,-150]],[[57772,85719],[42,-103],[-198,-341],[83,-551],[-120,-187]],[[57579,84537],[-229,1],[-239,219],[-121,73],[-237,-105]],[[61882,57035],[-61,-209],[103,-325],[102,-285],[106,-210],[909,-702],[233,4]],[[63274,55308],[-785,-1773],[-362,-26],[-247,-417],[-178,-11],[-76,-186]],[[61626,52895],[-190,0],[-112,200],[-254,-247],[-82,-247],[-185,47],[-62,68],[-65,-16],[-87,6],[-352,502],[-193,0],[-95,194],[0,332],[-145,99]],[[59804,53833],[-164,643],[-127,137],[-48,236],[-141,288],[-171,42],[95,337],[147,14],[42,181]],[[59437,55711],[-4,531]],[[59433,56242],[82,618],[132,166],[28,241],[119,451],[168,293],[112,582],[45,508]],[[57942,91385],[-41,-414],[425,-394],[-256,-445],[323,-673],[-187,-506],[250,-440],[-113,-385],[411,-405],[-105,-301],[-258,-341],[-594,-755]],[[56352,85938],[-161,323],[-269,193],[62,582]],[[55984,87036],[-135,533],[133,345]],[[56639,89578],[-93,230],[-8,910],[-433,402],[-371,289]],[[55734,91409],[167,156],[309,-312],[362,29],[298,-143],[265,262],[137,433],[431,200],[356,-235],[-117,-414]],[[34854,51946],[70,252],[24,269],[48,253],[-107,349]],[[34889,53069],[-22,404],[144,508]],[[51576,79843],[62,-52],[80,13]],[[51900,77752],[-11,-167],[82,-222],[-97,-180],[72,-457],[151,-75],[-32,-256]],[[49176,78685],[-424,227],[-28,431]],[[52636,51176],[94,35],[404,-6],[-2,711]],[[48278,82406],[-210,122],[-172,-9],[57,317],[-57,317]],[[49420,83612],[22,-62],[248,-697]],[[49690,82853],[190,-95],[171,-673],[79,-233],[337,-113],[-34,-378],[-142,-173],[111,-305],[-250,-310],[-371,6],[-473,-163],[-130,116],[-183,-276],[-257,67],[-195,-226],[-148,118],[407,621],[249,127]],[[49051,80963],[-2,1],[-434,98]],[[48615,81062],[-79,235],[291,183],[-152,319],[52,387]],[[48727,82186],[413,-54],[1,0]],[[49141,82132],[40,343]],[[49181,82475],[-186,364],[-4,8]],[[48991,82847],[-337,104],[-66,160],[101,264],[-92,163],[-149,-279],[-17,569],[-140,301],[101,611],[216,480],[222,-47],[335,49],[-297,-639],[283,81],[304,-3],[-72,-481],[-250,-530],[287,-38]],[[61098,76242],[34,70],[235,-101],[409,-96],[378,-283],[48,-110],[169,93],[259,-124],[85,-242],[175,-137]],[[62106,74858],[-268,290],[-296,-28]],[[50006,57090],[-20,-184],[116,-305],[-1,-429],[27,-466],[69,-215],[-61,-532],[22,-294],[74,-375],[62,-207]],[[47655,55121],[-78,15],[-57,-238],[-78,3],[-55,126],[19,237],[-116,362],[-73,-67],[-59,-13]],[[47158,55546],[-77,-34],[3,217],[-44,155],[9,171],[-60,249],[-78,211],[-222,1],[-65,-112],[-76,-13],[-48,-128],[-32,-163],[-148,-260]],[[45797,57103],[123,288],[84,-11],[73,99],[61,1],[44,78],[-24,196],[31,62],[5,200]],[[46194,58016],[134,-6],[200,-144],[61,13],[21,66],[151,-47],[40,33]],[[46801,57931],[16,-216],[44,1],[73,78],[46,-19],[77,-150],[119,-48],[76,128],[90,79],[67,83],[55,-15],[62,-130],[33,-163],[114,-248],[-57,-152],[-11,-192],[59,58],[35,-69],[-15,-176],[85,-170]],[[45357,58612],[302,17],[63,140],[88,9],[110,-145],[86,-3],[92,99],[56,-170],[-120,-133],[-121,11],[-119,124],[-103,-136],[-50,-5],[-67,-83],[-253,13]],[[45367,57897],[147,96],[92,-19],[75,67],[513,-25]],[[56638,74190],[-154,-1],[-147,305]],[[56486,73734],[-105,-129],[155,-273]],[[56431,72099],[-184,-8],[-228,257],[-104,473]],[[55838,74710],[182,53],[106,129],[150,-12],[46,103],[53,20]],[[57254,75292],[135,-157],[-86,-369],[-66,-67]],[[24381,59170],[7,172],[32,138],[-39,111],[133,481],[357,2],[7,201],[-45,36],[-31,128],[-103,136],[-103,198],[125,1],[1,333],[259,1],[257,-7]],[[25493,59872],[-127,-225],[-131,-166],[-20,-113],[22,-116],[-58,-150]],[[25179,59102],[-65,-37],[15,-69],[-52,-66],[-95,-149],[-9,-86]],[[34125,54109],[-44,-532],[-169,-154],[15,-139],[-51,-305],[123,-429],[89,-1],[37,-333],[169,-514]],[[33129,53652],[-188,448],[75,163],[-5,273],[171,95],[69,110],[-95,220],[24,215],[220,347]],[[25697,58436],[-84,51]],[[25613,58487],[19,237],[-38,64],[-57,42],[-122,-70],[-10,79],[-84,95],[-60,118],[-82,50]],[[25860,59889],[128,15],[90,66]],[[26903,59440],[-95,12],[-38,-81],[-97,-77],[-70,0],[-61,-76],[-56,27],[-47,90],[-29,-17],[-36,-141],[-27,5],[-4,-121],[-97,-163],[-51,-70],[-29,-74],[-82,120],[-60,-158],[-58,4],[-65,-14],[6,-290],[-41,-5],[-35,-135],[-86,-25]],[[55230,77704],[67,-229],[89,-169],[-107,-222]],[[55155,75778],[-31,-100]],[[54448,76285],[-233,434],[56,45]],[[53809,77462],[194,-20],[51,100],[94,-97],[109,-11],[-1,165],[97,60],[27,239],[221,157]],[[54601,78055],[88,-73],[208,-253],[229,-114],[104,89]],[[54716,79012],[141,-151],[103,-65],[233,73],[22,118],[111,18],[135,92],[30,-38],[130,74],[66,139],[91,36],[297,-180],[59,61]],[[56134,79189],[155,-161],[19,-159]],[[56308,78869],[-170,-123],[-131,-401],[-168,-401],[-223,-111]],[[55616,77833],[-173,26],[-213,-155]],[[54601,78055],[-54,200],[-47,6]],[[84713,45326],[28,-117],[5,-179]],[[89166,49043],[5,-1925],[4,-1925]],[[80461,51765],[47,-395],[190,-334],[179,121],[177,-43],[162,299],[133,52],[263,-166],[226,126],[143,822],[107,205],[96,672],[319,0],[241,-100]],[[72530,68413],[-176,-268],[-108,-553],[269,-224],[262,-289],[362,-332],[381,-76],[160,-301],[215,-56],[334,-138],[231,10],[32,234],[-36,375],[21,255]],[[77035,67277],[20,-224],[-97,-108],[23,-364],[-199,107],[-359,-408],[8,-338],[-153,-496],[-14,-288],[-124,-487],[-217,135],[-11,-612],[-63,-201],[30,-251],[-137,-140]],[[73107,61020],[-276,-387],[-1,-271]],[[72692,60216],[-251,-212],[-129,-31]],[[71996,56025],[-253,-168],[-93,-401]],[[68937,64577],[185,395],[612,-2],[-56,507],[-156,300],[-31,455],[-182,265],[306,619],[323,-45],[290,620],[174,599],[270,593],[-4,421],[236,342],[-224,292],[-96,400],[-99,517],[137,255],[421,-144],[310,88],[268,496]],[[64978,72558],[244,114],[197,338],[186,-17],[122,110],[197,-55],[308,-299],[221,-65],[318,-523],[207,-21],[24,-498]],[[66909,68203],[137,-310],[112,-357],[266,-260],[7,-520],[133,-96],[23,-272],[-400,-305],[-105,-687]],[[66559,65575],[-303,136],[-313,76]],[[63594,68492],[-104,-231]],[[63490,68261],[-153,311],[-3,314],[-89,0],[46,428],[-143,449],[-340,324],[-193,562],[65,461],[139,204],[-21,345],[-182,177],[-180,705]],[[62436,72541],[-152,473],[55,183],[-87,678],[190,168]],[[63326,68290],[-187,49],[-204,-567]],[[62935,67772],[-516,47],[-784,1188],[-413,414],[-335,160]],[[60887,69581],[-112,720]],[[60775,70301],[615,614],[105,715],[-26,431],[152,146],[142,369]],[[61763,72576],[119,92],[324,-77],[97,-150],[133,100]],[[63490,68261],[-164,29]],[[59873,69719],[-100,82],[-58,-394],[69,-66],[-71,-81],[-12,-156],[131,80]],[[59832,69184],[7,-230],[-139,-944]],[[59757,70130],[93,-1],[25,104],[75,8]],[[59950,70241],[4,-242],[-38,-90],[6,-4]],[[59922,69905],[-49,-186]],[[53835,78058],[-31,-291],[67,-251]],[[54413,75123],[249,-214],[204,-178]],[[53108,75604],[-189,340],[-86,585]],[[59922,69905],[309,-234],[544,630]],[[60887,69581],[-53,-89],[-556,-296],[277,-591],[-92,-101],[-46,-197],[-212,-82],[-66,-213],[-120,-182],[-310,94]],[[59832,69184],[41,173],[0,362]],[[69711,75551],[-159,-109],[-367,-412],[-121,-422],[-104,-4],[-76,280],[-353,19],[-57,484],[-135,4],[21,593],[-333,431],[-476,-46],[-326,-86],[-265,533],[-227,223],[-431,423],[-52,51],[-715,-349],[11,-2178]],[[65546,74986],[-142,-29],[-195,463],[-188,166],[-315,-123],[-123,-197]],[[63639,77993],[-142,96],[29,304],[-177,395],[-207,-17],[-235,401],[160,448],[-81,120],[222,649],[285,-342],[35,431],[573,643],[434,15],[612,-409],[329,-239],[295,249],[440,12],[356,-306],[80,175],[391,-25],[69,280],[-450,406],[267,288],[-52,161],[266,153],[-200,405],[127,202],[1039,205],[136,146],[695,218],[250,245],[499,-127],[88,-612],[290,144],[356,-202],[-23,-322],[267,33],[696,558],[-102,-185],[355,-457],[620,-1500],[148,309],[383,-340],[399,151],[154,-106],[133,-341],[194,-115],[119,-251],[358,79],[147,-361]],[[72294,75601],[-171,87],[-140,212],[-412,62],[-461,16],[-100,-65],[-396,248],[-158,-122],[-43,-349],[-457,204],[-183,-84],[-62,-259]],[[60889,47817],[-399,590],[-19,343],[-1007,1203],[-47,65]],[[59417,50018],[-3,627],[80,239],[137,391],[101,431],[-123,678],[-32,296],[-132,411]],[[59445,53091],[171,352],[188,390]],[[61626,52895],[-243,-670],[3,-2152],[165,-488]],[[70465,73876],[-526,-89],[-343,192],[-301,-46],[26,340],[303,-98],[101,182]],[[69725,74357],[212,-58],[355,425],[-329,311],[-198,-147],[-205,223],[234,382],[-83,58]],[[78495,57780],[-66,713],[178,492],[359,112],[261,-84]],[[79227,59013],[229,-232],[126,407],[246,-217]],[[79828,58971],[64,-394],[-34,-708],[-467,-455],[122,-358],[-292,-43],[-240,-238]],[[85103,71220],[51,443],[-122,615]],[[85048,72883],[17,54],[124,-21],[108,266],[197,29],[118,39],[40,143]],[[55575,75742],[52,132]],[[55627,75874],[66,43],[38,196],[50,33],[40,-84],[52,-36],[36,-94],[46,-28],[54,-110],[39,4],[-31,-144],[-33,-71],[9,-44]],[[55993,75539],[-62,-23],[-164,-91],[-13,-121],[-35,5]],[[63448,67449],[-196,-16],[-69,282],[-248,57]],[[79227,59013],[90,266],[12,500],[-224,515],[-18,583],[-211,480],[-210,40],[-56,-205],[-163,-17],[-83,104],[-293,-353],[-6,530],[68,623],[-188,27],[-16,355],[-120,182]],[[77809,62643],[59,218],[237,384]],[[78380,63852],[162,-466],[125,-537],[342,-5],[108,-515],[-178,-155],[-80,-212],[333,-353],[231,-699],[175,-520],[210,-411],[70,-418],[-50,-590]],[[59999,71049],[125,-31],[45,-231],[-151,-223],[-68,-323]],[[47498,53435],[-252,449],[-237,324]],[[46822,54589],[66,189],[15,172],[126,320],[129,276]],[[54125,64088],[-197,-220],[-156,324],[-439,255]],[[52633,68486],[136,137],[24,250],[-30,244],[191,228],[86,189],[135,170],[16,454]],[[56646,69496],[276,-70],[68,-195]],[[56944,63578],[0,-1180],[-320,-2],[-3,-248]],[[56621,62148],[-1108,1131],[-1108,1132],[-280,-323]],[[57708,32474],[-209,454],[148,374],[151,232],[130,120],[121,-182],[96,-178],[-85,-288],[-47,-192],[-155,-93],[-51,-188],[-99,-59]],[[56314,82678],[-23,150],[30,162],[-123,94],[-291,103]],[[55848,83684],[318,181],[466,-38],[273,59],[39,-123],[148,-38],[267,-287]],[[56523,82432],[-67,182],[-142,64]],[[57579,84537],[134,-136],[24,-287],[89,-348]],[[47592,66920],[-42,0],[7,-317],[-172,-19],[-90,-134],[-126,0],[-100,76],[-234,-63],[-91,-460],[-86,-44],[-131,-745],[-386,-637],[-92,-816],[-114,-265],[-33,-213],[-625,-48],[-5,1]],[[45272,63236],[13,274],[106,161],[91,308],[-18,200],[96,417],[155,376],[93,95],[74,344],[6,315],[100,365],[185,216],[177,603]],[[46350,66910],[5,8],[139,227]],[[46494,67145],[259,65],[218,404],[140,158]],[[57394,79070],[66,87],[185,58],[204,-184],[115,-22],[125,-159],[-20,-200],[101,-97],[40,-247],[97,-150],[-19,-88],[52,-60],[-74,-44],[-164,18],[-27,81],[-58,-47],[20,-106],[-76,-188],[-49,-203],[-70,-64]],[[57842,77455],[-50,270],[30,252],[-9,259],[-160,352],[-89,249],[-86,175],[-84,58]],[[23016,65864],[-107,-518],[-49,-426],[-20,-791],[-27,-289],[48,-322],[86,-288],[56,-458],[184,-440],[65,-337],[109,-291],[295,-157],[114,-247],[244,165],[212,60],[208,106],[175,101],[176,241],[67,345],[22,496],[48,173],[188,155],[294,137],[246,-21],[169,50],[66,-125],[-9,-285],[-149,-351],[-66,-360],[51,-103],[-42,-255],[-69,-461],[-71,152],[-58,-10]],[[24067,59806],[-144,191],[-226,155]],[[19641,66203],[-142,138],[-164,287]],[[18570,68996],[-201,234],[-93,-25]],[[19362,64423],[-181,337],[-201,286]],[[17464,69802],[316,46],[353,64],[-26,-116],[419,-287],[634,-416],[552,4],[221,0],[0,244],[481,0],[102,-210],[142,-186],[165,-260],[92,-309],[69,-325],[144,-178],[230,-177],[175,467],[227,11],[196,-236],[139,-404],[96,-346],[164,-337],[61,-414],[78,-277],[217,-184],[197,-130],[108,18]],[[55993,75539],[95,35],[128,9]],[[46619,59216],[93,107],[47,348],[88,14],[194,-165],[157,117],[107,-39],[42,131],[1114,9],[62,414],[-48,73],[-134,2550],[-134,2550],[425,10]],[[51185,61897],[1,-1361],[-152,-394],[-24,-364],[-247,-94],[-379,-51],[-102,-210],[-178,-23]],[[46801,57931],[13,184],[-24,229],[-104,166],[-54,338],[-13,368]],[[77809,62643],[-159,-137],[-162,-256],[-196,-26],[-127,-639],[-117,-107],[134,-519],[177,-431],[113,-390],[-101,-514],[-96,-109],[66,-296],[185,-470],[32,-330],[-4,-274],[108,-539],[-152,-551],[-135,-607]],[[55338,76294],[74,-101],[40,-82],[91,-63],[106,-123],[-22,-51]],[[55380,75322],[-58,46]],[[74375,79706],[292,102],[530,509],[423,278],[242,-182],[289,-8],[186,-276],[277,-22],[402,-148],[270,411],[-113,348],[288,612],[311,-244],[252,-69],[327,-152],[53,-443],[394,-248],[263,109],[351,78],[279,-78],[272,-284],[168,-302],[258,6],[350,-96],[255,146],[366,98],[407,416],[166,-63],[146,-198],[331,49]],[[59599,43773],[209,48],[334,-166],[73,74],[193,16],[99,177],[167,-10],[303,230],[221,342]],[[59870,36949],[-45,-275],[65,-101]],[[59890,36573],[-41,-245],[-116,-211]],[[59119,34780],[-211,5]],[[58908,34785],[-24,261],[-41,265]],[[58843,35311],[-23,212],[49,659],[-72,419],[-133,832]],[[58664,37433],[292,671],[74,426],[42,53],[31,348],[-45,175],[12,442],[54,409],[0,748],[-145,190],[-132,43],[-60,146],[-128,125],[-232,-12],[-18,220]],[[58409,41417],[-26,421],[843,487]],[[59226,42325],[159,-284],[77,54],[110,-149],[16,-237],[-59,-274],[21,-417],[181,-365],[85,410],[120,124],[-24,760],[-116,427],[-100,191],[-97,-9],[-77,768],[77,449]],[[46619,59216],[-184,405],[-168,435],[-184,157],[-133,173],[-155,-6],[-135,-129],[-138,51],[-96,-189]],[[45260,62987],[60,197],[1088,-4],[-53,853],[68,304],[261,53],[-9,1512],[911,-31],[1,895]],[[59226,42325],[-147,153],[85,549],[87,205],[-53,490],[56,479],[47,160],[-71,501],[-131,264]],[[59099,45126],[273,-110],[55,-164],[95,-275],[77,-804]],[[77801,54399],[48,105],[227,-258],[22,-304],[183,71],[91,243]],[[56448,40227],[228,134],[180,-34],[109,-133],[2,-49]],[[55526,35946],[0,-2182],[-248,-302],[-149,-43],[-175,112],[-125,43],[-47,252],[-109,162],[-133,-292]],[[54125,64088],[68,-919],[104,-153],[4,-188],[116,-203],[-60,-254],[-107,-1199],[-15,-769],[-354,-557],[-120,-778],[115,-219],[0,-380],[178,-13],[-28,-279]],[[53939,57955],[-52,-13],[-188,647],[-65,24],[-217,-331],[-215,173],[-150,34],[-80,-83],[-163,18],[-164,-252],[-141,-14],[-337,305],[-131,-145],[-142,10],[-104,223],[-279,221],[-298,-70],[-72,-128],[-39,-340],[-80,-238],[-19,-527]],[[52072,53186],[-105,31],[-107,-132]],[[51398,53895],[-197,389],[-209,-7]],[[25647,58207],[31,91],[46,-88]],[[51063,81078],[244,869],[380,248]],[[58639,91676],[-473,-237],[-224,-54]],[[55734,91409],[-172,-24],[-41,-389],[-523,95],[-74,-329],[-267,2],[-183,-421],[-278,-655],[-431,-831],[101,-202],[-97,-234],[-275,10],[-180,-554],[17,-784],[177,-300],[-92,-694],[-231,-405],[-122,-341]],[[52328,85032],[-371,-138],[-384,301]],[[51474,85830],[-88,1363],[256,381]],[[65352,60997],[1,-238],[-134,-165]],[[64880,60451],[-128,-34]],[[64752,60417],[-91,413],[-217,975]],[[64444,61805],[833,591],[185,1182],[-127,418]],[[65945,64688],[203,-78],[165,-107]],[[68734,64727],[-83,424],[-215,450]],[[28212,55535],[-52,196],[-138,164]],[[27170,56020],[-6,-126],[111,-26]],[[55461,82736],[342,-67],[511,9]],[[56535,81053],[139,-515],[-29,-166],[-138,-69],[-252,-491],[71,-266],[-60,35]],[[56266,79581],[-264,227],[-200,-84],[-131,61],[-165,-127],[-140,210],[-114,-81],[-16,36]],[[86221,75560],[-120,-200],[-83,-202]],[[85048,72883],[-135,112],[-34,-111]],[[84641,73095],[76,260],[66,69]],[[84829,73851],[-18,96],[-163,65]],[[86288,75628],[39,-104]],[[64246,66009],[84,-185],[5,-346]],[[64274,65130],[-77,-42],[-84,117]],[[56308,78869],[120,127],[172,-65],[178,-3],[129,-144],[95,91],[205,56],[69,139],[118,0]],[[57842,77455],[124,-109],[131,95],[126,-101]],[[56293,76715],[-51,103],[65,99],[-69,74],[-87,-133],[-162,172],[-22,244],[-169,139],[-31,188],[-151,232]],[[81143,94175],[251,112],[141,-379]],[[84237,94144],[590,-104],[443,4]],[[97224,91732],[123,262],[886,-165]],[[96192,85904],[-126,219],[-268,-253]],[[95032,82989],[-486,-302],[-96,-674]],[[93543,84472],[14,276],[432,132]],[[95182,86999],[-705,-649],[-227,727]],[[90412,85637],[-914,-175],[-899,-1153]],[[88378,82339],[178,295],[305,-38]],[[89262,81946],[9,-503],[-217,-590]],[[60617,78409],[9,262],[143,165],[269,43],[44,197],[-62,326],[113,310],[-3,173],[-410,192],[-162,-6],[-172,277],[-213,-94],[-352,208],[6,116],[-99,256],[-222,29],[-23,183],[70,120],[-178,334],[-288,-57],[-84,30],[-70,-134],[-104,23]],[[58639,91676],[286,206],[456,-358],[761,-140],[1050,-668],[213,-281],[18,-393],[-308,-311],[-454,-157],[-1240,449],[-204,-75],[453,-433]],[[59670,89515],[18,-274],[18,-604]],[[59706,88637],[358,-180],[217,-153],[36,286]],[[60317,88590],[-168,254],[177,224]],[[60998,88700],[233,144],[-186,433]],[[62654,90499],[1,-328],[219,-203]],[[63371,90473],[580,282],[970,507]],[[69038,93080],[183,537],[206,116]],[[69427,93733],[736,-156],[57,-328]],[[70444,91717],[222,593],[-361,482]],[[72363,94093],[483,119],[669,-26]],[[58449,49909],[110,-333],[-16,-348],[-80,-74]],[[58216,49787],[67,-60],[166,182]],[[61883,60238],[-37,252],[-83,178]],[[60335,65400],[-77,306],[-81,132]],[[63741,66597],[190,-249],[16,-243]],[[64444,61805],[-801,-226],[-259,-266],[-199,-620],[-130,-99],[-70,197],[-106,-30],[-269,60],[-50,59],[-321,-14],[-75,-53],[-114,153],[-74,-290],[28,-249],[-121,-189]],[[56351,57163],[3,143],[-102,174],[-3,343],[-58,228],[-98,-34],[28,217],[72,246],[-32,245],[92,181],[-58,138],[73,365],[127,435],[240,-41],[-14,2345]],[[59433,56242],[1,-71]],[[59434,56171],[-39,12],[5,294],[-33,203],[-143,233],[-34,426],[34,436],[-129,41],[-19,-132],[-167,-30],[67,-173],[23,-355],[-152,-324],[-138,-426],[-144,-61],[-233,345],[-105,-122],[-29,-172],[-143,-112],[-9,-122],[-277,0],[-38,122],[-200,20],[-100,-101],[-77,51],[-143,344],[-48,163],[-200,-81],[-76,-274],[-72,-528],[-95,-111],[-85,-65]],[[56635,55672],[-23,28]],[[59445,53091],[-171,-272],[-195,1],[-224,-138],[-176,132],[-115,-161]],[[56824,55442],[-189,230]],[[59434,56171],[3,-460]],[[25613,58487],[-31,-139]],[[62075,57243],[54,-245],[125,-247]],[[63596,57321],[-2,-9],[-1,-244],[0,-596],[0,-308],[-125,-363],[-194,-493]],[[34889,53069],[109,-351],[-49,-254],[-24,-270],[-71,-248]],[[56266,79581],[-77,-154],[-55,-238]],[[58908,34785],[-56,-263],[-163,-63],[-166,320],[-2,204],[76,222],[26,172],[80,42],[140,-108]],[[60041,71744],[74,129],[75,130],[15,329],[91,-115],[306,165],[147,-112],[229,2],[320,222],[149,-10],[316,92]],[[68841,72526],[156,598],[-60,440],[-204,140],[72,261],[232,-28],[132,326],[89,380],[371,137],[-58,-274],[40,-164],[114,15]],[[65546,74986],[313,8],[-45,297],[237,204],[234,343],[374,-312],[30,-471],[106,-121],[301,27],[93,-108],[137,-609],[317,-408],[181,-278],[291,-289],[369,-253],[-7,-362]],[[53083,72381],[-139,-290],[-2,-273]],[[58441,72005],[-192,-70],[-268,314]],[[57981,72249],[-303,-11],[-165,588]],[[59768,75418],[485,-417],[399,-228]],[[57321,74302],[-87,276],[3,121]],[[59099,45126],[-157,177],[-177,100],[-111,99],[-116,150]],[[58388,46397],[-161,331],[-55,342]],[[58449,49909],[98,71],[304,-7],[566,45]],[[30523,76389],[-147,-351],[-47,-133]],[[30377,75084],[-133,11],[-205,-103]],[[29172,73738],[-61,30],[-91,148]],[[29077,73598],[69,-105],[5,-223]],[[28966,72994],[-142,225],[-33,491]],[[28797,73080],[-183,93],[191,-191]],[[27672,65472],[-83,-75],[-137,72]],[[27408,65728],[-105,136],[-148,508]],[[26747,68267],[-108,90],[-281,-268]],[[26309,68119],[-135,275],[-174,147]],[[25227,68491],[-114,-92],[50,-157]],[[24755,67801],[-207,312],[-242,-73]],[[16564,70932],[-71,95],[-33,324]],[[16460,71351],[-270,594],[-231,821],[10,137],[-123,195],[-215,495],[-38,482],[-148,323],[61,489],[-10,507],[-89,453],[109,557]],[[15516,76404],[34,536],[33,536]],[[15583,77476],[-50,792],[-88,506],[-80,274],[33,115],[402,-200],[148,-558]],[[15948,78405],[69,156],[-45,484],[-94,485]],[[10396,86079],[-385,-51],[-546,272]],[[8164,85656],[-308,-126],[-39,348]],[[7158,84934],[-299,-248],[-278,-180]],[[4985,85596],[50,216],[-179,211]],[[4541,89915],[-38,-296],[586,23]],[[4864,90008],[-342,225],[-197,296]],[[30102,56752],[-123,-344],[105,-468]],[[31762,56607],[213,-74],[155,185]],[[63521,58853],[-122,-33],[-83,35]],[[63153,58610],[-177,-114],[-233,-30]],[[62539,58233],[-43,-150],[-137,13]],[[64752,60417],[-201,-158]],[[57838,31217],[-210,-269],[-290,-229]],[[58175,37528],[113,-7],[134,-100],[94,71],[148,-59]],[[58409,41417],[-210,-81],[-159,-235],[-33,-205],[-100,-46],[-241,-486],[-154,-383],[-94,-13],[-90,68],[-311,65]]]} \ No newline at end of file diff --git a/src/data/gapminder/world-country-names.tsv b/src/data/gapminder/world-country-names.tsv new file mode 100644 index 0000000..204bf08 --- /dev/null +++ b/src/data/gapminder/world-country-names.tsv @@ -0,0 +1,253 @@ +id name +-1 Northern Cyprus +-2 Kosovo +-3 Somaliland +4 Afghanistan +8 Albania +10 Antarctica +12 Algeria +16 American Samoa +20 Andorra +24 Angola +28 Antigua and Barbuda +31 Azerbaijan +32 Argentina +36 Australia +40 Austria +44 Bahamas +48 Bahrain +50 Bangladesh +51 Armenia +52 Barbados +56 Belgium +60 Bermuda +64 Bhutan +68 Bolivia +70 Bosnia and Herzegovina +72 Botswana +74 Bouvet Island +76 Brazil +84 Belize +86 British Indian Ocean Territory +90 Solomon Islands +92 Virgin Islands, British +96 Brunei +100 Bulgaria +104 Myanmar +108 Burundi +112 Belarus +116 Cambodia +120 Cameroon +124 Canada +132 Cape Verde +136 Cayman Islands +140 Central African Republic +144 Sri Lanka +148 Chad +152 Chile +156 China +158 Taiwan, Province of China +162 Christmas Island +166 Cocos (Keeling) Islands +170 Colombia +174 Comoros +175 Mayotte +178 Congo, Rep. +180 Congo, Dem. Rep. +184 Cook Islands +188 Costa Rica +191 Croatia +192 Cuba +196 Cyprus +203 Czech Republic +204 Benin +208 Denmark +212 Dominica +214 Dominican Republic +218 Ecuador +222 El Salvador +226 Equatorial Guinea +231 Ethiopia +232 Eritrea +233 Estonia +234 Faroe Islands +238 Falkland Islands (Malvinas) +239 South Georgia and the South Sandwich Islands +242 Fiji +246 Finland +248 Åland Islands +250 France +254 French Guiana +258 French Polynesia +260 French Southern Territories +262 Djibouti +266 Gabon +268 Georgia +270 Gambia +275 Palestinian Territory, Occupied +276 Germany +288 Ghana +292 Gibraltar +296 Kiribati +300 Greece +304 Greenland +308 Grenada +312 Guadeloupe +316 Guam +320 Guatemala +324 Guinea +328 Guyana +332 Haiti +334 Heard Island and McDonald Islands +336 Holy See (Vatican City State) +340 Honduras +344 Hong Kong +348 Hungary +352 Iceland +356 India +360 Indonesia +364 Iran +368 Iraq +372 Ireland +376 Israel +380 Italy +384 Côte d'Ivoire +388 Jamaica +392 Japan +398 Kazakhstan +400 Jordan +404 Kenya +408 Korea, Democratic People's Republic of +410 Korea, Republic of +414 Kuwait +417 Kyrgyzstan +418 Lao People's Democratic Republic +422 Lebanon +426 Lesotho +428 Latvia +430 Liberia +434 Libya +438 Liechtenstein +440 Lithuania +442 Luxembourg +446 Macao +450 Madagascar +454 Malawi +458 Malaysia +462 Maldives +466 Mali +470 Malta +474 Martinique +478 Mauritania +480 Mauritius +484 Mexico +492 Monaco +496 Mongolia +498 Moldova +499 Montenegro +500 Montserrat +504 Morocco +508 Mozambique +512 Oman +516 Namibia +520 Nauru +524 Nepal +528 Netherlands +531 Curaçao +533 Aruba +534 Sint Maarten (Dutch part) +535 Bonaire, Sint Eustatius and Saba +540 New Caledonia +548 Vanuatu +554 New Zealand +558 Nicaragua +562 Niger +566 Nigeria +570 Niue +574 Norfolk Island +578 Norway +580 Northern Mariana Islands +581 United States Minor Outlying Islands +583 Micronesia, Fed. Sts. +584 Marshall Islands +585 Palau +586 Pakistan +591 Panama +598 Papua New Guinea +600 Paraguay +604 Peru +608 Philippines +612 Pitcairn +616 Poland +620 Portugal +624 Guinea-Bissau +626 Timor-Leste +630 Puerto Rico +634 Qatar +638 Réunion +642 Romania +643 Russia +646 Rwanda +652 Saint Barthélemy +654 Saint Helena, Ascension and Tristan da Cunha +659 Saint Kitts and Nevis +660 Anguilla +662 Saint Lucia +663 Saint Martin (French part) +666 Saint Pierre and Miquelon +670 Saint Vincent and the Grenadines +674 San Marino +678 Sao Tome and Principe +682 Saudi Arabia +686 Senegal +688 Serbia +690 Seychelles +694 Sierra Leone +702 Singapore +703 Slovakia +704 Vietnam +705 Slovenia +706 Somalia +710 South Africa +716 Zimbabwe +724 Spain +728 South Sudan +729 Sudan +732 Western Sahara +740 Suriname +744 Svalbard and Jan Mayen +748 Swaziland +752 Sweden +756 Switzerland +760 Syria +762 Tajikistan +764 Thailand +768 Togo +772 Tokelau +776 Tonga +780 Trinidad and Tobago +784 United Arab Emirates +788 Tunisia +792 Turkey +795 Turkmenistan +796 Turks and Caicos Islands +798 Tuvalu +800 Uganda +804 Ukraine +807 Macedonia, FYR +818 Egypt +826 United Kingdom +831 Guernsey +832 Jersey +833 Isle of Man +834 Tanzania +840 United States +850 Virgin Islands, U.S. +854 Burkina Faso +858 Uruguay +860 Uzbekistan +862 Venezuela +876 Wallis and Futuna +882 Samoa +887 Yemen +894 Zambia diff --git a/data/global-development.vg.json b/src/data/global-development.vg.json similarity index 100% rename from data/global-development.vg.json rename to src/data/global-development.vg.json diff --git a/data/grouped-bar-chart.vg.json b/src/data/grouped-bar-chart.vg.json similarity index 100% rename from data/grouped-bar-chart.vg.json rename to src/data/grouped-bar-chart.vg.json diff --git a/data/heatmap.vg.json b/src/data/heatmap.vg.json similarity index 100% rename from data/heatmap.vg.json rename to src/data/heatmap.vg.json diff --git a/data/histogram-null-values.vg.json b/src/data/histogram-null-values.vg.json similarity index 100% rename from data/histogram-null-values.vg.json rename to src/data/histogram-null-values.vg.json diff --git a/data/histogram.vg.json b/src/data/histogram.vg.json similarity index 100% rename from data/histogram.vg.json rename to src/data/histogram.vg.json diff --git a/data/horizon-graph.vg.json b/src/data/horizon-graph.vg.json similarity index 100% rename from data/horizon-graph.vg.json rename to src/data/horizon-graph.vg.json diff --git a/data/index.ts b/src/data/index.ts similarity index 93% rename from data/index.ts rename to src/data/index.ts index 78d7673..4250394 100644 --- a/data/index.ts +++ b/src/data/index.ts @@ -65,14 +65,15 @@ import ZoomableWorldMap from './zoomable-world-map.vg.json';*/ import {Spec} from 'vega-lib'; import {tsv} from 'd3'; -import * as csvGdp from 'file-loader!./gapminder/gdp.txt'; -import * as csvChildMortality from 'file-loader!./gapminder/childmortality.txt'; -import * as csvContinent from 'file-loader!./gapminder/continent.txt'; -import * as csvFertility from 'file-loader!./gapminder/fertility.txt'; -import * as csvLifetimeExpectancy from 'file-loader!./gapminder/lifeexpectancy.txt'; -import * as csvReligions from 'file-loader!./gapminder/main_religions.txt'; -import * as csvPopulation from 'file-loader!./gapminder/totalPop_interpolated.txt'; -import * as tsvWorldCountryNames from 'file-loader!./gapminder/world-country-names.tsv'; +// Prefixing with ! will disable all configured normal loaders +import csvGdp from '!file-loader!./gapminder/gdp.txt'; +import csvChildMortality from '!file-loader!./gapminder/childmortality.txt'; +import csvContinent from '!file-loader!./gapminder/continent.txt'; +import csvFertility from '!file-loader!./gapminder/fertility.txt'; +import csvLifetimeExpectancy from '!file-loader!./gapminder/lifeexpectancy.txt'; +import csvReligions from '!file-loader!./gapminder/main_religions.txt'; +import csvPopulation from '!file-loader!./gapminder/totalPop_interpolated.txt'; +import tsvWorldCountryNames from '!file-loader!./gapminder/world-country-names.tsv'; import Gapminder from './gapminder/gapminder.vg.json'; @@ -102,7 +103,7 @@ const gapminderData = Promise.all([ country.forEach((d, i) => { gdp[i].forEach((e, j) => { - const countryName = worldCountryNames.filter((f) => f[1][1] == country[i][0][1])[0]; + const countryName = worldCountryNames.filter((f) => f[1][1] === country[i][0][1])[0]; const mapId = (countryName) ? +countryName[0][1] : 0; const r = { country: country[i][0][1], @@ -124,9 +125,9 @@ const gapminderData = Promise.all([ }); export interface IVegaSpecDataset { - title: string, - spec: Spec, - category: ECategories + title: string; + spec: Spec; + category: ECategories; } enum ECategories { @@ -214,11 +215,11 @@ export function loadDatasets(): Promise { .then((data) => { Gapminder.data.filter((d) => d.name === 'gapminder')[0].values = data; - return { + return { title: 'Gapminder', spec: Gapminder, category: ECategories.INTERACTION_TECHNIQUES - } + }; }) .then((gapminder: IVegaSpecDataset) => { return [gapminder, ...vegaSpecs]; diff --git a/data/interactive-legend.vg.json b/src/data/interactive-legend.vg.json similarity index 100% rename from data/interactive-legend.vg.json rename to src/data/interactive-legend.vg.json diff --git a/data/job-voyager.vg.json b/src/data/job-voyager.vg.json similarity index 100% rename from data/job-voyager.vg.json rename to src/data/job-voyager.vg.json diff --git a/data/line-chart.vg.json b/src/data/line-chart.vg.json similarity index 100% rename from data/line-chart.vg.json rename to src/data/line-chart.vg.json diff --git a/data/nested-bar-chart.vg.json b/src/data/nested-bar-chart.vg.json similarity index 100% rename from data/nested-bar-chart.vg.json rename to src/data/nested-bar-chart.vg.json diff --git a/data/overview-plus-detail.vg.json b/src/data/overview-plus-detail.vg.json similarity index 100% rename from data/overview-plus-detail.vg.json rename to src/data/overview-plus-detail.vg.json diff --git a/data/parallel-coordinates.vg.json b/src/data/parallel-coordinates.vg.json similarity index 100% rename from data/parallel-coordinates.vg.json rename to src/data/parallel-coordinates.vg.json diff --git a/data/pie-chart.vg.json b/src/data/pie-chart.vg.json similarity index 100% rename from data/pie-chart.vg.json rename to src/data/pie-chart.vg.json diff --git a/data/population-pyramid.vg.json b/src/data/population-pyramid.vg.json similarity index 100% rename from data/population-pyramid.vg.json rename to src/data/population-pyramid.vg.json diff --git a/data/probability-density.vg.json b/src/data/probability-density.vg.json similarity index 100% rename from data/probability-density.vg.json rename to src/data/probability-density.vg.json diff --git a/data/projections.vg.json b/src/data/projections.vg.json similarity index 100% rename from data/projections.vg.json rename to src/data/projections.vg.json diff --git a/data/radial-plot.vg.json b/src/data/radial-plot.vg.json similarity index 100% rename from data/radial-plot.vg.json rename to src/data/radial-plot.vg.json diff --git a/data/radial-tree-layout.vg.json b/src/data/radial-tree-layout.vg.json similarity index 100% rename from data/radial-tree-layout.vg.json rename to src/data/radial-tree-layout.vg.json diff --git a/data/reorderable-matrix.vg.json b/src/data/reorderable-matrix.vg.json similarity index 100% rename from data/reorderable-matrix.vg.json rename to src/data/reorderable-matrix.vg.json diff --git a/data/scatter-plot-null-values.vg.json b/src/data/scatter-plot-null-values.vg.json similarity index 100% rename from data/scatter-plot-null-values.vg.json rename to src/data/scatter-plot-null-values.vg.json diff --git a/data/scatter-plot.vg.json b/src/data/scatter-plot.vg.json similarity index 100% rename from data/scatter-plot.vg.json rename to src/data/scatter-plot.vg.json diff --git a/data/stacked-area-chart.vg.json b/src/data/stacked-area-chart.vg.json similarity index 100% rename from data/stacked-area-chart.vg.json rename to src/data/stacked-area-chart.vg.json diff --git a/data/stacked-bar-chart.vg.json b/src/data/stacked-bar-chart.vg.json similarity index 100% rename from data/stacked-bar-chart.vg.json rename to src/data/stacked-bar-chart.vg.json diff --git a/data/stock-index-chart.vg.json b/src/data/stock-index-chart.vg.json similarity index 100% rename from data/stock-index-chart.vg.json rename to src/data/stock-index-chart.vg.json diff --git a/data/sunburst.vg.json b/src/data/sunburst.vg.json similarity index 100% rename from data/sunburst.vg.json rename to src/data/sunburst.vg.json diff --git a/data/timelines.vg.json b/src/data/timelines.vg.json similarity index 100% rename from data/timelines.vg.json rename to src/data/timelines.vg.json diff --git a/data/top-k-plot-with-others.vg.json b/src/data/top-k-plot-with-others.vg.json similarity index 100% rename from data/top-k-plot-with-others.vg.json rename to src/data/top-k-plot-with-others.vg.json diff --git a/data/top-k-plot.vg.json b/src/data/top-k-plot.vg.json similarity index 100% rename from data/top-k-plot.vg.json rename to src/data/top-k-plot.vg.json diff --git a/data/tree-layout.vg.json b/src/data/tree-layout.vg.json similarity index 100% rename from data/tree-layout.vg.json rename to src/data/tree-layout.vg.json diff --git a/data/treemap.vg.json b/src/data/treemap.vg.json similarity index 100% rename from data/treemap.vg.json rename to src/data/treemap.vg.json diff --git a/data/u-district-cuisine.vg.json b/src/data/u-district-cuisine.vg.json similarity index 100% rename from data/u-district-cuisine.vg.json rename to src/data/u-district-cuisine.vg.json diff --git a/data/violin-plot.vg.json b/src/data/violin-plot.vg.json similarity index 100% rename from data/violin-plot.vg.json rename to src/data/violin-plot.vg.json diff --git a/data/weekly-temperature.vg.json b/src/data/weekly-temperature.vg.json similarity index 100% rename from data/weekly-temperature.vg.json rename to src/data/weekly-temperature.vg.json diff --git a/data/wheat-and-wages.vg.json b/src/data/wheat-and-wages.vg.json similarity index 100% rename from data/wheat-and-wages.vg.json rename to src/data/wheat-and-wages.vg.json diff --git a/data/wheat-plot.vg.json b/src/data/wheat-plot.vg.json similarity index 100% rename from data/wheat-plot.vg.json rename to src/data/wheat-plot.vg.json diff --git a/data/word-cloud.vg.json b/src/data/word-cloud.vg.json similarity index 100% rename from data/word-cloud.vg.json rename to src/data/word-cloud.vg.json diff --git a/data/world-map.vg.json b/src/data/world-map.vg.json similarity index 100% rename from data/world-map.vg.json rename to src/data/world-map.vg.json diff --git a/data/zoomable-scatter-plot.vg.json b/src/data/zoomable-scatter-plot.vg.json similarity index 100% rename from data/zoomable-scatter-plot.vg.json rename to src/data/zoomable-scatter-plot.vg.json diff --git a/data/zoomable-world-map.vg.json b/src/data/zoomable-world-map.vg.json similarity index 100% rename from data/zoomable-world-map.vg.json rename to src/data/zoomable-world-map.vg.json diff --git a/src/dialogs.ts b/src/dialogs.ts index dbdd6c6..cc9c738 100644 --- a/src/dialogs.ts +++ b/src/dialogs.ts @@ -2,21 +2,8 @@ * Created by Holger Stitz on 18.08.2016. */ -import CLUEGraphManager from 'phovea_clue/src/CLUEGraphManager'; -import {IAreYouSureOptions, Dialog, FormDialog} from 'phovea_ui/src/dialogs'; -export {setGlobalErrorTemplate, showErrorModalDialog} from 'phovea_ui/src/errors'; - -export interface IDialogModule { - generateDialog(title: string, primaryBtnText?: string): Dialog; - - areyousure(msg?: string, options?: IAreYouSureOptions | string): Promise; - - FormDialog: { new(title: string, primaryBtnText?: string, formId?: string): FormDialog }; -} - -export function lazyDialogModule(): Promise { - return System.import('phovea_ui/src/dialogs'); -} +import {CLUEGraphManager} from 'phovea_clue'; +import {IAreYouSureOptions, Dialog, FormDialog} from 'phovea_ui'; /** * utility dialog when a session was not found @@ -24,57 +11,52 @@ export function lazyDialogModule(): Promise { * @param {string} id session id */ export function showProveanceGraphNotFoundDialog(manager: CLUEGraphManager, id: string) { - lazyDialogModule().then(({generateDialog}) => { - const dialog = generateDialog('Session Not Found!', 'Create New Temporary Session'); - // append bg-danger to the dialog parent element - dialog.body.parentElement.parentElement.parentElement.classList.add('bg-danger'); - dialog.body.innerHTML = ` -

- The requested session "${id}" was not found or is not accessible. -

-

- Possible reasons are that you -

    -
  • requested a temporary session that is already expired
  • -
  • tried to access a temporary session of another user
  • -
  • tried to access a private persistent session of another user
  • -
-

-

- In the latter two cases, please contact the original owner of the session to create a public persistent session. -

`; - dialog.onSubmit(() => { - dialog.hide(); - return false; - }); - dialog.onHide(() => { - dialog.destroy(); - manager.newGraph(); - }); - - dialog.show(); + const dialog = Dialog.generateDialog('Session Not Found!', 'Create New Temporary Session'); + // append bg-danger to the dialog parent element + dialog.body.parentElement.parentElement.parentElement.classList.add('bg-danger'); + dialog.body.innerHTML = ` +

+ The requested session "${id}" was not found or is not accessible. +

+

+ Possible reasons are that you +

    +
  • requested a temporary session that is already expired
  • +
  • tried to access a temporary session of another user
  • +
  • tried to access a private persistent session of another user
  • +
+

+

+ In the latter two cases, please contact the original owner of the session to create a public persistent session. +

`; + dialog.onSubmit(() => { + dialog.hide(); + return false; }); + dialog.onHide(() => { + dialog.destroy(); + manager.newGraph(); + }); + + dialog.show(); } export function showLoadErrorDialog() { - lazyDialogModule().then(({generateDialog}) => { - const dialog = generateDialog('Error loading Vega JSON Specification!', 'Close'); - dialog.body.innerHTML = ` -

- We could not find a valid Vega JSON Specification for the given URL. -

-

- Please check the URL or try a different one. -

`; - dialog.onSubmit(() => { - dialog.hide(); - return false; - }); - dialog.onHide(() => { - dialog.destroy(); - }); - - dialog.show(); + const dialog = Dialog.generateDialog('Error loading Vega JSON Specification!', 'Close'); + dialog.body.innerHTML = ` +

+ We could not find a valid Vega JSON Specification for the given URL. +

+

+ Please check the URL or try a different one. +

`; + dialog.onSubmit(() => { + dialog.hide(); + return false; + }); + dialog.onHide(() => { + dialog.destroy(); }); -} + dialog.show(); +} diff --git a/src/index.html b/src/index.html deleted file mode 100644 index 04482e8..0000000 --- a/src/index.html +++ /dev/null @@ -1,16 +0,0 @@ - - - - Vega Gapminder - - - ${require('html-loader?interpolate!phovea_ui/src/template/_head.html')} - - - -

Loading …

- -${require('html-loader?interpolate!phovea_ui/src/template/_body.html')} - - - diff --git a/src/index.template.ejs b/src/index.template.ejs new file mode 100644 index 0000000..dec919d --- /dev/null +++ b/src/index.template.ejs @@ -0,0 +1,16 @@ + + + + Vega Gapminder + + + <%=require('phovea_ui/dist/template/_head.html')%> + + + +

Loading …

+ +<%=require('phovea_ui/dist/template/_body.html')%> + + + diff --git a/src/index.ts b/src/index.ts index d8126b3..e69de29 100644 --- a/src/index.ts +++ b/src/index.ts @@ -1,22 +0,0 @@ -/** - * Created by Holger Stitz on 13.03.2018. - */ - -// Determine the order of css files manually - -import 'file-loader?name=index.html!extract-loader!html-loader?interpolate!./index.html'; -import 'file-loader?name=404.html!./404.html'; -import 'file-loader?name=robots.txt!./robots.txt'; -import {AppWrapper} from './AppWrapper'; -import {APP_NAME} from './language'; -import App from './internal/App'; -// import styles as last -import './style.scss'; - - -const app = new AppWrapper({ - prefix: 'vega', - name: APP_NAME, - showCookieDisclaimer: true -}); -app.init(); diff --git a/src/initialize.ts b/src/initialize.ts new file mode 100644 index 0000000..a36650e --- /dev/null +++ b/src/initialize.ts @@ -0,0 +1,13 @@ +/** + * Created by Holger Stitz on 13.03.2018. + */ +import {AppWrapper} from './AppWrapper'; +import {APP_NAME} from './language'; +import App from './internal/App'; + +const app = new AppWrapper({ + prefix: 'vega', + name: APP_NAME, + showCookieDisclaimer: true +}); +app.init(); diff --git a/src/internal/App.ts b/src/internal/App.ts index f6aa505..242ee56 100644 --- a/src/internal/App.ts +++ b/src/internal/App.ts @@ -4,14 +4,14 @@ import * as d3 from 'd3'; import * as $ from 'jquery'; -import {IVisStateApp} from 'phovea_clue/src/provenance_retrieval/IVisState'; -import {cat, IObjectRef} from 'phovea_core/src/provenance'; -import {EventHandler} from 'phovea_core/src/event'; -import ProvenanceGraph from 'phovea_core/src/provenance/ProvenanceGraph'; -import CLUEGraphManager from 'phovea_clue/src/CLUEGraphManager'; -import {IProperty, IPropertyValue} from 'phovea_core/src/provenance/retrieval/VisStateProperty'; +import {IVisStateApp} from 'phovea_clue'; +import {IObjectRef, ObjectRefUtils} from 'phovea_core'; +import {EventHandler} from 'phovea_core'; +import {ProvenanceGraph} from 'phovea_core'; +import {CLUEGraphManager} from 'phovea_clue'; +import {IProperty, IPropertyValue} from 'phovea_core'; import {IView} from '../AppWrapper'; -import {IVegaSpecDataset, loadDatasets} from '../../data'; +import {IVegaSpecDataset, loadDatasets} from '../data'; import {VegaView} from './VegaView'; import {Spec} from 'vega-lib'; import * as vega from 'vega-lib'; @@ -44,7 +44,7 @@ export default class App extends EventHandler implements IView, IVisStateAp // add OrdinoApp app as (first) object to provenance graph // need old name for compatibility - this.ref = this.graph.findOrAddObject(this, 'App', cat.visual); + this.ref = this.graph.findOrAddObject(this, 'App', ObjectRefUtils.category.visual); this.$node = d3.select(parent) .append('div') @@ -131,13 +131,13 @@ export default class App extends EventHandler implements IView, IVisStateAp const $select = this.$node.select('.dataset-selector select'); - const nested_data = d3.nest() + const nestedData = d3.nest() .key((d: IVegaSpecDataset) => d.category) .entries(datasets); const $optgroups = $select .selectAll('optgroup') - .data(nested_data); + .data(nestedData); const $optgroupEnter = $optgroups.enter().append('optgroup') .attr('label', (d) => d.key); @@ -148,7 +148,7 @@ export default class App extends EventHandler implements IView, IVisStateAp $optgroups.exit().remove(); - $($select.node()) + ($($select.node())) .select2({ theme: 'bootstrap' }) diff --git a/src/internal/spec.ts b/src/internal/VegaSpec.ts similarity index 98% rename from src/internal/spec.ts rename to src/internal/VegaSpec.ts index d1a86cc..8b6deda 100644 --- a/src/internal/spec.ts +++ b/src/internal/VegaSpec.ts @@ -3,7 +3,7 @@ import {NewSignal, Data} from 'vega-lib'; /** * Extend the Vega Signal specification about tracking */ -export interface ClueSignal extends NewSignal { +export interface IClueSignal extends NewSignal { track?: ITrackProv; search?: ISearchProv; } @@ -177,4 +177,4 @@ export type ClueData = Data & { * Helper property to make it equal to the signal typings */ value: any; -} +}; diff --git a/src/internal/VegaView.ts b/src/internal/VegaView.ts index e5d7075..12e07e0 100644 --- a/src/internal/VegaView.ts +++ b/src/internal/VegaView.ts @@ -1,19 +1,19 @@ -import ProvenanceGraph from 'phovea_core/src/provenance/ProvenanceGraph'; +import {ObjectRefUtils, ProvenanceGraph} from 'phovea_core'; import {IView} from '../AppWrapper'; -import {cat, IObjectRef, ref} from 'phovea_core/src/provenance'; +import {IObjectRef} from 'phovea_core'; // best solution to import Handlebars (@see https://github.com/wycats/handlebars.js/issues/1174) import * as handlebars from 'handlebars/dist/handlebars'; import * as d3 from 'd3'; import * as vega from 'vega-lib'; import {Spec, View, BindRange} from 'vega-lib'; import {ISetStateMetadata, setState} from './cmds'; -import {ClueData, ClueSignal, IAsyncData, IAsyncSignal} from './spec'; -import {IVisStateApp} from 'phovea_clue/src/provenance_retrieval/IVisState'; +import {ClueData, IClueSignal, IAsyncData, IAsyncSignal} from './VegaSpec'; +import {IVisStateApp} from 'phovea_clue'; import { createPropertyValue, IProperty, IPropertyValue, numericalProperty, Property, PropertyType, TAG_VALUE_SEPARATOR -} from 'phovea_core/src/provenance/retrieval/VisStateProperty'; -import {setProperty} from 'phovea_core/src/provenance/retrieval/VisStateProperty'; +} from 'phovea_core'; +import {setProperty} from 'phovea_core'; interface IVegaViewOptions { @@ -62,7 +62,7 @@ export class VegaView implements IView, IVisStateApp { // cast to , because `getState()` is missing in 'vega-typings' const vegaView = (this.$node.datum()); - const signalSpec: ClueSignal = this.spec.signals.find((d) => d.name === name)!; + const signalSpec: IClueSignal = this.spec.signals.find((d) => d.name === name)!; const context = {name, value}; let promise = Promise.resolve(true); @@ -103,7 +103,7 @@ export class VegaView implements IView, IVisStateApp { } constructor(parent: HTMLElement, private readonly graph: ProvenanceGraph, private spec: Spec) { - this.ref = this.graph.findOrAddObject(ref(this, spec.title ? String(spec.title) : 'View', cat.visual)); + this.ref = this.graph.findOrAddObject(ObjectRefUtils.objectRef(this, spec.title ? String(spec.title) : 'View', ObjectRefUtils.category.visual)); this.$node = d3.select(parent) .append('div') @@ -238,8 +238,8 @@ export class VegaView implements IView, IVisStateApp { }) .filter((s) => s); // filter undefined values - const fill: ClueSignal[] = [...this.spec.signals, ...this.spec.data] - .filter((s: ClueSignal) => s.search && s.search.fill); + const fill: IClueSignal[] = [...this.spec.signals, ...this.spec.data] + .filter((s: IClueSignal) => s.search && s.search.fill); const fillSource = this.createFillPropertiesFromDataSource(fill, vegaView); const fillRange = this.createFillPropertiesFromRanges(fill, vegaView); @@ -279,8 +279,8 @@ export class VegaView implements IView, IVisStateApp { */ private getGroupsFromVegaSpec(spec: Spec, vegaView: View): {group: string, type: string}[] { return [...spec.signals, ...spec.data] - .filter((s: ClueSignal) => s.search && s.search.group) - .map((s: ClueSignal) => { + .filter((s: IClueSignal) => s.search && s.search.group) + .map((s: IClueSignal) => { return { group: this.resolveSignalReference(s.search.group, vegaView), type: s.search.type @@ -292,14 +292,14 @@ export class VegaView implements IView, IVisStateApp { * Creates a property with multiple property values of a data source from the Vega view. * This function works only for `search.type = 'set'` and needs a valid data reference. * - * @param {ClueSignal} fill + * @param {IClueSignal} fill * @param {View} vegaView * @returns {IProperty[]} */ - private createFillPropertiesFromDataSource(fill: ClueSignal[], vegaView: View): IProperty[] { + private createFillPropertiesFromDataSource(fill: IClueSignal[], vegaView: View): IProperty[] { return fill - .filter((s: ClueSignal) => s.search.type === 'set' && s.search.fill.source) - .map((s: ClueSignal) => { + .filter((s: IClueSignal) => s.search.type === 'set' && s.search.fill.source) + .map((s: IClueSignal) => { const group = this.resolveSignalReference(s.search.group, vegaView); const rawTitle = (s.search.title) ? s.search.title : `{{name}}_{{index}}`; const template = handlebars.compile(rawTitle); @@ -311,7 +311,7 @@ export class VegaView implements IView, IVisStateApp { // Special case! Use title also id to make items distinguishable, because name is equal for all items id: `${s.name} ${TAG_VALUE_SEPARATOR} ${title}`, text: title, - group: group + group }; }); return setProperty(group, values); // property of type SET @@ -322,14 +322,14 @@ export class VegaView implements IView, IVisStateApp { * Creates a property with multiple property values from a range between min/max and a certain step width. * This function works only for `search.type = 'number'` and needs defined a valid range. * - * @param {ClueSignal} fill + * @param {IClueSignal} fill * @param vegaView * @returns {IProperty[]} */ - private createFillPropertiesFromRanges(fill: ClueSignal[], vegaView: View): IProperty[] { + private createFillPropertiesFromRanges(fill: IClueSignal[], vegaView: View): IProperty[] { return fill - .filter((s: ClueSignal) => s.search.type === 'number' && s.search.fill.range) - .map((s: ClueSignal) => { + .filter((s: IClueSignal) => s.search.type === 'number' && s.search.fill.range) + .map((s: IClueSignal) => { const range = s.search.fill.range; const group = this.resolveSignalReference(s.search.group, vegaView); const rawTitle = (s.search.title) ? s.search.title : `{{value}}`; @@ -342,7 +342,7 @@ export class VegaView implements IView, IVisStateApp { // Special case! Use title also id to make items distinguishable, because name is equal for all items id: `${s.name} ${TAG_VALUE_SEPARATOR} ${title}`, text: title, - group: group, + group, payload: { numVal: title, propText: group @@ -369,15 +369,15 @@ export class VegaView implements IView, IVisStateApp { /** * Resolve signal references in the input data and set the values from the current Vega view - * @param {ClueSignal | ClueData} input + * @param {IClueSignal | ClueData} input * @param {View} vegaView * @param {'signal'|'data'} source */ const prepareInput = (input: any, vegaView: View, source: 'signal' | 'data') => { return input - .filter((d: ClueSignal | ClueData) => d.search) + .filter((d: IClueSignal | ClueData) => d.search) .map((d) => Object.assign({}, d)) // shallow copy object - .map((d: ClueSignal | ClueData) => { + .map((d: IClueSignal | ClueData) => { if(d.search && d.search.group) { d.search.group = this.resolveSignalReference(d.search.group, vegaView); } @@ -404,10 +404,10 @@ export class VegaView implements IView, IVisStateApp { * * At the moment this function only creates numerical and category. * - * @param {ClueSignal} signal + * @param {IClueSignal} signal * @returns {IPropertyValue} */ - private signalToPropertyValue(signal: ClueSignal): IPropertyValue { + private signalToPropertyValue(signal: IClueSignal): IPropertyValue { const context = {name: signal.name, value: signal.value}; let rawTitle, template; @@ -499,8 +499,8 @@ export class VegaView implements IView, IVisStateApp { private addSignalListener(vegaView: View, spec: Spec) { if (spec.signals) { spec.signals - .filter((signal: ClueSignal) => signal.track) - .forEach((signal: ClueSignal) => { + .filter((signal: IClueSignal) => signal.track) + .forEach((signal: IClueSignal) => { // check for range input if(signal.bind && (signal.bind).input === 'range') { this.addRangeDOMListener(signal.name, (signal.bind).input); @@ -519,7 +519,7 @@ export class VegaView implements IView, IVisStateApp { private removeSignalListener(vegaView: View, spec: Spec) { if (spec.signals) { spec.signals - .filter((signal: ClueSignal) => signal.track) + .filter((signal: IClueSignal) => signal.track) .forEach((signal) => { vegaView.removeSignalListener(signal.name, this.signalHandler); }); diff --git a/src/internal/cmds.ts b/src/internal/cmds.ts index 15ccd63..9360890 100644 --- a/src/internal/cmds.ts +++ b/src/internal/cmds.ts @@ -1,6 +1,6 @@ -import {cat, IObjectRef, meta, action, op, ActionNode} from 'phovea_core/src/provenance'; +import {Compression} from 'phovea_clue'; +import {IObjectRef, ActionNode, ActionMetaData, ActionUtils} from 'phovea_core'; import {VegaView} from './VegaView'; -import {lastOnly} from 'phovea_clue/src/compress'; export interface ISetStateMetadata { @@ -33,7 +33,7 @@ export async function setStateImpl(inputs: IObjectRef[], parameter: any) { } export function setState(view: IObjectRef, metadata: ISetStateMetadata, state: any) { - return action(meta(metadata.name, metadata.category, metadata.operation), CMD_SET_STATE, setStateImpl, [view], { + return ActionUtils.action(ActionMetaData.actionMeta(metadata.name, metadata.category, metadata.operation), CMD_SET_STATE, setStateImpl, [view], { name, state }); @@ -41,5 +41,5 @@ export function setState(view: IObjectRef, metadata: ISetStateMetadata export function stateCompressor(path: ActionNode[]) { - return lastOnly(path, CMD_SET_STATE, (n) => n.requires[0].hash); + return Compression.lastOnly(path, CMD_SET_STATE, (n) => n.requires[0].hash); } diff --git a/src/phovea.ts b/src/phovea.ts new file mode 100644 index 0000000..0a3b3fb --- /dev/null +++ b/src/phovea.ts @@ -0,0 +1,28 @@ +/* ***************************************************************************** + * Caleydo - Visualization for Molecular Biology - http://caleydo.org + * Copyright (c) The Caleydo Team. All rights reserved. + * Licensed under the new BSD license, available at http://caleydo.org/license + **************************************************************************** */ + + import {IRegistry, PluginRegistry} from 'phovea_core'; + +//register all extensions in the registry following the given pattern +export default function (registry: IRegistry) { + /// #if include('extension-type', 'extension-id') + //registry.push('extension-type', 'extension-id', function() { return import('./src/extension_impl'); }, {}); + /// #endif + // generator-phovea:begin + registry.push('actionFunction', 'vegaSetState', function () { + return import ('./internal/cmds'); + }, { + factory: 'setStateImpl' + }); + + registry.push('actionCompressor', 'vegaSetState', function () { + return import ('./internal/cmds'); + }, { + factory: 'stateCompressor' + }); + + // generator-phovea:end +} diff --git a/src/scss/abstracts/_variables.scss b/src/scss/abstracts/_variables.scss new file mode 100644 index 0000000..039d3f8 --- /dev/null +++ b/src/scss/abstracts/_variables.scss @@ -0,0 +1,42 @@ + +// header navbar color (the inverse colors will be computed using sass `invert($color)`) +$header-bg-color: #f0f0f0 !default; +$header-border-color: #ddd !default; +$header-link-color: #333 !default; +$header-dropdown-link-color: #000 !default; + +$select-color: black !default; +$select-color-bright: #ffdca3 !default; +$hover-color: black !default; + +$hover-presentation-color: #f0bb00 !default; + +$core_colour: #f0f0f0 !default; +$core_colour_text: #333 !default; +$core_colour_selected: #ddd !default; +$core_border: #ddd !default; + +$exploration-stage: $core_colour !default; +$exploration-stage-hover: $core_colour_selected !default; + +$authoring-stage: $core_colour !default; +$authoring-stage-hover: $core_colour_selected !default; +$presentation-stage: $core_colour !default; +$presentation-stage-hover: $core_colour_selected !default; + +$core_player: $authoring-stage !default; +$core_duration: #D8D8D8 !default; + +$header-menu-bg-color: #ddd !default; +$header-menu-color: #333 !default; + +$core_color_almost_black: black !default; + +$annotation_color: #009ACD !default; +$annotation_color_hover: #006b90 !default; + +$anchor_color: #EE2329 !default; +$anchor_color_hover: darken($anchor_color, 20%) !default; + +$select-data-color: orange !default; +$hover-data-color: #ffc46b !default; diff --git a/src/scss/base/_base.scss b/src/scss/base/_base.scss new file mode 100644 index 0000000..9529647 --- /dev/null +++ b/src/scss/base/_base.scss @@ -0,0 +1,31 @@ +body, html { + font-family: Yantramanav, 'Helvetica Neue', Helvetica, sans-serif; + font-weight: 400; +} + +th, +label, +strong, +b, +.label { + font-weight: 500; +} + +main[data-anchor="main"] { + display: flex; + overflow: auto; + + .app { + flex: 1; + margin: 10px; + } + + .dataset-selector { + padding-bottom: 10px; + border-bottom: 1px solid $core_border; + + #url { + width: 400px; + } + } +} diff --git a/src/scss/components/_vega_view.scss b/src/scss/components/_vega_view.scss new file mode 100644 index 0000000..63ee7ff --- /dev/null +++ b/src/scss/components/_vega_view.scss @@ -0,0 +1,86 @@ + +.vega-view { + display: flex; + + .side-panel { + min-width: 170px; + padding: 10px 30px 10px 0; + border-right: 1px solid $core_border; + + label { + display: block; + font-weight: 400; + + &:hover { + font-weight: 500; + } + } + } + + .vega-wrapper { + padding: 10px; + display: flex; + width: 100%; + + > * { + vertical-align: middle; + } + + .marks { + margin-right: 1em; + order: 2; + } + + .vega-bindings { + order: 1; + flex: 1; + font-size: 14px; + line-height: 20px; + } + + .vega-bind-name { + display: inline-block; + width: 105px; + font-weight: 500; + } + + .vega-bind { + margin-bottom: 10px; + + input[type="range"] { + padding: 0; + } + + select { + max-width: 200px; + } + + label { + margin-left: 4px; + } + } + + .vega-bind-radio label { + margin-left: 0; + margin-right: 4px; + } + } +} + +// headless mode for thumbnails +.headless { + .vega-view { + display: flex; + justify-content: center; + + .vega-wrapper { + width: auto; + transform: scale(1.2) translateY(70px); // increase the size a bit to fill the thumbnail + + .vega-bindings { + max-width: 250px; + margin-right: 20px; + } + } + } +} diff --git a/src/scss/main.scss b/src/scss/main.scss new file mode 100644 index 0000000..6de1a1e --- /dev/null +++ b/src/scss/main.scss @@ -0,0 +1,7 @@ +@import "./abstracts/variables"; + +@import "./overrides/clue_override"; + +@import "./base/base"; + +@import "./components/vega_view"; diff --git a/src/styles/_clue_override.scss b/src/scss/overrides/_clue_override.scss similarity index 86% rename from src/styles/_clue_override.scss rename to src/scss/overrides/_clue_override.scss index e4c6ede..b79fab7 100644 --- a/src/styles/_clue_override.scss +++ b/src/scss/overrides/_clue_override.scss @@ -1,11 +1,3 @@ -// instead: import the CLUE styles separately -@import "~phovea_clue/src/styles/base"; -@import "~phovea_clue/src/styles/annotation"; -@import "~phovea_clue/src/styles/provvis"; -@import "~phovea_clue/src/styles/storyvis"; -@import "~phovea_clue/src/styles/prov-retrieval"; -@import "~phovea_clue/src/styles/select2"; - /** * All rules in this file override or directly extend the original clue styles */ @@ -129,4 +121,3 @@ div.stories { .select2-container--bootstrap .select2-results__option--highlighted[aria-selected] { background-color: #777; } - diff --git a/src/style.scss b/src/style.scss deleted file mode 100644 index b1970f5..0000000 --- a/src/style.scss +++ /dev/null @@ -1,4 +0,0 @@ -@import "styles/vars"; -@import "styles/clue_override"; -@import "styles/base"; -@import "styles/vega_view"; diff --git a/src/styles/_vars.scss b/src/styles/_vars.scss deleted file mode 100644 index ad2425e..0000000 --- a/src/styles/_vars.scss +++ /dev/null @@ -1,39 +0,0 @@ -$select-color: black; -$select-color-bright: #ffdca3; -$hover-color: black; - -$hover-presentation-color: #f0bb00; - -$core_colour: #f0f0f0; -$core_colour_text: #333; -$core_colour_selected: #ddd; -$core_border: #ddd; - -$exploration-stage: $core_colour; -$exploration-stage-hover: $core_colour_selected; - -$authoring-stage: $core_colour; -$authoring-stage-hover: $core_colour_selected; -$presentation-stage: $core_colour; -$presentation-stage-hover: $core_colour_selected; - -$core_player: $authoring-stage; -$core_duration: #D8D8D8; - -$header-menu-bg-color: #ddd; -$header-menu-color: #333; - -$core_color_almost_black: black; - -$annotation_color: #009ACD; -$annotation_color_hover: #006b90; - -$anchor_color: #EE2329; -$anchor_color_hover: darken($anchor_color, 20%); - -$select-data-color: orange; -$hover-data-color: #ffc46b; - -$tdp-css-prefix: 'tdp'; - -$boostrapAssetDir: '~phovea_ui/src/assets'; diff --git a/tests.webpack.js b/tests.webpack.js deleted file mode 100644 index 9438ac4..0000000 --- a/tests.webpack.js +++ /dev/null @@ -1,14 +0,0 @@ -/* ***************************************************************************** - * Caleydo - Visualization for Molecular Biology - http://caleydo.org - * Copyright (c) The Caleydo Team. All rights reserved. - * Licensed under the new BSD license, available at http://caleydo.org/license - **************************************************************************** */ - -// build registry -require('./phovea_registry.js'); - -/** - * find all tests in the spec directory and load them - */ -var context = require.context('./tests', true, /\.test\.ts$/); // make sure you have your directory and regex test set correctly! -context.keys().forEach(context); diff --git a/tsconfig.json b/tsconfig.json index 82e5d03..2e06f21 100644 --- a/tsconfig.json +++ b/tsconfig.json @@ -1,27 +1,28 @@ { "compilerOptions": { - "module": "es6", - "target": "es5", + "module": "ES2020", + "target": "ES2019", "importHelpers": true, "sourceMap": true, + "declaration": true, "moduleResolution": "node", "jsx": "react", + "allowJs": true, + "declarationDir": "dist", + "outDir": "dist", "experimentalDecorators": true, - "lib": [ - "dom", - "es2015", - "es2016.array.include", - "es2017.object" - ], - "baseUrl": "../", "noImplicitAny": false, - "skipLibCheck": true + "skipLibCheck": true, + "esModuleInterop": false, + "resolveJsonModule": true, + "allowSyntheticDefaultImports": true, + "preserveWatchOutput": true, + "incremental": true, + "tsBuildInfoFile": "dist/tsBuildInfoFile" }, "include": [ "src/**/*.ts", "src/**/*.tsx", - "tests/**/*.ts", - "index.ts", "tsd.d.ts" ] } diff --git a/tsconfig_dev.json b/tsconfig_dev.json deleted file mode 100644 index 807b9bf..0000000 --- a/tsconfig_dev.json +++ /dev/null @@ -1,6 +0,0 @@ -{ - "extends": "./tsconfig", - "compilerOptions": { - "target": "es6" - } -} diff --git a/tsd.d.ts b/tsd.d.ts index 9e343ca..3639958 100644 --- a/tsd.d.ts +++ b/tsd.d.ts @@ -1,9 +1,3 @@ -/* ***************************************************************************** - * Caleydo - Visualization for Molecular Biology - http://caleydo.org - * Copyright (c) The Caleydo Team. All rights reserved. - * Licensed under the new BSD license, available at http://caleydo.org/license - **************************************************************************** */ - //allow sass modules declare module "*.scss" { const content:string; @@ -13,27 +7,30 @@ declare module "*.css" { const content:string; export default content; } +// allow image dependencies declare module "*.png"; declare module "*.jpg"; +declare module "*.gif"; +declare module "*.webp"; +declare module "*.svg"; //allow html dependencies declare module "*.html" { const content:string; export default content; } +declare module "*.xml" { + const content:string; + export default content; +} + //allow json dependencies declare module "*.json"; //allow file dependencies declare module "file-loader!*"; +declare module "!file-loader!*"; // Prefixing with ! will disable all configured normal loaders //allow file dependencies declare module "raw-loader!*"; //allow url dependencies declare module "url-loader!*"; //allow html dependencies declare module "imports-loader!*"; - - -//define System.import as understood by webpack2 -interface ISystem { - import(module: string): Promise; -} -declare const System: ISystem; diff --git a/tslint.json b/tslint.json index 434c5eb..ec45867 100644 --- a/tslint.json +++ b/tslint.json @@ -23,6 +23,7 @@ "forin": true, "indent": [ true, + "spaces", 2 ], "interface-name": true, @@ -31,9 +32,25 @@ "max-line-length": false, "member-ordering": [ false, - "public-before-private", - "static-before-instance", - "variables-before-functions" + { + "order": [ + "public-static-field", + "public-static-method", + "public-instance-field", + "public-constructor", + "public-instance-method", + "protected-static-field", + "protected-static-method", + "protected-instance-field", + "protected-constructor", + "protected-instance-method", + "private-static-field", + "private-static-method", + "private-instance-field", + "private-constructor", + "private-instance-method" + ] + } ], "new-parens": true, "no-arg": true, @@ -96,18 +113,13 @@ ], "typedef-whitespace": [ true, - [ - "callSignature", - "noSpace" - ], - [ - "catchClause", - "noSpace" - ], - [ - "indexSignature", - "space" - ] + { + "call-signature": "nospace", + "index-signature": "nospace", + "parameter": "nospace", + "property-declaration": "nospace", + "variable-declaration": "nospace" + } ], "use-isnan": true, "variable-name": [ diff --git a/webpack.config.js b/webpack.config.js deleted file mode 100644 index 95542e3..0000000 --- a/webpack.config.js +++ /dev/null @@ -1,393 +0,0 @@ -/* ***************************************************************************** - * Caleydo - Visualization for Molecular Biology - http://caleydo.org - * Copyright (c) The Caleydo Team. All rights reserved. - * Licensed under the new BSD license, available at http://caleydo.org/license - **************************************************************************** */ - -const {libraryAliases, libraryExternals, modules, entries, ignores, type, registry, vendor} = require('./.yo-rc.json')['generator-phovea']; -const resolve = require('path').resolve; -const pkg = require('./package.json'); -const webpack = require('webpack'); -const fs = require('fs'); -const ExtractTextPlugin = require('extract-text-webpack-plugin'); -const ForkTsCheckerWebpackPlugin = require('fork-ts-checker-webpack-plugin'); -const buildInfo = require('./buildInfo.js'); - -const now = new Date(); -const prefix = (n) => n < 10 ? ('0' + n) : n.toString(); -const buildId = `${now.getUTCFullYear()}${prefix(now.getUTCMonth() + 1)}${prefix(now.getUTCDate())}-${prefix(now.getUTCHours())}${prefix(now.getUTCMinutes())}${prefix(now.getUTCSeconds())}`; -pkg.version = pkg.version.replace('SNAPSHOT', buildId); - -const year = (new Date()).getFullYear(); -const banner = '/*! ' + (pkg.title || pkg.name) + ' - v' + pkg.version + ' - ' + year + '\n' + - (pkg.homepage ? '* ' + pkg.homepage + '\n' : '') + - '* Copyright (c) ' + year + ' ' + pkg.author.name + ';' + - ' Licensed ' + pkg.license + '*/\n'; - -const preCompilerFlags = {flags: (registry || {}).flags || {}}; -const includeFeature = registry ? (extension, id) => { - const exclude = registry.exclude || []; - const include = registry.include || []; - if (!exclude && !include) { - return true; - } - const test = (f) => Array.isArray(f) ? extension.match(f[0]) && (id || '').match(f[1]) : extension.match(f); - return include.every(test) && !exclude.some(test); -} : () => true; - -const tsLoader = [ - { - loader: 'awesome-typescript-loader' - } -]; - -const tsLoaderDev = [ - {loader: 'cache-loader'}, - { - loader: 'thread-loader', - options: { - // there should be 1 cpu for the fork-ts-checker-webpack-plugin - workers: require('os').cpus().length - 1 - } - }, - { - loader: 'ts-loader', - options: { - happyPackMode: true, // IMPORTANT! use happyPackMode mode to speed-up compilation and reduce errors reported to webpack, - compilerOptions: { - target: 'es6' - } - } - } -]; - -// list of loaders and their mappings -const webpackloaders = [ - {test: /\.scss$/, use: 'style-loader!css-loader!sass-loader'}, - {test: /\.css$/, use: 'style-loader!css-loader'}, - {test: /\.tsx?$/, use: tsLoader}, - { - test: /phovea(_registry)?\.js$/, use: [{ - loader: 'ifdef-loader', - options: Object.assign({include: includeFeature}, preCompilerFlags) - }] - }, - {test: /\.json$/, use: 'json-loader'}, - { - test: /\.(png|jpg)$/, - loader: 'url-loader', - options: { - limit: 10000 // inline <= 10kb - } - }, - { - test: /\.woff(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, - loader: 'url-loader', - options: { - limit: 10000, // inline <= 10kb - mimetype: 'application/font-woff' - } - }, - { - test: /\.svg(2)?(\?v=[0-9]\.[0-9]\.[0-9])?$/, - loader: 'url-loader', - options: { - limit: 10000, // inline <= 10kb - mimetype: 'image/svg+xml' - } - }, - {test: /\.(ttf|eot)(\?v=[0-9]\.[0-9]\.[0-9])?$/, loader: 'file-loader'} -]; - -/** - * tests whether the given phovea module name is matching the requested file and if so convert it to an external lookup - * depending on the loading type - */ -function testPhoveaModule(moduleName, request) { - if (!(new RegExp('^' + moduleName + '/src.*')).test(request)) { - return false; - } - const subModule = request.match(/.*\/src\/?(.*)/)[1]; - // skip empty modules = root - const path = subModule === '' ? [moduleName] : [moduleName, subModule]; - // phovea_ ... phovea.name - const rootPath = /phovea_.*/.test(moduleName) ? ['phovea', moduleName.slice(7)].concat(path.slice(1)) : path; - return { - root: rootPath, - commonjs2: path, - commonjs: path, - amd: request + (subModule === '' ? '/main' : '') - }; -} - -function testPhoveaModules(modules) { - return (context, request, callback) => { - for (let i = 0; i < modules.length; ++i) { - const r = testPhoveaModule(modules[i], request); - if (r) { - return callback(null, r); - } - } - callback(); - }; -} - -// use workspace registry file if available -const isWorkspaceContext = fs.existsSync(resolve(__dirname, '..', 'phovea_registry.js')); -const registryFile = isWorkspaceContext ? '../phovea_registry.js' : './phovea_registry.js'; -const actMetaData = `file-loader?name=phoveaMetaData.json!${buildInfo.metaDataTmpFile(pkg)}`; -const actBuildInfoFile = `file-loader?name=buildInfo.json!${buildInfo.tmpFile()}`; - -/** - * inject the registry to be included - * @param entry - * @returns {*} - */ -function injectRegistry(entry) { - const extraFiles = [registryFile, actBuildInfoFile, actMetaData]; - // build also the registry - if (typeof entry === 'string') { - return extraFiles.concat(entry); - } - const transformed = {}; - Object.keys(entry).forEach((eentry) => { - transformed[eentry] = extraFiles.concat(entry[eentry]); - }); - return transformed; -} - -/** - * generate a webpack configuration - */ -function generateWebpack(options) { - let base = { - entry: injectRegistry(options.entries), - output: { - path: resolve(__dirname, 'build'), - filename: (options.name || (pkg.name + (options.bundle ? '_bundle' : ''))) + (options.min && !options.nosuffix ? '.min' : '') + '.js', - chunkFilename: '[chunkhash].js', - publicPath: '' // no public path = relative - }, - resolve: { - // add `.ts` and `.tsx` as a resolvable extension. - extensions: ['.webpack.js', '.web.js', '.ts', '.tsx', '.js'], - alias: Object.assign({}, options.libs || {}), - symlinks: false, - // fallback to the directory above if they are siblings just in the workspace context - modules: isWorkspaceContext ? [ - resolve(__dirname, '../'), - 'node_modules' - ] : ['node_modules'] - }, - plugins: [ - // define magic constants that are replaced - new webpack.DefinePlugin({ - 'process.env.NODE_ENV': JSON.stringify(options.isProduction ? 'production' : 'development'), - __VERSION__: JSON.stringify(pkg.version), - __LICENSE__: JSON.stringify(pkg.license), - __BUILD_ID__: buildId, - __DEBUG__: options.isDev || options.isTest, - __TEST__: options.isTest, - __PRODUCTION__: options.isProduction, - __APP_CONTEXT__: JSON.stringify('/') - }) - // rest depends on type - ], - externals: [], - module: { - loaders: webpackloaders.slice() - }, - devServer: { - proxy: { - '/api/*': { - target: 'http://localhost:9000', - secure: false, - ws: true - }, - '/login': { - target: 'http://localhost:9000', - secure: false - }, - '/logout': { - target: 'http://localhost:9000', - secure: false - }, - '/loggedinas': { - target: 'http://localhost:9000', - secure: false - } - }, - contentBase: resolve(__dirname, 'build'), - watchOptions: { - aggregateTimeout: 500, - ignored: /node_modules/ - } - }, - watchOptions: { - aggregateTimeout: 500, - ignored: /node_modules/ - } - }; - - if (options.isProduction) { - base.plugins.unshift(new webpack.BannerPlugin({ - banner: banner, - raw: true - })); - base.plugins.push(new webpack.optimize.MinChunkSizePlugin({ - minChunkSize: 10000 // at least 10.000 characters - })); - // base.plugins.push(new webpack.optimize.ModuleConcatenationPlugin()); - } else if (options.isDev) { - // switch to def settings - base.module.loaders.find((d) => d.use === tsLoader).use = tsLoaderDev; - base.plugins.push(new ForkTsCheckerWebpackPlugin({checkSyntacticErrors: true, tsconfig: './tsconfig_dev.json'})); - } - - if (options.library) { - let libName = /phovea_.*/.test(pkg.name) ? ['phovea', pkg.name.slice(7)] : pkg.name; - // generate a library, i.e. output the last entry element - // create library name - if (options.moduleBundle) { - libName = 'phovea'; - } - base.output.library = libName; - base.output.libraryTarget = 'umd'; - base.output.umdNamedDefine = false; // anonymous require module - } - - if (!options.bundle) { - // if we don't bundle don't include external libraries and other phovea modules - base.externals.push(...(options.externals || Object.keys(options.libs || {}))); - - // ignore all phovea modules - if (options.modules) { - base.externals.push(testPhoveaModules(options.modules)); - } - - // ignore extra modules - (options.ignore || []).forEach(function (d) { - base.module.loaders.push({test: new RegExp(d), loader: 'null-loader'}); // use null loader - }); - // ingore phovea module registry calls - (options.modules || []).forEach(function (m) { - base.module.loaders.push({ - test: new RegExp('.*[\\\\/]' + m + '[\\\\/]phovea_registry.js'), - loader: 'null-loader' - }); // use null loader - }); - } - if (!options.bundle || options.isApp) { - // extract the included css file to own file - const p = new ExtractTextPlugin({ - filename: (options.isApp || options.moduleBundle ? 'style' : pkg.name) + (options.min && !options.nosuffix ? '.min' : '') + '.css', - allChunks: true // there seems to be a bug in dynamically loaded chunk styles are not loaded, workaround: extract all styles from all chunks - }); - base.plugins.push(p); - base.module.loaders[0] = { - test: /\.scss$/, - loader: p.extract(['css-loader', 'sass-loader']) - }; - base.module.loaders[1] = { - test: /\.css$/, - loader: p.extract(['css-loader']) - }; - } - if (options.isApp) { - // create manifest - // base.plugins.push(new webpack.optimize.AppCachePlugin()); - } - if (options.commons) { - // build a commons plugin - base.plugins.push(new webpack.optimize.CommonsChunkPlugin({ - // The order of this array matters - name: 'common', - filename: 'common.js', - minChunks: 2 - })); - } - if (options.vendor) { - (Array.isArray(options.vendor) ? options.vendor : [options.vendor]).forEach((reg) => { - base.plugins.push(new webpack.optimize.CommonsChunkPlugin({ - async: true, - children: true, - deepChildren: true, - minChunks: (module, count) => new RegExp(reg, 'i').test(module.resource) && count >= 2 - })); - }); - } - if (options.min) { - // use a minifier - base.plugins.push( - new webpack.LoaderOptionsPlugin({ - minimize: true, - debug: false - }), - new webpack.optimize.UglifyJsPlugin()); - } else { - // generate source maps - base.devtool = 'inline-source-map'; - } - return base; -} - -function generateWebpackConfig(env) { - const isTest = env === 'test'; - const isProduction = env === 'prod'; - const isDev = !isProduction && !isTest; - - const base = { - entries: entries, - libs: libraryAliases, - externals: libraryExternals, - modules: modules, - vendor: vendor, - ignore: ignores, - isProduction: isProduction, - isDev: isDev, - isTest: isTest - }; - - if (isTest) { - return generateWebpack(Object.assign({}, base, { - bundle: true - })); - } - - if (type.startsWith('app')) { - base.isApp = true; - base.bundle = true; // bundle everything together - base.name = '[name]'; // multiple entries case - base.commons = true; // extract commons module - } else if (type === 'bundle') { - base.library = true; // expose as library - base.moduleBundle = true; // expose as library 'phovea' - base.name = pkg.name; // to avoid adding _bundle - base.bundle = true; - } else { // type === 'lib' - base.library = true; - } - - // single generation - if (isDev) { - return generateWebpack(base); - } - if (type.startsWith('app')) { // isProduction app - return generateWebpack(Object.assign({}, base, { - min: true, - nosuffix: true - })); - } - // isProduction - return [ - // plain - generateWebpack(base), - // minified - generateWebpack(Object.assign({}, base, { - min: true - })) - ]; -} - -module.exports = generateWebpackConfig; -module.exports.generateWebpack = generateWebpack;